-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathbuild.gradle
More file actions
31 lines (25 loc) · 777 Bytes
/
build.gradle
File metadata and controls
31 lines (25 loc) · 777 Bytes
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
plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.8.22'
}
group 'com.github.jasync-sql'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:1.8.22"
implementation 'com.github.jasync-sql:jasync-mysql:2.2.2'
implementation "org.apache.logging.log4j:log4j-core:2.20.0"
implementation "org.slf4j:slf4j-log4j12:1.7.25"
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4'
testImplementation group: 'junit', name: 'junit', version: '4.12'
implementation 'io.github.oshai:kotlin-logging-jvm:5.0.2'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}