mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-03 16:49:11 +00:00
15 lines
476 B
Groovy
15 lines
476 B
Groovy
apply plugin: '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
|
|
}
|