File name
Commit message
Commit date
plugins {
id 'java'
id 'org.springframework.boot' version '3.3.1'
id 'io.spring.dependency-management' version '1.1.5'
}
group = 'com.takensoft'
version = '0.0.1-SNAPSHOT'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
repositories {
mavenCentral()
maven {
url "https://repo1.maven.org/maven2/"
}
maven {
url "https://maven.egovframe.go.kr/maven/"
mavenContent {
releasesOnly()
}
}
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-web-services'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.security:spring-security-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
compileOnly 'org.projectlombok:lombok:1.18.34'
annotationProcessor 'org.projectlombok:lombok:1.18.34'
// 전자정부프레임워크 (4.2)
implementation ('org.egovframe.rte:org.egovframe.rte.ptl.mvc:4.2.0') {
exclude group: 'commons-logging', module: 'commons-logging'
}
implementation 'org.egovframe.rte:org.egovframe.rte.psl.dataaccess:4.2.0'
implementation 'org.egovframe.rte:org.egovframe.rte.fdl.idgnr:4.2.0'
implementation 'org.egovframe.rte:org.egovframe.rte.fdl.property:4.2.0'
// springdoc-openapi
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.6.0'
// jdbc driver - postgresql
implementation 'org.postgresql:postgresql:42.2.23'
// mariadb
implementation 'org.mariadb.jdbc:mariadb-java-client:3.0.7'
// mybatis
implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:3.0.3'
// log4jdbc
implementation 'org.bgee.log4jdbc-log4j2:log4jdbc-log4j2-jdbc4:1.16'
//JWT
implementation 'io.jsonwebtoken:jjwt-api:0.12.5'
implementation 'io.jsonwebtoken:jjwt-impl:0.12.5'
implementation 'io.jsonwebtoken:jjwt-jackson:0.12.5'
// redis
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
implementation 'org.springframework.boot:spring-boot-starter-cache'
// gson
implementation 'com.google.code.gson:gson:2.10.1'
}
tasks.named('test') {
useJUnitPlatform()
}