mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-06-28 11:44:42 +02:00
Migrate gradle scripts to have multiple modules and source sets. Using Kotlin-DSL for enhanced script debugging.
Signed-off-by: Gabriel Harris-Rouquette <gabizou@me.com>
This commit is contained in:
15
core/build.gradle.kts
Normal file
15
core/build.gradle.kts
Normal file
@ -0,0 +1,15 @@
|
||||
|
||||
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
|
||||
))
|
||||
}
|
||||
}
|
5
core/src/main/java/com/gmail/nossr50/McmmoCore.java
Normal file
5
core/src/main/java/com/gmail/nossr50/McmmoCore.java
Normal file
@ -0,0 +1,5 @@
|
||||
package com.gmail.nossr50;
|
||||
|
||||
public class McmmoCore {
|
||||
|
||||
}
|
Reference in New Issue
Block a user