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.
This commit is contained in:
Justin Pfifer 2017-01-03 14:50:29 -08:00 committed by GitHub
parent 0954ed8b26
commit 7acd0fb6d2

View file

@ -6,7 +6,7 @@
<artifactId>amazon-kinesis-client</artifactId> <artifactId>amazon-kinesis-client</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>Amazon Kinesis Client Library for Java</name> <name>Amazon Kinesis Client Library for Java</name>
<version>1.7.2</version> <version>1.7.3-SNAPSHOT</version>
<description>The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data <description>The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data
from Amazon Kinesis. from Amazon Kinesis.
</description> </description>
@ -62,7 +62,11 @@
<artifactId>commons-lang</artifactId> <artifactId>commons-lang</artifactId>
<version>2.6</version> <version>2.6</version>
</dependency> </dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.3</version>
</dependency>
<dependency> <dependency>
<groupId>org.projectlombok</groupId> <groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId> <artifactId>lombok</artifactId>