|
|
|
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'
|
|
|
|
|
|
|
|
|
|
|
|
/*====================================================================================
|
|
|
|
* external library
|
|
|
|
====================================================================================*/
|
|
|
|
implementation fileTree(dir: 'libs', includes: ['*.jar'])
|
|
|
|
// implementation files("libs/ojdbc8.jar")
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.named('test') {
|
|
|
|
outputs.dir snippetsDir
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.named('asciidoctor') {
|
|
|
|
inputs.dir snippetsDir
|
|
|
|
dependsOn test
|
|
|
|
}
|