Skip to content

Commit

Permalink
Merge pull request #20 from aws/depmgmt
Browse files Browse the repository at this point in the history
manage dependencies
  • Loading branch information
srondelli authored Mar 21, 2020
2 parents 27fef6e + c9adb19 commit d92114a
Showing 1 changed file with 19 additions and 5 deletions.
24 changes: 19 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<groupId>com.amazonaws</groupId>
<artifactId>amazon-neptune-gremlin-java-sigv4</artifactId>
<packaging>jar</packaging>
<version>2.0.1</version>
<version>2.0.2</version>

<name>amazon-neptune-gremlin-java-sigv4</name>
<description>
Expand Down Expand Up @@ -69,6 +69,21 @@
<maven.compiler.target>1.8</maven.compiler.target>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.9.10.3</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-cbor</artifactId>
<version>2.9.10</version>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>org.apache.tinkerpop</groupId>
Expand All @@ -88,18 +103,17 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.20</version>
<version>1.18.12</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.9.10.3</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-core</artifactId>
<version>1.11.307</version>
<version>1.11.748</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
Expand All @@ -109,7 +123,7 @@
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>4.1.42.Final</version>
<version>4.1.48.Final</version>
</dependency>

<!-- Test -->
Expand Down

0 comments on commit d92114a

Please sign in to comment.