-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
49 lines (39 loc) · 1.56 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
plugins {
id 'org.springframework.boot' version '2.2.1.RELEASE'
id 'io.spring.dependency-management' version '1.0.8.RELEASE'
id 'java'
}
group = 'com.ziluck.iastate'
version = '0.0.1'
sourceCompatibility = '11'
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
compile group: 'org.springframework.boot', name: 'spring-boot-starter-security'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-web'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-actuator'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-data-jpa'
compile group: 'org.flywaydb', name: 'flyway-core'
compile group: 'org.mybatis.spring.boot', name: 'mybatis-spring-boot-starter', version: '2.1.1'
compile group: 'org.springframework.session', name: 'spring-session-core'
// Java JWT
compile group: 'io.jsonwebtoken', name: 'jjwt', version: '0.9.1'
// Oracle Driver
compile group: 'com.oracle.jdbc', name: 'ojdbc10', version: '19.+'
// jFairy
compile group: 'com.devskiller', name: 'jfairy', version: '0.6.2'
// Spring Test
testCompile('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
testCompile 'org.springframework.security:spring-security-test'
// JUnit
testCompile 'junit:junit:4.12'
// https://mvnrepository.com/artifact/io.swagger/swagger-annotations
compile group: 'io.swagger', name: 'swagger-annotations', version: '1.6.0'
}
test {
useJUnitPlatform()
}