25 lines
541 B
Groovy
25 lines
541 B
Groovy
|
plugins {
|
||
|
id 'java'
|
||
|
}
|
||
|
|
||
|
group 'org.calebfontenot'
|
||
|
version '1.0-SNAPSHOT'
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
maven {
|
||
|
name 'velocity'
|
||
|
url 'https://nexus.velocitypowered.com/repository/maven-public/'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
|
||
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
|
||
|
implementation 'com.velocitypowered:velocity-api:3.0.0'
|
||
|
annotationProcessor 'com.velocitypowered:velocity-api:3.0.0'
|
||
|
}
|
||
|
|
||
|
test {
|
||
|
useJUnitPlatform()
|
||
|
}
|