Skip to content

Commit 354a5bb

Browse files
committed
update to java 8
1 parent 06fed50 commit 354a5bb

File tree

1 file changed

+16
-5
lines changed

1 file changed

+16
-5
lines changed

pom.xml

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
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"
23
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45

@@ -74,7 +75,7 @@
7475

7576
<build>
7677
<plugins>
77-
78+
7879
<plugin>
7980
<inherited>true</inherited>
8081
<groupId>org.apache.maven.plugins</groupId>
@@ -97,7 +98,7 @@
9798
</execution>
9899
</executions>
99100
</plugin>
100-
101+
101102
<plugin>
102103
<groupId>org.sonatype.plugins</groupId>
103104
<artifactId>nexus-staging-maven-plugin</artifactId>
@@ -224,6 +225,11 @@
224225
<artifactId>httpclient</artifactId>
225226
<scope>provided</scope>
226227
</dependency>
228+
<dependency>
229+
<groupId>org.apache.httpcomponents</groupId>
230+
<artifactId>httpcore</artifactId>
231+
<scope>provided</scope>
232+
</dependency>
227233
<dependency>
228234
<groupId>com.arangodb</groupId>
229235
<artifactId>velocypack</artifactId>
@@ -237,7 +243,7 @@
237243
<artifactId>logback-classic</artifactId>
238244
<scope>test</scope>
239245
</dependency>
240-
<dependency>
246+
<dependency>
241247
<groupId>junit</groupId>
242248
<artifactId>junit</artifactId>
243249
<scope>test</scope>
@@ -256,6 +262,11 @@
256262
<artifactId>httpclient</artifactId>
257263
<version>${httpclient.version}</version>
258264
</dependency>
265+
<dependency>
266+
<groupId>org.apache.httpcomponents</groupId>
267+
<artifactId>httpcore</artifactId>
268+
<version>4.4.11</version>
269+
</dependency>
259270
<dependency>
260271
<groupId>com.arangodb</groupId>
261272
<artifactId>velocypack</artifactId>
@@ -271,7 +282,7 @@
271282
<artifactId>logback-classic</artifactId>
272283
<version>${logback-classic.version}</version>
273284
</dependency>
274-
<dependency>
285+
<dependency>
275286
<groupId>junit</groupId>
276287
<artifactId>junit</artifactId>
277288
<version>${junit.version}</version>

0 commit comments

Comments
 (0)