-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
36 lines (28 loc) · 1.09 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
plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.3.11'
}
group 'com.gp'
version '1.0'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib-jdk8', version: '1.3.11'
compile group: 'org.jetbrains.kotlin', name: 'kotlin-reflect', version: '1.3.11'
compile group: 'org.hibernate', name: 'hibernate-core', version: '5.4.0.Final'
compile group: 'com.h2database', name: 'h2', version: '1.4.197'
compile group: 'org.apache.tomcat', name: 'tomcat-dbcp', version: '9.0.14'
compile group: 'org.springframework', name: 'spring-context', version: '5.1.3.RELEASE'
compile group: 'org.springframework', name: 'spring-tx', version: '5.1.3.RELEASE'
compile group: 'org.springframework', name: 'spring-orm', version: '5.1.3.RELEASE'
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
compile group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}