Skip to content

Commit

Permalink
Merge pull request #9 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 5214fa3 + c270cef commit e739c21
Showing 1 changed file with 19 additions and 4 deletions.
23 changes: 19 additions & 4 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-sigv4-signer</artifactId>
<packaging>jar</packaging>
<version>2.0.1</version>
<version>2.0.2</version>

<name>amazon-neptune-sigv4-signer</name>
<description>
Expand Down Expand Up @@ -69,21 +69,36 @@
<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>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>4.1.22.Final</version>
<version>4.1.48.Final</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.5</version>
<version>4.5.9</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-core</artifactId>
<version>1.11.307</version>
<version>1.11.748</version>
</dependency>

<!-- Test -->
Expand Down

0 comments on commit e739c21

Please sign in to comment.