4
0
Fork 0
mirror of https://github.com/Anvilcraft/modpacktools synced 2024-09-30 13:09:20 +02:00
modpacktools/build.gradle

73 lines
2 KiB
Groovy
Raw Normal View History

2020-04-30 20:48:45 +02:00
plugins {
id 'java'
id 'application'
id 'idea'
id 'org.jetbrains.kotlin.jvm' version '1.3.72'
2020-04-30 20:48:45 +02:00
}
group 'ley.anvil'
2020-05-01 21:50:06 +02:00
version '1.1-SNAPSHOT'
2020-04-30 20:48:45 +02:00
sourceCompatibility = 1.8
repositories {
mavenCentral()
2020-04-30 20:50:48 +02:00
maven { url 'https://jitpack.io' }
2020-04-30 20:48:45 +02:00
}
dependencies {
//Kotlin
implementation "org.jetbrains.kotlin:kotlin-reflect:1.3.72"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.3.8"
//Other
compile 'com.squareup.okhttp3:okhttp:4.8.0'
compile 'com.github.Anvilcraft:addonscript-java:c8bc9db'
2020-04-30 20:50:48 +02:00
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.6'
2020-05-31 19:14:59 +02:00
compile 'com.moandjiezana.toml:toml4j:0.7.2'
2020-04-30 20:50:48 +02:00
compile "com.github.TheRandomLabs:CurseAPI:master-SNAPSHOT"
2020-05-01 21:50:06 +02:00
compile 'org.apache.commons:commons-csv:1.8'
2020-04-30 20:48:45 +02:00
testCompile group: 'junit', name: 'junit', version: '4.12'
2020-05-02 16:34:26 +02:00
compile 'org.slf4j:slf4j-simple:2.0.0-alpha1'
2020-05-02 18:19:03 +02:00
compile 'com.j2html:j2html:1.4.0'
compile 'org.reflections:reflections:0.9.12'
compile 'commons-io:commons-io:2.7'
2020-04-30 20:48:45 +02:00
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
2020-07-25 22:50:27 +02:00
kotlinOptions {
//without this option, kotlin interfaces dont support default methods in java (will be changed in kt 1.4)
freeCompilerArgs = ['-Xjvm-default=compatibility']
}
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
2020-07-25 22:50:27 +02:00
kotlinOptions {
//without this option, kotlin interfaces dont support default methods in java (will be changed in kt 1.4)
freeCompilerArgs = ['-Xjvm-default=compatibility']
}
}
2020-05-01 12:51:57 +02:00
sourceSets {
main {
resources {
srcDirs "src/main/resources"
}
}
}
mainClassName = 'ley.anvil.modpacktools.Main'
//create a single Jar with all dependencies
task fatJar(type: Jar) {
clean
manifest {
attributes 'Main-Class': mainClassName
}
archiveBaseName = 'ModPackTools'
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}