-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
53 lines (47 loc) · 1.6 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
plugins {
id "org.springframework.boot" version "2.6.4"
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'org.jetbrains.kotlin.jvm' version '1.6.20-RC'
id 'org.jetbrains.kotlin.plugin.jpa' version '1.3.21'
id 'org.jetbrains.kotlin.plugin.spring' version '1.3.21'
id 'org.jlleitschuh.gradle.ktlint' version '10.2.1'
}
ext {
set('springCloudVersion', "2021.0.2-SNAPSHOT")
}
repositories {
mavenCentral()
}
compileJava {
sourceCompatibility=JavaVersion.VERSION_15
targetCompatibility=JavaVersion.VERSION_15
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-cassandra'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.apache.zookeeper:zookeeper:3.8.0'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-tomcat:1.2.1.RELEASE'
implementation 'org.projectlombok:lombok:1.18.20'
implementation 'org.springframework.boot:spring-boot-starter-parent:2.6.2'
implementation 'org.springframework.boot:spring-boot-starter:2.6.2'
implementation 'org.springframework:spring-core:5.3.13'
implementation 'com.datastax.cassandra:cassandra-driver-core:3.11.0'
implementation 'javax.persistence:javax.persistence-api:2.2'
implementation 'com.h2database:h2:2.1.210'
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8'
implementation 'org.jetbrains.kotlin:kotlin-reflect:1.1.51'
}
test {
useJUnitPlatform()
}
compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}