-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
52 lines (46 loc) · 1.58 KB
/
build.gradle
File metadata and controls
52 lines (46 loc) · 1.58 KB
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
buildscript {
ext {
springBootVersion = '2.0.3.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
classpath 'org.junit.platform:junit-platform-gradle-plugin:1.1.0'
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
apply plugin: 'org.junit.platform.gradle.plugin'
group = 'com.odde'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile(
"org.springframework.boot:spring-boot-starter-data-jpa:${springBootVersion}",
"org.springframework.boot:spring-boot-starter-security:${springBootVersion}",
"org.springframework.boot:spring-boot-starter-web:${springBootVersion}",
'org.projectlombok:lombok:1.16.22',
'mysql:mysql-connector-java:5.1.46',
'io.jsonwebtoken:jjwt:0.9.0',
'javax.xml.bind:jaxb-api:2.3.0'
)
runtime("org.springframework.boot:spring-boot-devtools:${springBootVersion}")
testCompile(
"org.springframework.boot:spring-boot-starter-test:${springBootVersion}",
"org.springframework.security:spring-security-test:5.0.6.RELEASE",
"org.junit.jupiter:junit-jupiter-api:5.2.0",
"org.mockito:mockito-core:2.+",
"org.assertj:assertj-core:3.9.1"
)
testRuntime('org.junit.jupiter:junit-jupiter-engine:5.2.0')
}
junitPlatform {
details 'tree'
}