-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
32 lines (26 loc) · 1.16 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
plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.3.50'
id 'org.springframework.boot' version '2.1.9.RELEASE'
id 'io.freefair.lombok' version '4.1.2'
}
sourceCompatibility = 1.8
bootRun {
standardInput = System.in
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa:2.1.8.RELEASE'
runtimeOnly 'mysql:mysql-connector-java:8.0.17'
implementation group: 'com.paralleldots', name: 'paralleldots', version: '1.0.2'
implementation group: 'org.springframework.shell', name: 'spring-shell-starter', version: '2.0.1.RELEASE'
implementation group: 'org.jsoup', name: 'jsoup', version: '1.12.1'
implementation group: 'com.opencsv', name: 'opencsv', version: '4.6'
implementation group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib', version: '1.3.50'
compile group: 'com.vdurmont', name: 'emoji-java', version: '5.1.1'
annotationProcessor('org.hibernate:hibernate-jpamodelgen:5.4.7.Final')
testImplementation 'org.springframework.boot:spring-boot-starter-test:2.1.8.RELEASE'
testCompile group: 'com.h2database', name: 'h2', version: '1.4.200'
}