-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
44 lines (37 loc) · 1.55 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
plugins {
id 'org.springframework.boot' version '2.2.5.RELEASE'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'java'
}
group = 'com.aninfo'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
repositories {
mavenCentral()
}
dependencies {
// https://mvnrepository.com/artifact/org.postgresql/postgresql
implementation 'org.postgresql:postgresql'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
testImplementation 'javax.servlet:javax.servlet-api:4.0.1'
testImplementation 'io.projectreactor:reactor-test'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-data-rest'
implementation 'com.h2database:h2:1.4.200'
compile group: 'io.springfox', name: 'springfox-swagger2', version: '3.0.0'
compile group: 'io.springfox', name: 'springfox-swagger-ui', version: '2.8.0'
// compile group: 'com.h2database', name: 'h2', version: '1.4.200'
//compile group: 'mysql', name: 'mysql-connector-java', version: '8.0.19'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation('info.cukes:cucumber-java:1.2.6')
testImplementation('info.cukes:cucumber-junit:1.2.6')
testImplementation('info.cukes:cucumber-spring:1.2.6')
testImplementation('org.junit.jupiter:junit-jupiter-api:5.9.2')
testRuntime('org.junit.jupiter:junit-jupiter-engine:5.9.2')
}
test {
useJUnitPlatform()
}