-
Notifications
You must be signed in to change notification settings - Fork 44
/
build.gradle
50 lines (43 loc) · 1.31 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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'net.sf.proguard:proguard-gradle:6.2.2'
}
}
plugins {
id 'com.github.johnrengelman.shadow' version '5.2.0'
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.3.70'
}
wrapper { gradleVersion = '6.0' }
group 'dev.l2j.autobots'
version '1.0-SNAPSHOT'
sourceCompatibility = 13
repositories {
jcenter()
mavenCentral()
}
dependencies {
compile "com.fasterxml.jackson.module:jackson-module-kotlin:2.10.+"
compile "com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.10.+"
compile group: 'com.mchange', name: 'c3p0', version: '0.9.5'
compile group: 'com.mchange', name: 'mchange-commons-java', version: '0.2.6.2'
compile group: 'mysql', name: 'mysql-connector-java', version: '8.0.15'
compile group: 'org.mindrot', name: 'jbcrypt', version: '0.4'
compile group: 'org.reflections', name: 'reflections', version: '0.9.12'
compile group: 'org.jetbrains.kotlinx', name: 'kotlinx-coroutines-jdk8', version: '1.3.5'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.5'
}
compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}