-
Notifications
You must be signed in to change notification settings - Fork 14
Home
Sergio del Amo edited this page Aug 22, 2024
·
2 revisions
You may have to modify settings.gradle
and add:
dependencyResolutionManagement {
repositories {
mavenCentral()
mavenLocal {
mavenContent {
snapshotsOnly()
}
}
}
}
and in the base script of the module e.g. buildSrc/src/main/groovy/io.micronaut.build.internal.aws-base.gradle
repositories {
mavenCentral()
mavenLocal() {
mavenContent {
snapshotsOnly()
}
}
}