Skip to content

Commit 7acd0fb

Browse files
authored
Add Direct Dependency on Commons Log (#124)
* Add Direct Dependency on Commons Log Commons log was a transient dependency, but should have been a direct dependency. Now take a direct dependency on it. * Move to Next Release Version Snapshot Changed version to 1.7.3-SNAPSHOT for next release.
1 parent 0954ed8 commit 7acd0fb

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

pom.xml

+6-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<artifactId>amazon-kinesis-client</artifactId>
77
<packaging>jar</packaging>
88
<name>Amazon Kinesis Client Library for Java</name>
9-
<version>1.7.2</version>
9+
<version>1.7.3-SNAPSHOT</version>
1010
<description>The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data
1111
from Amazon Kinesis.
1212
</description>
@@ -62,7 +62,11 @@
6262
<artifactId>commons-lang</artifactId>
6363
<version>2.6</version>
6464
</dependency>
65-
65+
<dependency>
66+
<groupId>commons-logging</groupId>
67+
<artifactId>commons-logging</artifactId>
68+
<version>1.1.3</version>
69+
</dependency>
6670
<dependency>
6771
<groupId>org.projectlombok</groupId>
6872
<artifactId>lombok</artifactId>

0 commit comments

Comments
 (0)