mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-03 00:38:21 +00:00
0651d535fa
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.
17 lines
481 B
Groovy
17 lines
481 B
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
description = 'Apollo Net'
|
|
|
|
dependencies {
|
|
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
|
|
}
|