-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle
54 lines (46 loc) · 1.3 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
group 'rhmodding'
version '1.4.2'
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.github.jengelman.gradle.plugins:shadow:6.1.0'
}
}
apply plugin: 'kotlin'
apply plugin: 'com.github.johnrengelman.shadow'
sourceCompatibility = 1.8
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.freeCompilerArgs += "-Xuse-experimental=kotlin.ExperimentalUnsignedTypes"
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation "com.madgag:animated-gif-lib:1.4"
// implementation "org.apache.logging.log4j:log4j-core:${log4j_version}"
// implementation "org.apache.logging.log4j:log4j-api:${log4j_version}"
implementation "com.fasterxml.jackson.core:jackson-databind:${jackson_version}"
implementation "org.jcodec:jcodec:0.2.5"
implementation "org.jcodec:jcodec-javase:0.2.5"
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
shadowJar {
baseName = "bread"
classifier = null
version = null
manifest {
attributes "Main-Class": "rhmodding.bread.Bread"
}
}