/* * This file was generated by the Gradle 'init' task. */ plugins { // id 'java-library' // id 'maven-publish' id 'java' id 'org.springframework.boot' version '3.4.1' id 'io.spring.dependency-management' version '1.1.7' } repositories { // mavenLocal() mavenCentral() maven { url = uri('https://repo1.maven.org/maven2/') } maven { url = uri('https://maven.egovframe.go.kr/maven/') mavenContent { releasesOnly() } } maven { url = uri('https://repo.maven.apache.org/maven2/') } } dependencies { implementation 'org.springframework.boot:spring-boot-starter-web' implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' implementation 'org.springframework.boot:spring-boot-starter-validation' implementation 'org.springframework.boot:spring-boot-starter-security' implementation 'org.springframework.boot:spring-boot-starter-web-services' implementation 'org.springframework.boot:spring-boot-starter-data-redis' implementation 'org.springframework.boot:spring-boot-starter-cache' 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' implementation 'org.hsqldb:hsqldb:2.7.2' compileOnly 'org.projectlombok:lombok:1.18.34' annotationProcessor 'org.projectlombok:lombok:1.18.34' // springdoc-openapi implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.6.0' implementation 'org.hibernate:hibernate-entitymanager:5.6.15.Final' implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:3.0.3' implementation 'com.github.ben-manes.caffeine:caffeine' implementation 'mysql:mysql-connector-java:8.0.23' implementation 'org.mariadb.jdbc:mariadb-java-client:2.6.2' implementation 'org.postgresql:postgresql:42.6.0' implementation 'org.bgee.log4jdbc-log4j2:log4jdbc-log4j2-jdbc4.1:1.16' implementation 'org.apache.poi:poi-ooxml:4.1.2' implementation 'org.apache.commons:commons-lang3:3.14.0' implementation 'com.oracle.database.jdbc:ojdbc10:19.16.0.0' implementation 'io.jsonwebtoken:jjwt-api:0.12.5' implementation 'io.jsonwebtoken:jjwt-impl:0.12.5' implementation 'io.jsonwebtoken:jjwt-jackson:0.12.5' implementation group: 'net.rakugakibox.util', name: 'yaml-resource-bundle', version: '1.1' testImplementation 'org.springframework.boot:spring-boot-starter-test' testImplementation 'org.springframework.security:spring-security-test' } group = 'com.takensoft' // version = '1.0.0' version = '0.0.1-SNAPSHOT' //description = 'cms' // java.sourceCompatibility = JavaVersion.VERSION_1_8 java.sourceCompatibility = '17' /*publishing { publications { maven(MavenPublication) { from(components.java) } } }*/ tasks.withType(JavaCompile) { options.encoding = 'UTF-8' } tasks.withType(Javadoc) { options.encoding = 'UTF-8' }