Update to Kotlin 1.60 and Gradle 4.9

Removes the dependency on legacy script compilation and now relies on script
discovery.  In addition, the Gradle build scripts were refactored and updated
to be compatible with Gradle 5.0 and make use of the new java-library
configurations.
This commit is contained in:
Gary Tierney
2018-08-19 19:26:51 +01:00
parent 7fee8277ab
commit 0651d535fa
20 changed files with 171 additions and 181 deletions
+12 -2
View File
@@ -1,6 +1,16 @@
plugins {
id 'java-library'
}
description = 'Apollo Net'
dependencies {
compile project(':cache')
compile project(':util')
api project(':cache')
implementation project(':util')
implementation group: 'io.netty', name: 'netty-all', version: nettyVersion
implementation group: 'com.google.guava', name: 'guava', version: guavaVersion
implementation group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: bouncycastleVersion
testImplementation group: 'junit', name: 'junit', version: junitVersion
}