new file: plugin.yml new file: settings.gradle new file: src/main/java/com/simolzimol/levelcraft/LevelCraft.java
24 lines
463 B
Groovy
24 lines
463 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group = 'com.simolzimol.levelcraft'
|
|
version = '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url = 'https://repo.papermc.io/repository/maven-public/' }
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly 'io.papermc.paper:paper-api:1.21-R0.1-SNAPSHOT'
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
|
|
tasks.withType(JavaCompile).configureEach {
|
|
options.encoding = 'UTF-8'
|
|
} |