forked from 42BoB-s/42BoB-s_solution
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
41 lines (38 loc) · 1.58 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
buildscript {
ext {
springBootVersion = '2.1.7.RELEASE'
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
group 'org.leeworld9'
version '1.0-SNAPSHOT'
sourceCompatibility = '11'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.junit.jupiter:junit-jupiter:5.7.0'
compile('org.springframework.boot:spring-boot-starter-web')
implementation("org.springframework.boot:spring-boot-starter-jdbc")
implementation group: 'org.mariadb.jdbc', name: 'mariadb-java-client', version: '2.7.3'
compile('org.projectlombok:lombok')
testImplementation group: 'junit', name: 'junit', version: '4.12'
compile ('com.googlecode.json-simple:json-simple:1.1.1')
testCompile('org.springframework.boot:spring-boot-starter-test')
implementation ('org.springframework.boot:spring-boot-starter-quartz')
implementation group: 'com.ullink.slack', name: 'simpleslackapi', version: '1.2.0'
compile ('com.googlecode.json-simple:json-simple:1.1.1')
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.12.3'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.12.3'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.12.3'
}