shehzaadn-vd commented on a change in pull request #13688:
URL: https://github.com/apache/beam/pull/13688#discussion_r562808370
##########
File path: sdks/java/io/amazon-web-services2/build.gradle
##########
@@ -42,23 +43,26 @@ dependencies {
compile library.java.jackson_core
compile library.java.jackson_annotations
compile library.java.jackson_databind
- compile library.java.jackson_dataformat_cbor
compile library.java.joda_time
compile library.java.slf4j_api
compile "software.amazon.kinesis:amazon-kinesis-client:2.2.5"
compile "commons-lang:commons-lang:2.6"
+ compile "org.apache.commons:commons-lang3:3.9"
Review comment:
> Why are there two `commons-lang` dependencies?
In
sdks/java/io/amazon-web-services2/src/main/java/org/apache/beam/sdk/io/aws2/kinesis/KinesisRecord.java,
we are explicitly using both commons.lang and commons.lang3
<snippet>
import static
**org.apache.commons.lang3.**builder.HashCodeBuilder.reflectionHashCode;
import java.nio.ByteBuffer;
import java.nio.charset.StandardCharsets;
import **org.apache.commons.lang.**builder.EqualsBuilder;
import **org.apache.commons.lang.**builder.ToStringBuilder;
</snippet>
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]