Replace deprecated configurations in buildSrc (#653)
This commit is contained in:
parent
2ef6aac61c
commit
f3ed2d320a
|
@ -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")
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue