megareflection/build.gradle
2020-12-21 13:20:24 +01:00

27 lines
No EOL
674 B
Groovy

plugins {
id 'java-library'
id 'maven'
}
group 'dev.frankheijden.minecraftreflection'
version '1.0.1-DEV'
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
repositories {
mavenCentral()
maven { url 'https://papermc.io/repo/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()
}