mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-01-19 00:45:27 +01:00
15 lines
298 B
Plaintext
15 lines
298 B
Plaintext
|
|
||
|
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
|
||
|
))
|
||
|
}
|
||
|
}
|