-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
52 lines (43 loc) · 1.65 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
plugins {
id 'org.springframework.boot' version '2.2.4.RELEASE'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'java'
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
mavenCentral()
maven{
url "https://oss.jfrog.org/artifactory/oss-snapshot-local"
}
}
dependencies {
//cucumber stuff
testImplementation "org.junit.jupiter:junit-jupiter-api:5.5.0"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.5.0"
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.5.0"
testCompile "info.cukes:cucumber-spring:1.2.4"
testCompile "info.cukes:cucumber-junit:1.2.4"
testCompile "info.cukes:cucumber-java:1.2.4"
testCompile "info.cukes:cucumber-core:1.2.4"
testCompile 'junit:junit:4.12'
compile 'junit:junit:4.12'
compile 'org.springframework.security:spring-security-core:5.2.1.RELEASE'
compile 'org.springframework.security:spring-security-config:5.2.1.RELEASE'
compile 'org.springframework.security:spring-security-web:5.2.1.RELEASE'
compile 'io.jsonwebtoken:jjwt:0.9.1'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'io.springfox:springfox-swagger2:3.0.0-SNAPSHOT'
implementation 'io.springfox:springfox-swagger-ui:2.9.2'
implementation 'io.springfox:springfox-data-rest:3.0.0-SNAPSHOT'
implementation 'io.springfox:springfox-bean-validators:3.0.0-SNAPSHOT'
runtimeOnly 'org.postgresql:postgresql'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
}
test {
useJUnitPlatform()
}