geforkt von Mirrors/Velocity
dc48eb97f9
Note that this will remain internal API for Velocity and the publication of the module does not necessarily indicate that they will be stable.
17 Zeilen
536 B
Groovy
17 Zeilen
536 B
Groovy
plugins {
|
|
id 'java-library'
|
|
id 'checkstyle'
|
|
id 'maven-publish'
|
|
}
|
|
|
|
apply from: '../gradle/checkstyle.gradle'
|
|
apply from: '../gradle/publish.gradle'
|
|
|
|
dependencies {
|
|
implementation "com.google.guava:guava:${guavaVersion}"
|
|
implementation "io.netty:netty-handler:${nettyVersion}"
|
|
implementation "org.checkerframework:checker-qual:${checkerFrameworkVersion}"
|
|
|
|
testImplementation "org.junit.jupiter:junit-jupiter-api:${junitVersion}"
|
|
testImplementation "org.junit.jupiter:junit-jupiter-engine:${junitVersion}"
|
|
} |