diff options
author | L.W.Reek <syphyr@gmail.com> | 2021-02-07 22:05:36 +0100 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2021-02-10 18:31:36 +0530 |
commit | 0301c85e2ca9c56c15e1b725c516e55e09d0c74c (patch) | |
tree | 851b4ea5775bef3b9410ce5e63b3fb9e650dd689 | |
parent | 7e979817e2b250364920a4802cccb91c02a4419f (diff) |
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.gradle | 2 |
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") } } } |