summaryrefslogtreecommitdiff
path: root/build.gradle
blob: 73fdad2fb0dd92238cf059405ea4c3a5d251b6f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
apply plugin: 'java-library'

java.toolchain.languageVersion = JavaLanguageVersion.of(8)

repositories {
    maven { url = 'https://maven.minecraftforge.net/' }
    mavenCentral()
}

dependencies {
    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'
}