megareflection/build.gradle

27 lines
No EOL
652 B
Groovy

plugins {
id 'java-library'
id 'maven'
}
group 'org.zhdev'
version '1.0.2-SNAPSHOT'
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
repositories {
mavenCentral()
maven { url 'https://repo.papermc.io/repository/maven-public/' }
}
dependencies {
compileOnly 'com.destroystokyo.paper:paper-api:1.16.4-R0.1-SNAPSHOT'
testImplementation 'com.destroystokyo.paper:paper-api:1.16.4-R0.1-SNAPSHOT'
testImplementation('org.junit.jupiter:junit-jupiter:5.7.0')
testImplementation 'org.mockito:mockito-core:3.6.28'
testImplementation 'org.mockito:mockito-inline:3.6.28'
}
test {
useJUnitPlatform()
}