davidasync
06/21/2019, 3:38 AMgradle-dependency-lock-plugin
at gradle 5.4.1
But got this error (check the thread)
Anybody familiar with this error ?* What went wrong:
Execution failed for task ':generateGlobalLock'.
> Could not resolve all dependencies for configuration ':detachedConfiguration1'.
> Could not resolve project :common-cache.
Required by:
project :
> Project : declares a dependency from configuration 'detachedConfiguration1' to configuration 'archives' which is not declared in the descriptor for com.accom:common-cache:1.1.0.
buildscript {
repositories {
maven {
url "<https://maven-central-asia.storage-download.googleapis.com/repos/central/data>"
}
maven {
url "<https://plugins.gradle.org/m2/>"
}
mavenCentral()
jcenter()
mavenLocal()
}
dependencies
classpath "com.netflix.nebula:gradle-dependency-lock-plugin:7.5.0"
}
}
apply plugin: "nebula.dependency-lock"
wrapper {
gradleVersion = '5.4.1'
distributionType = "bin"
}
subprojects {
apply plugin: 'java-library'
apply plugin: "nebula.dependency-lock"
sourceCompatibility = 1.7
targetCompatibility = 1.7
repositories {
maven {
url "<https://maven-central-asia.storage-download.googleapis.com/repos/central/data>"
}
maven {
url "<https://plugins.gradle.org/m2/>"
}
mavenCentral()
jcenter()
mavenLocal()
}
}
danny
06/21/2019, 10:38 PMgenerateLock
)