-
Notifications
You must be signed in to change notification settings - Fork 8
/
build.gradle
45 lines (38 loc) · 1.01 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
group 'rhmodding'
version '1.0-SNAPSHOT'
buildscript {
repositories {
mavenCentral()
gradlePluginPortal()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.github.jengelman.gradle.plugins:shadow:6.1.0'
}
}
apply plugin: 'java'
apply plugin: 'kotlin'
apply plugin: 'com.github.johnrengelman.shadow'
sourceCompatibility = 1.8
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.8"
implementation "org.parboiled:parboiled-java:1.2.0"
implementation "com.google.code.gson:gson:2.8.7"
implementation "info.picocli:picocli:4.6.1"
}
shadowJar {
baseName = "tickompiler"
classifier = null
version = null
manifest {
attributes "Main-Class": "rhmodding.tickompiler.Tickompiler"
}
}