Skip to content

Commit

Permalink
fix deprecations
Browse files Browse the repository at this point in the history
  • Loading branch information
drernie committed Dec 22, 2024
1 parent a5424ea commit c6b3331
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,11 @@ allprojects {
idea {
module.inheritOutputDirs = true
}

repositories {
mavenCentral()
maven { url 'https://repo.eclipse.org/content/groups/releases' }
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
maven { url = 'https://repo.eclipse.org/content/groups/releases' }
maven { url = 'https://oss.sonatype.org/content/repositories/snapshots' }
}

configurations {
// see https://docs.gradle.org/4.1/userguide/dependency_management.html#sub:exclude_transitive_dependencies
all*.exclude group: 'org.codehaus.groovy', module: 'groovy-all'
Expand Down
2 changes: 1 addition & 1 deletion plugins/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ subprojects {
tasks.register('copyPluginLibs', Sync) {
from configurations.runtimeClasspath
into 'build/target/libs'
duplicatesStrategy 'exclude'
duplicatesStrategy = 'exclude'
}

/*
Expand Down

0 comments on commit c6b3331

Please sign in to comment.