aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorL.W.Reek <syphyr@gmail.com>2021-02-07 22:05:36 +0100
committerHarsh Shandilya <me@msfjarvis.dev>2021-02-10 18:31:36 +0530
commit0301c85e2ca9c56c15e1b725c516e55e09d0c74c (patch)
tree851b4ea5775bef3b9410ce5e63b3fb9e650dd689
parentbuild: upgrade to Gradle 6.8.2 (diff)
downloadwireguard-android-0301c85e2ca9c56c15e1b725c516e55e09d0c74c.tar.xz
wireguard-android-0301c85e2ca9c56c15e1b725c516e55e09d0c74c.zip
build: include org.jetbrains.trove4j from jcenter
mavenCentral does not have org.jetbrains.trove4j which causes the build to fail. * What went wrong: Execution failed for task ':tunnel:extractReleaseAnnotations'. > Could not resolve all files for configuration ':tunnel:lintClassPath'. > Could not find org.jetbrains.trove4j:trove4j:20160824. Searched in the following locations: - https://dl.google.com/dl/android/maven2/org/jetbrains/trove4j/ trove4j/20160824/trove4j-20160824.pom - https://repo.maven.apache.org/maven2/org/jetbrains/trove4j/ trove4j/20160824/trove4j-20160824.pom Required by: project :tunnel > com.android.tools.lint:lint-gradle:27.1.1 > com.android.tools:sdk-common:27.1.1 project :tunnel > com.android.tools.lint:lint-gradle:27.1.1 > com.android.tools.external.com-intellij:intellij-core:27.1.1 Fixes: 13cc4436ca22 ("build: switch to mavenCentral as the main repository") Signed-off-by: L.W.Reek <syphyr@gmail.com> Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
-rw-r--r--build.gradle2
1 files changed, 2 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
index 246fe291..44e84c70 100644
--- a/build.gradle
+++ b/build.gradle
@@ -74,6 +74,8 @@ allprojects {
content {
// https://github.com/journeyapps/zxing-android-embedded/issues/606
includeModule("com.journeyapps", "zxing-android-embedded")
+ // https://youtrack.jetbrains.com/issue/IDEA-261387
+ includeModule("org.jetbrains.trove4j", "trove4j")
}
}
}