2018-08-01 00:20:39 -04:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
2018-10-27 23:45:35 -04:00
|
|
|
id 'checkstyle'
|
2018-08-01 00:20:39 -04:00
|
|
|
}
|
|
|
|
|
2018-10-27 21:45:42 -04:00
|
|
|
apply from: '../gradle/checkerframework.gradle'
|
2018-10-27 23:45:35 -04:00
|
|
|
apply from: '../gradle/checkstyle.gradle'
|
2018-10-27 21:45:42 -04:00
|
|
|
|
2018-08-01 00:20:39 -04:00
|
|
|
dependencies {
|
|
|
|
compile "com.google.guava:guava:${guavaVersion}"
|
2018-12-28 13:02:41 -05:00
|
|
|
compile "io.netty:netty-handler:${nettyVersion}"
|
2018-10-27 21:45:42 -04:00
|
|
|
compile "org.checkerframework:checker-qual:${checkerFrameworkVersion}"
|
|
|
|
|
2018-08-01 22:22:09 -04:00
|
|
|
testCompile "org.junit.jupiter:junit-jupiter-api:${junitVersion}"
|
|
|
|
testCompile "org.junit.jupiter:junit-jupiter-engine:${junitVersion}"
|
2018-08-01 00:20:39 -04:00
|
|
|
}
|