|
37 | 37 | </developer>
|
38 | 38 | </developers>
|
39 | 39 |
|
| 40 | + <prerequisites> |
| 41 | + <maven>3.0.5</maven> |
| 42 | + </prerequisites> |
| 43 | + |
40 | 44 | <properties>
|
41 | 45 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
42 | 46 | <skipTests>true</skipTests>
|
|
50 | 54 | <dependency>
|
51 | 55 | <groupId>com.fasterxml.jackson.core</groupId>
|
52 | 56 | <artifactId>jackson-core</artifactId>
|
53 |
| - <version>[2.2,2.7)</version> |
| 57 | + <version>2.7.1</version> |
54 | 58 | </dependency>
|
55 | 59 |
|
56 | 60 | <!-- A "soft" dependency on the Servlet API. -->
|
57 | 61 | <dependency>
|
58 | 62 | <groupId>javax.servlet</groupId>
|
59 | 63 | <artifactId>servlet-api</artifactId>
|
60 |
| - <version>2.2</version> |
| 64 | + <version>2.5</version> |
61 | 65 | <scope>provided</scope>
|
62 | 66 | </dependency>
|
63 | 67 |
|
64 | 68 | <!-- A "soft" dependency on OkHttp. -->
|
65 | 69 | <dependency>
|
66 | 70 | <groupId>com.squareup.okhttp</groupId>
|
67 | 71 | <artifactId>okhttp</artifactId>
|
68 |
| - <version>2.5.0</version> |
| 72 | + <version>2.7.4</version> |
69 | 73 | <scope>provided</scope>
|
70 | 74 | </dependency>
|
71 | 75 |
|
|
80 | 84 | <dependency>
|
81 | 85 | <groupId>org.testng</groupId>
|
82 | 86 | <artifactId>testng</artifactId>
|
83 |
| - <version>[6,7)</version> |
| 87 | + <version>6.9.10</version> |
84 | 88 | <scope>test</scope>
|
85 | 89 | </dependency>
|
86 | 90 | <dependency>
|
87 | 91 | <groupId>com.google.caliper</groupId>
|
88 | 92 | <artifactId>caliper</artifactId>
|
89 |
| - <version>1.0-beta-1</version> |
| 93 | + <version>1.0-beta-2</version> |
90 | 94 | <scope>test</scope>
|
91 | 95 | </dependency>
|
92 | 96 | </dependencies>
|
|
109 | 113 | <plugin>
|
110 | 114 | <groupId>org.apache.maven.plugins</groupId>
|
111 | 115 | <artifactId>maven-compiler-plugin</artifactId>
|
112 |
| - <version>3.1</version> |
| 116 | + <version>3.5.1</version> |
113 | 117 | <configuration>
|
114 | 118 | <source>6</source>
|
115 | 119 | <target>6</target>
|
|
118 | 122 | <plugin>
|
119 | 123 | <groupId>org.codehaus.mojo</groupId>
|
120 | 124 | <artifactId>animal-sniffer-maven-plugin</artifactId>
|
121 |
| - <version>1.11</version> |
| 125 | + <version>1.14</version> |
122 | 126 | <configuration>
|
123 | 127 | <signature>
|
124 | 128 | <groupId>org.codehaus.mojo.signature</groupId>
|
|
139 | 143 | <plugin>
|
140 | 144 | <groupId>org.apache.maven.plugins</groupId>
|
141 | 145 | <artifactId>maven-source-plugin</artifactId>
|
142 |
| - <version>2.2.1</version> |
| 146 | + <version>3.0.0</version> |
143 | 147 | <executions>
|
144 | 148 | <execution>
|
145 | 149 | <id>attach-sources</id>
|
|
168 | 172 | <plugin>
|
169 | 173 | <groupId>org.apache.maven.plugins</groupId>
|
170 | 174 | <artifactId>maven-antrun-plugin</artifactId>
|
171 |
| - <version>1.7</version> |
| 175 | + <version>1.8</version> |
172 | 176 | <executions>
|
173 | 177 | <execution>
|
174 | 178 | <id>copy</id>
|
|
187 | 191 | <plugin>
|
188 | 192 | <groupId>org.apache.maven.plugins</groupId>
|
189 | 193 | <artifactId>maven-surefire-plugin</artifactId>
|
190 |
| - <version>2.15</version> |
| 194 | + <version>2.19.1</version> |
191 | 195 | <configuration>
|
192 | 196 | <skipTests>${skipTests}</skipTests>
|
193 | 197 | </configuration>
|
|
237 | 241 | <!-- Add OSGi metadata to JAR manifest. -->
|
238 | 242 | <plugin>
|
239 | 243 | <artifactId>maven-jar-plugin</artifactId>
|
240 |
| - <version>2.5</version> |
| 244 | + <version>2.6</version> |
241 | 245 | <configuration>
|
242 | 246 | <archive>
|
243 | 247 | <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
|
|
247 | 251 | <plugin>
|
248 | 252 | <groupId>org.apache.felix</groupId>
|
249 | 253 | <artifactId>maven-bundle-plugin</artifactId>
|
250 |
| - <version>2.5.0</version> |
| 254 | + <version>3.0.1</version> |
251 | 255 | <extensions>true</extensions>
|
252 | 256 | <configuration>
|
253 | 257 | <instructions>
|
|
290 | 294 | <plugin>
|
291 | 295 | <groupId>org.codehaus.mojo</groupId>
|
292 | 296 | <artifactId>findbugs-maven-plugin</artifactId>
|
293 |
| - <version>2.5.3</version> |
| 297 | + <version>3.0.3</version> |
294 | 298 | <configuration>
|
295 | 299 | <effort>max</effort>
|
296 | 300 | <threshold>low</threshold>
|
|
335 | 339 | <plugin>
|
336 | 340 | <groupId>org.apache.maven.plugins</groupId>
|
337 | 341 | <artifactId>maven-javadoc-plugin</artifactId>
|
| 342 | + <version>2.10.3</version> |
338 | 343 | <configuration>
|
339 | 344 | <!--
|
340 | 345 | TODO: We want to pass a single arg: "-Xdoclint:all,-missing", but
|
|
0 commit comments