Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump com.esaulpaugh:headlong from 12.1.0 to 12.3.3 in /sdk-dependency-versions #2059

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jvmDependencyConflicts.patch {
extraJavaModuleInfo {
failOnAutomaticModules = true // Only allow Jars with 'module-info' on all module paths

module("com.esaulpaugh:headlong", "headlong")
module("com.esaulpaugh:headlong", "com.esaulpaugh.headlong")
module("com.github.spotbugs:spotbugs-annotations", "com.github.spotbugs.annotations")
module("com.google.errorprone:error_prone_annotations", "com.google.errorprone.annotations")
module("com.google.guava:failureaccess", "com.google.common.util.concurrent.internal")
Expand Down
2 changes: 1 addition & 1 deletion sdk-dependency-versions/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ plugins {
}

dependencies.constraints {
api("com.esaulpaugh:headlong:12.1.0") {
api("com.esaulpaugh:headlong:12.3.3") {
because("headlong")
}
api("com.google.code.gson:gson:2.10.1") {
Expand Down
2 changes: 1 addition & 1 deletion sdk-full/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
module com.hedera.hashgraph.sdk.full {
requires transitive com.google.protobuf;

requires com.esaulpaugh.headlong;
requires com.google.common;
requires com.google.gson;
requires headlong;
requires io.grpc.inprocess;
requires io.grpc.protobuf;
requires io.grpc.stub;
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
module com.hedera.hashgraph.sdk {
requires transitive com.google.protobuf;

requires com.esaulpaugh.headlong;
requires com.google.common;
requires com.google.gson;
requires headlong;
requires io.grpc.inprocess;
requires io.grpc.protobuf.lite;
requires io.grpc.stub;
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/testIntegration/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

open module com.hedera.hashgraph.sdk.test.integration {
requires com.hedera.hashgraph.sdk;
requires headlong;
requires com.esaulpaugh.headlong;
requires org.assertj.core;
requires org.bouncycastle.provider;
requires org.junit.jupiter.api;
Expand Down