Skip to content

Commit

Permalink
fix: quick fix for Guava patching not always working
Browse files Browse the repository at this point in the history
Signed-off-by: Jendrik Johannes <[email protected]>
  • Loading branch information
jjohannes committed Jul 4, 2024
1 parent 7754d26 commit fc5566c
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,20 @@ extraJavaModuleInfo {
requires("com.google.common.util.concurrent.internal")
requires("java.logging")
}
module("guava-32.1.3-jre.jar", "com.google.common") {
/**
* Repetition of the rule above:
*
* There is an issue when the version is "android", but the selected Jar
* with classifier is "jre". If this causes a problem depends on the local
* Gradle dependency cache state (most likely).
* This is an issue that needs to be investigated and fixed in
* https://github.com/gradlex-org/extra-java-module-info
*/
exportAllPackages()
requires("com.google.common.util.concurrent.internal")
requires("java.logging")
}
module("com.google.protobuf:protobuf-java", "com.google.protobuf") {
exportAllPackages()
requireAllDefinedDependencies()
Expand Down

0 comments on commit fc5566c

Please sign in to comment.