41 lines
1.5 KiB
Groovy
41 lines
1.5 KiB
Groovy
plugins {
|
|
id 'org.springframework.boot' version '2.7.2'
|
|
id 'io.spring.dependency-management' version '1.0.12.RELEASE'
|
|
id 'java'
|
|
}
|
|
|
|
group = 'com.dbnt'
|
|
version = '0.0.1-SNAPSHOT'
|
|
sourceCompatibility = '11'
|
|
|
|
configurations {
|
|
compileOnly {
|
|
extendsFrom annotationProcessor
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly 'org.projectlombok:lombok:1.18.24'
|
|
implementation 'org.springframework.boot:spring-boot-starter-actuator:2.7.2'
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-jpa:2.7.2'
|
|
implementation 'org.springframework.boot:spring-boot-starter-security:2.7.2'
|
|
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf:2.7.2'
|
|
implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:3.1.0'
|
|
implementation 'org.springframework.boot:spring-boot-starter-web:2.7.2'
|
|
implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:2.2.2'
|
|
implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5:3.0.4.RELEASE'
|
|
implementation 'org.bgee.log4jdbc-log4j2:log4jdbc-log4j2-jdbc4.1:1.16'
|
|
//엑셀다운
|
|
implementation 'org.apache.poi:poi:4.1.0'
|
|
implementation 'org.apache.poi:poi-ooxml:4.1.0'
|
|
|
|
developmentOnly 'org.springframework.boot:spring-boot-devtools:2.7.2'
|
|
runtimeOnly 'org.postgresql:postgresql:42.3.6'
|
|
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor:2.7.2'
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.24'
|
|
}
|