mcMMO/core/build.gradle.kts

15 lines
298 B
Plaintext
Raw Normal View History

plugins {
java
}
dependencies {
implementation("junit", "junit", "4.12")
}
val jar by tasks.getting(Jar::class) {
manifest {
attributes(mapOf(
"Implementation-Title" to project.name,
"Implementation-Version" to project.version
))
}
}