You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.7 KiB
Groovy
54 lines
1.7 KiB
Groovy
2 years ago
|
plugins {
|
||
|
id 'org.springframework.boot' version '2.7.5'
|
||
|
id 'io.spring.dependency-management' version '1.0.15.RELEASE'
|
||
|
id 'org.asciidoctor.convert' version '1.5.8'
|
||
|
id 'java'
|
||
|
}
|
||
|
|
||
|
group = 'cokr.xit.ntri'
|
||
|
version = '0.0.1-SNAPSHOT'
|
||
|
sourceCompatibility = '11'
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
ext {
|
||
|
set('snippetsDir', file("build/generated-snippets"))
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
||
|
implementation 'org.springframework.boot:spring-boot-starter-validation'
|
||
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
||
|
runtimeOnly 'com.oracle.database.jdbc:ojdbc8'
|
||
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
||
|
testImplementation 'org.springframework.restdocs:spring-restdocs-mockmvc'
|
||
|
|
||
|
/*====================================================================================
|
||
|
* Springdoc - swagger
|
||
|
====================================================================================*/
|
||
|
implementation 'org.springdoc:springdoc-openapi-ui:1.6.3'
|
||
|
|
||
|
/*====================================================================================
|
||
|
* lombok
|
||
|
====================================================================================*/
|
||
|
implementation 'org.projectlombok:lombok'
|
||
|
annotationProcessor 'org.projectlombok:lombok'
|
||
|
|
||
|
/*====================================================================================
|
||
|
* commons-io
|
||
|
====================================================================================*/
|
||
|
implementation 'org.apache.commons:commons-io:1.3.2'
|
||
|
}
|
||
|
|
||
|
tasks.named('test') {
|
||
|
outputs.dir snippetsDir
|
||
|
useJUnitPlatform()
|
||
|
}
|
||
|
|
||
|
tasks.named('asciidoctor') {
|
||
|
inputs.dir snippetsDir
|
||
|
dependsOn test
|
||
|
}
|