Replace deprecated configurations in buildSrc (#653)

This commit is contained in:
Anuraag Agrawal 2020-07-09 17:00:45 +09:00 committed by GitHub
parent 2ef6aac61c
commit f3ed2d320a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 11 deletions

View File

@ -20,18 +20,18 @@ repositories {
}
dependencies {
compile(gradleApi())
compile(localGroovy())
api(gradleApi())
implementation(localGroovy())
compile("org.eclipse.aether", "aether-connector-basic", "1.1.0")
compile("org.eclipse.aether", "aether-transport-http", "1.1.0")
compile("org.apache.maven", "maven-aether-provider", "3.3.9")
implementation("org.eclipse.aether", "aether-connector-basic", "1.1.0")
implementation("org.eclipse.aether", "aether-transport-http", "1.1.0")
implementation("org.apache.maven", "maven-aether-provider", "3.3.9")
compile("com.google.guava", "guava", "20.0")
compile("org.ow2.asm", "asm", "7.0-beta")
compile("org.ow2.asm", "asm-tree", "7.0-beta")
compile("org.apache.httpcomponents:httpclient:4.5.10")
implementation("com.google.guava", "guava", "20.0")
implementation("org.ow2.asm", "asm", "7.0-beta")
implementation("org.ow2.asm", "asm-tree", "7.0-beta")
implementation("org.apache.httpcomponents:httpclient:4.5.10")
testCompile("org.spockframework", "spock-core", "1.3-groovy-2.5")
testCompile("org.codehaus.groovy", "groovy-all", "2.5.8")
testImplementation("org.spockframework", "spock-core", "1.3-groovy-2.5")
testImplementation("org.codehaus.groovy", "groovy-all", "2.5.8")
}