|
1 |
| -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
2 | 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
3 | 4 | <modelVersion>4.0.0</modelVersion>
|
4 | 5 |
|
|
26 | 27 | <arangodb.velocypack.version>1.4.1</arangodb.velocypack.version>
|
27 | 28 |
|
28 | 29 | <!-- provided -->
|
29 |
| - <httpclient.version>4.5.1</httpclient.version> |
| 30 | + <httpclient.version>4.5.7</httpclient.version> |
30 | 31 |
|
31 | 32 | <!-- test -->
|
32 | 33 | <logback-classic.version>1.1.3</logback-classic.version>
|
|
67 | 68 | <jdk>[1.8,)</jdk>
|
68 | 69 | </activation>
|
69 | 70 | <properties>
|
70 |
| - <javadoc.opts>-Xdoclint:none</javadoc.opts> |
| 71 | + <doclint>none</doclint> |
71 | 72 | </properties>
|
72 | 73 | </profile>
|
73 | 74 | </profiles>
|
74 | 75 |
|
75 | 76 | <build>
|
76 | 77 | <plugins>
|
| 78 | + |
| 79 | + <plugin> |
| 80 | + <inherited>true</inherited> |
| 81 | + <groupId>org.apache.maven.plugins</groupId> |
| 82 | + <artifactId>maven-enforcer-plugin</artifactId> |
| 83 | + <version>3.0.0-M2</version> |
| 84 | + <executions> |
| 85 | + <execution> |
| 86 | + <id>enforce-maven-3</id> |
| 87 | + <goals> |
| 88 | + <goal>enforce</goal> |
| 89 | + </goals> |
| 90 | + <configuration> |
| 91 | + <rules> |
| 92 | + <requireMavenVersion> |
| 93 | + <version>3.0.5</version> |
| 94 | + </requireMavenVersion> |
| 95 | + </rules> |
| 96 | + <fail>true</fail> |
| 97 | + </configuration> |
| 98 | + </execution> |
| 99 | + </executions> |
| 100 | + </plugin> |
| 101 | + |
77 | 102 | <plugin>
|
78 | 103 | <groupId>org.sonatype.plugins</groupId>
|
79 | 104 | <artifactId>nexus-staging-maven-plugin</artifactId>
|
80 |
| - <version>1.6.5</version> |
| 105 | + <version>1.6.8</version> |
81 | 106 | <extensions>true</extensions>
|
82 | 107 | <configuration>
|
83 | 108 | <serverId>ossrh</serverId>
|
|
90 | 115 | <plugin>
|
91 | 116 | <groupId>org.apache.maven.plugins</groupId>
|
92 | 117 | <artifactId>maven-assembly-plugin</artifactId>
|
93 |
| - <version>2.4.1</version> |
94 | 118 | <executions>
|
95 | 119 | <execution>
|
96 | 120 | <id>assembly</id>
|
|
115 | 139 | <plugin>
|
116 | 140 | <groupId>org.apache.maven.plugins</groupId>
|
117 | 141 | <artifactId>maven-compiler-plugin</artifactId>
|
118 |
| - <version>3.2</version> |
119 | 142 | <configuration>
|
120 |
| - <source>1.6</source> |
121 |
| - <target>1.6</target> |
| 143 | + <source>1.8</source> |
| 144 | + <target>1.8</target> |
122 | 145 | <compilerArgument></compilerArgument>
|
123 | 146 | </configuration>
|
124 | 147 | </plugin>
|
125 | 148 |
|
126 | 149 | <plugin>
|
127 | 150 | <groupId>org.apache.maven.plugins</groupId>
|
128 | 151 | <artifactId>maven-resources-plugin</artifactId>
|
129 |
| - <version>2.7</version> |
130 | 152 | <configuration>
|
131 | 153 | <encoding>UTF-8</encoding>
|
132 | 154 | </configuration>
|
|
135 | 157 | <plugin>
|
136 | 158 | <groupId>org.apache.maven.plugins</groupId>
|
137 | 159 | <artifactId>maven-source-plugin</artifactId>
|
138 |
| - <version>2.4</version> |
139 | 160 | <executions>
|
140 | 161 | <execution>
|
141 | 162 | <goals>
|
|
148 | 169 | <plugin>
|
149 | 170 | <groupId>org.apache.maven.plugins</groupId>
|
150 | 171 | <artifactId>maven-javadoc-plugin</artifactId>
|
151 |
| - <version>2.9.1</version> |
152 | 172 | <executions>
|
153 | 173 | <execution>
|
154 | 174 | <id>attach-javadocs</id>
|
|
165 | 185 |
|
166 | 186 | <plugin>
|
167 | 187 | <artifactId>maven-surefire-plugin</artifactId>
|
168 |
| - <version>2.19.1</version> |
169 | 188 | <configuration>
|
170 | 189 | <includes>
|
171 | 190 | <include>**/*Test.java</include>
|
|
176 | 195 |
|
177 | 196 | <plugin>
|
178 | 197 | <artifactId>maven-deploy-plugin</artifactId>
|
179 |
| - <version>2.8.2</version> |
180 | 198 | <configuration>
|
181 | 199 | <uniqueVersion>false</uniqueVersion>
|
182 | 200 | <retryFailedDeploymentCount>10</retryFailedDeploymentCount>
|
|
186 | 204 | <plugin>
|
187 | 205 | <groupId>org.apache.maven.plugins</groupId>
|
188 | 206 | <artifactId>maven-gpg-plugin</artifactId>
|
189 |
| - <version>1.5</version> |
190 | 207 | <executions>
|
191 | 208 | <execution>
|
192 | 209 | <id>sign-artifacts</id>
|
|
208 | 225 | <artifactId>httpclient</artifactId>
|
209 | 226 | <scope>provided</scope>
|
210 | 227 | </dependency>
|
| 228 | + <dependency> |
| 229 | + <groupId>org.apache.httpcomponents</groupId> |
| 230 | + <artifactId>httpcore</artifactId> |
| 231 | + <scope>provided</scope> |
| 232 | + </dependency> |
| 233 | + <dependency> |
| 234 | + <groupId>commons-logging</groupId> |
| 235 | + <artifactId>commons-logging</artifactId> |
| 236 | + </dependency> |
| 237 | + <dependency> |
| 238 | + <groupId>commons-codec</groupId> |
| 239 | + <artifactId>commons-codec</artifactId> |
| 240 | + </dependency> |
211 | 241 | <dependency>
|
212 | 242 | <groupId>com.arangodb</groupId>
|
213 | 243 | <artifactId>velocypack</artifactId>
|
|
221 | 251 | <artifactId>logback-classic</artifactId>
|
222 | 252 | <scope>test</scope>
|
223 | 253 | </dependency>
|
224 |
| - <dependency> |
| 254 | + <dependency> |
225 | 255 | <groupId>junit</groupId>
|
226 | 256 | <artifactId>junit</artifactId>
|
227 | 257 | <scope>test</scope>
|
|
240 | 270 | <artifactId>httpclient</artifactId>
|
241 | 271 | <version>${httpclient.version}</version>
|
242 | 272 | </dependency>
|
| 273 | + <dependency> |
| 274 | + <groupId>org.apache.httpcomponents</groupId> |
| 275 | + <artifactId>httpcore</artifactId> |
| 276 | + <version>4.4.11</version> |
| 277 | + </dependency> |
| 278 | + <dependency> |
| 279 | + <groupId>commons-codec</groupId> |
| 280 | + <artifactId>commons-codec</artifactId> |
| 281 | + <version>1.11</version> |
| 282 | + </dependency> |
| 283 | + <dependency> |
| 284 | + <groupId>commons-logging</groupId> |
| 285 | + <artifactId>commons-logging</artifactId> |
| 286 | + <version>1.2</version> |
| 287 | + </dependency> |
243 | 288 | <dependency>
|
244 | 289 | <groupId>com.arangodb</groupId>
|
245 | 290 | <artifactId>velocypack</artifactId>
|
|
255 | 300 | <artifactId>logback-classic</artifactId>
|
256 | 301 | <version>${logback-classic.version}</version>
|
257 | 302 | </dependency>
|
258 |
| - <dependency> |
| 303 | + <dependency> |
259 | 304 | <groupId>junit</groupId>
|
260 | 305 | <artifactId>junit</artifactId>
|
261 | 306 | <version>${junit.version}</version>
|
|
0 commit comments