File name
Commit message
Commit date
plugins {
id 'java'
id 'org.springframework.boot' version '3.2.1'
id 'io.spring.dependency-management' version '1.1.4'
}
group = 'com.takensoft'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '17'
}
repositories {
mavenCentral()
}
dependencies {
// postgresql jdbc
implementation group: 'org.postgresql', name: 'postgresql', version: '42.6.0'
// 오라클 jdbc
implementation group: 'com.oracle.database.jdbc', name: 'ojdbc11', version: '21.8.0.0'
// 마리아 jdbc
implementation group: 'org.mariadb.jdbc', name: 'mariadb-java-client', version: '3.3.2'
// mysql jdbc
implementation group: 'com.mysql', name: 'mysql-connector-j', version: '8.0.33'
// mssql jdbc
implementation group: 'com.microsoft.sqlserver', name: 'mssql-jdbc', version: '12.4.2.jre11'
// mybatis
implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:3.0.3'
//lombok 라이브러리
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testCompileOnly 'org.projectlombok:lombok'
testAnnotationProcessor 'org.projectlombok:lombok'
// https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple
implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
// https://mvnrepository.com/artifact/org.json/json
implementation group: 'org.json', name: 'json', version: '20231013'
// https://mvnrepository.com/artifact/org.springframework.security/spring-security-crypto
implementation group: 'org.springframework.security', name: 'spring-security-crypto', version: '6.2.1'
// https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api
//compileOnly group: 'javax.servlet', name: 'javax.servlet-api', version: '3.0.1'
// 기본
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
tasks.named('test') {
useJUnitPlatform()
}