backend-demo-tn/build.gradle

35 lines
1001 B
Groovy
Raw Normal View History

2020-06-09 18:13:58 +07:00
plugins {
2020-06-10 19:38:38 +07:00
id 'org.springframework.boot' version '2.3.0.RELEASE'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'java'
2020-06-09 18:13:58 +07:00
}
group = 'com.cubetiqs'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
2020-06-10 19:38:38 +07:00
mavenCentral()
2020-06-09 18:13:58 +07:00
}
dependencies {
2020-06-23 20:45:36 +07:00
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
2020-06-10 19:38:38 +07:00
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'io.springfox:springfox-swagger2:2.9.2'
implementation 'io.springfox:springfox-swagger-ui:2.9.2'
2020-06-15 19:38:02 +07:00
runtimeOnly 'mysql:mysql-connector-java'
2020-06-10 19:38:38 +07:00
runtimeOnly 'org.postgresql:postgresql'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
2020-06-09 18:13:58 +07:00
}
test {
2020-06-10 19:38:38 +07:00
useJUnitPlatform()
2020-06-09 18:13:58 +07:00
}