Add Coal Cents economy
This commit is contained in:
32
CoalGov/build.gradle
Normal file
32
CoalGov/build.gradle
Normal file
@@ -0,0 +1,32 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'com.gradleup.shadow' version '8.3.6'
|
||||
}
|
||||
|
||||
group = 'com.librewiki'
|
||||
version = '1.0.0'
|
||||
|
||||
java {
|
||||
toolchain {
|
||||
languageVersion = JavaLanguageVersion.of(21)
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compileOnly 'io.papermc.paper:paper-api:1.21.11-R0.1-SNAPSHOT'
|
||||
compileOnly 'net.citizensnpcs:citizens-main:2.0.42-SNAPSHOT'
|
||||
implementation 'org.xerial:sqlite-jdbc:3.49.1.0'
|
||||
}
|
||||
|
||||
tasks.withType(JavaCompile).configureEach {
|
||||
options.encoding = 'UTF-8'
|
||||
options.release = 21
|
||||
}
|
||||
|
||||
tasks.shadowJar {
|
||||
archiveClassifier.set('')
|
||||
}
|
||||
|
||||
tasks.build {
|
||||
dependsOn tasks.shadowJar
|
||||
}
|
||||
Reference in New Issue
Block a user