2023-02-07 03:29:02 +01:00
|
|
|
plugins {
|
|
|
|
id 'java-library'
|
2023-02-07 13:12:32 +01:00
|
|
|
// id 'com.github.johnrengelman.shadow' version '7.1.2'
|
2023-02-07 03:29:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
java.toolchain.languageVersion = JavaLanguageVersion.of(8)
|
|
|
|
|
|
|
|
repositories {
|
2023-02-07 13:42:11 +01:00
|
|
|
maven { url = 'https://maven.minecraftforge.net/' }
|
2023-02-07 03:29:02 +01:00
|
|
|
maven { url = 'https://maven.fantabos.co' }
|
2023-02-07 13:42:11 +01:00
|
|
|
mavenCentral()
|
2023-02-07 03:29:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-02-07 13:42:11 +01:00
|
|
|
implementation 'org.apache.logging.log4j:log4j-api:2.15.0'
|
|
|
|
implementation 'org.apache.logging.log4j:log4j-core:2.15.0'
|
|
|
|
implementation 'org.ow2.asm:asm-commons:9.4'
|
|
|
|
implementation 'cpw.mods:modlauncher:8.1.3'
|
2023-02-07 13:12:32 +01:00
|
|
|
implementation 'ftbsc:lll:0.0.4'
|
2023-02-07 03:29:02 +01:00
|
|
|
}
|
|
|
|
|
2023-02-07 13:12:32 +01:00
|
|
|
// jar {
|
|
|
|
// dependsOn shadowJar
|
|
|
|
// }
|
2023-02-07 03:29:02 +01:00
|
|
|
|
2023-02-07 13:12:32 +01:00
|
|
|
// shadowJar {
|
|
|
|
// dependencies {
|
|
|
|
// include dependency(group: 'ftbsc', name: 'lll', version: '0.0.3')
|
|
|
|
// }
|
|
|
|
// archiveClassifier.set("all")
|
|
|
|
// }
|