|
6 | 6 |
|
7 | 7 | <groupId>com.messagebird</groupId>
|
8 | 8 | <artifactId>messagebird-api</artifactId>
|
9 |
| - <version>1.3.2</version> |
| 9 | + <version>2.0.0</version> |
10 | 10 | <packaging>jar</packaging>
|
11 | 11 |
|
12 | 12 | <name>${project.groupId}:${project.artifactId}</name>
|
13 |
| - <description>The MessageBird API provides a API to the MessageBird SMS and voicemail services located at https://www.messagebird.com.</description> |
| 13 | + <description>The MessageBird API provides an API to the MessageBird SMS, Chat and Voice services located at https://www.messagebird.com.</description> |
14 | 14 |
|
15 | 15 | <url>https://www.messagebird.com/</url>
|
16 | 16 |
|
|
43 | 43 | < url> [email protected]:messagebird/java-rest-api.git</ url>
|
44 | 44 | </scm>
|
45 | 45 |
|
46 |
| - |
47 | 46 | <profiles>
|
48 | 47 | <profile>
|
49 | 48 | <id>default</id>
|
|
54 | 53 | <skipTests>true</skipTests>
|
55 | 54 | <messageBirdAccessKey></messageBirdAccessKey>
|
56 | 55 | <messageBirdMSISDN></messageBirdMSISDN>
|
| 56 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
57 | 57 | </properties>
|
58 |
| - <build> |
59 |
| - <plugins> |
60 |
| - <plugin> |
61 |
| - <groupId>org.apache.maven.plugins</groupId> |
62 |
| - <artifactId>maven-javadoc-plugin</artifactId> |
63 |
| - <version>2.10.3</version> |
64 |
| - <executions> |
65 |
| - <execution> |
66 |
| - <phase>package</phase> |
67 |
| - <goals> |
68 |
| - <goal>jar</goal> |
69 |
| - </goals> |
70 |
| - </execution> |
71 |
| - </executions> |
72 |
| - </plugin> |
73 |
| - </plugins> |
74 |
| - </build> |
75 | 58 | </profile>
|
76 | 59 | <profile>
|
77 | 60 | <id>test</id>
|
|
80 | 63 | </properties>
|
81 | 64 | </profile>
|
82 | 65 | <profile>
|
83 |
| - <id>java8</id> |
| 66 | + <id>disable-doclint</id> |
84 | 67 | <activation>
|
85 |
| - <jdk>1.8</jdk> |
| 68 | + <jdk>[1.8,)</jdk> |
86 | 69 | </activation>
|
87 | 70 | <properties>
|
| 71 | + <doclint>none</doclint> |
88 | 72 | <skipTests>true</skipTests>
|
89 | 73 | <messageBirdAccessKey></messageBirdAccessKey>
|
90 | 74 | <messageBirdMSISDN></messageBirdMSISDN>
|
| 75 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
91 | 76 | </properties>
|
92 |
| - <build> |
93 |
| - <plugins> |
94 |
| - <plugin> |
95 |
| - <groupId>org.apache.maven.plugins</groupId> |
96 |
| - <artifactId>maven-javadoc-plugin</artifactId> |
97 |
| - <version>2.10.3</version> |
98 |
| - <executions> |
99 |
| - <execution> |
100 |
| - <phase>package</phase> |
101 |
| - <goals> |
102 |
| - <goal>jar</goal> |
103 |
| - </goals> |
104 |
| - <configuration> |
105 |
| - <additionalparam>-Xdoclint:none</additionalparam> |
106 |
| - </configuration> |
107 |
| - </execution> |
108 |
| - </executions> |
109 |
| - </plugin> |
110 |
| - </plugins> |
111 |
| - </build> |
112 | 77 | </profile>
|
113 | 78 | </profiles>
|
114 | 79 |
|
115 | 80 | <dependencies>
|
116 | 81 | <dependency>
|
117 |
| - <groupId>com.fasterxml.jackson.dataformat</groupId> |
118 |
| - <artifactId>jackson-dataformat-csv</artifactId> |
119 |
| - <version>2.1.1</version> |
| 82 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 83 | + <artifactId>jackson-annotations</artifactId> |
| 84 | + <version>2.9.0</version> |
120 | 85 | </dependency>
|
121 | 86 | <dependency>
|
122 |
| - <groupId>org.codehaus.jackson</groupId> |
123 |
| - <artifactId>jackson-mapper-asl</artifactId> |
124 |
| - <version>1.9.13</version> |
| 87 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 88 | + <artifactId>jackson-databind</artifactId> |
| 89 | + <version>2.9.0</version> |
125 | 90 | </dependency>
|
126 | 91 | <dependency>
|
127 |
| - <groupId>org.codehaus.jackson</groupId> |
128 |
| - <artifactId>jackson-core-asl</artifactId> |
129 |
| - <version>1.9.13</version> |
| 92 | + <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 93 | + <artifactId>jackson-dataformat-csv</artifactId> |
| 94 | + <version>2.9.0</version> |
130 | 95 | </dependency>
|
131 | 96 | <dependency>
|
132 | 97 | <groupId>junit</groupId>
|
133 | 98 | <artifactId>junit</artifactId>
|
134 | 99 | <version>4.11</version>
|
135 | 100 | <scope>test</scope>
|
136 | 101 | </dependency>
|
| 102 | + <dependency> |
| 103 | + <groupId>org.mockito</groupId> |
| 104 | + <artifactId>mockito-core</artifactId> |
| 105 | + <version>2.21.0</version> |
| 106 | + </dependency> |
137 | 107 | </dependencies>
|
138 | 108 |
|
139 | 109 | <distributionManagement>
|
|
148 | 118 | <plugin>
|
149 | 119 | <groupId>org.apache.maven.plugins</groupId>
|
150 | 120 | <artifactId>maven-source-plugin</artifactId>
|
151 |
| - <version>2.4</version> |
| 121 | + <version>3.0.1</version> |
152 | 122 | <executions>
|
153 | 123 | <execution>
|
154 | 124 | <id>attach-sources</id>
|
|
158 | 128 | </execution>
|
159 | 129 | </executions>
|
160 | 130 | </plugin>
|
| 131 | + <plugin> |
| 132 | + <groupId>org.apache.maven.plugins</groupId> |
| 133 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 134 | + <version>3.0.0</version> |
| 135 | + <executions> |
| 136 | + <execution> |
| 137 | + <phase>package</phase> |
| 138 | + <goals> |
| 139 | + <goal>jar</goal> |
| 140 | + </goals> |
| 141 | + </execution> |
| 142 | + </executions> |
| 143 | + <dependencies> |
| 144 | + <!-- https://issues.apache.org/jira/browse/MJAVADOC-517 --> |
| 145 | + <dependency> |
| 146 | + <groupId>org.apache.commons</groupId> |
| 147 | + <artifactId>commons-lang3</artifactId> |
| 148 | + <version>3.7</version> |
| 149 | + </dependency> |
| 150 | + </dependencies> |
| 151 | + </plugin> |
161 | 152 | <plugin>
|
162 | 153 | <groupId>org.apache.maven.plugins</groupId>
|
163 | 154 | <artifactId>maven-gpg-plugin</artifactId>
|
|
175 | 166 | <plugin>
|
176 | 167 | <groupId>org.apache.maven.plugins</groupId>
|
177 | 168 | <artifactId>maven-compiler-plugin</artifactId>
|
178 |
| - <version>3.1</version> |
| 169 | + <version>3.7.0</version> |
179 | 170 | <configuration>
|
180 |
| - <source>1.6</source> |
181 |
| - <target>1.6</target> |
| 171 | + <source>1.7</source> |
| 172 | + <target>1.7</target> |
182 | 173 | </configuration>
|
183 | 174 | </plugin>
|
184 | 175 | <plugin>
|
| 176 | + <groupId>org.apache.maven.plugins</groupId> |
| 177 | + <version>3.1.0</version> |
185 | 178 | <artifactId>maven-assembly-plugin</artifactId>
|
186 | 179 | <configuration>
|
187 | 180 | <descriptorRefs>
|
|
201 | 194 | <plugin>
|
202 | 195 | <groupId>org.apache.maven.plugins</groupId>
|
203 | 196 | <artifactId>maven-surefire-plugin</artifactId>
|
204 |
| - <version>2.18.1</version> |
| 197 | + <version>2.21.0</version> |
205 | 198 | <configuration>
|
206 | 199 | <skipTests>${skipTests}</skipTests>
|
207 | 200 | <systemPropertyVariables>
|
|
213 | 206 | <plugin>
|
214 | 207 | <groupId>org.sonatype.plugins</groupId>
|
215 | 208 | <artifactId>nexus-staging-maven-plugin</artifactId>
|
216 |
| - <version>1.6.3</version> |
| 209 | + <version>1.6.7</version> |
217 | 210 | <extensions>true</extensions>
|
218 | 211 | <configuration>
|
219 | 212 | <serverId>ossrh</serverId>
|
|
0 commit comments