73 lines
2.3 KiB
Groovy
73 lines
2.3 KiB
Groovy
plugins {
|
|
id 'org.springframework.boot' version '2.6.2'
|
|
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
|
|
id "com.ewerk.gradle.plugins.querydsl" version "1.0.10"
|
|
id 'java'
|
|
}
|
|
|
|
group = 'com.mangkyu.employment'
|
|
version = '0.0.1-SNAPSHOT'
|
|
sourceCompatibility = '1.8'
|
|
|
|
configurations {
|
|
compileOnly {
|
|
extendsFrom annotationProcessor
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
|
implementation 'org.springframework.boot:spring-boot-starter-mail'
|
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
|
implementation 'org.springframework.boot:spring-boot-starter-validation'
|
|
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
|
|
compileOnly 'org.projectlombok:lombok'
|
|
implementation 'org.modelmapper:modelmapper:2.4.2'
|
|
runtimeOnly 'org.mariadb.jdbc:mariadb-java-client'
|
|
|
|
// https://mvnrepository.com/artifact/com.google.code.gson/gson
|
|
implementation group: 'com.google.code.gson', name: 'gson'
|
|
annotationProcessor 'org.projectlombok:lombok'
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
|
implementation 'com.h2database:h2'
|
|
|
|
// https://mvnrepository.com/artifact/org.apache.commons/commons-lang3
|
|
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.12.0'
|
|
testImplementation 'io.github.mangkyu:spring-boot-test-automock:0.0.4'
|
|
|
|
// https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload
|
|
implementation group: 'commons-fileupload', name: 'commons-fileupload', version: '1.4'
|
|
|
|
implementation group: 'com.querydsl', name: 'querydsl-apt', version: '5.0.0'
|
|
implementation group: 'com.querydsl', name: 'querydsl-jpa', version: '5.0.0'
|
|
|
|
implementation 'io.springfox:springfox-boot-starter:3.0.0'
|
|
implementation 'io.springfox:springfox-swagger-ui:3.0.0'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
def querydslDir = "$buildDir/generated/querydsl"
|
|
|
|
querydsl {
|
|
jpa = true
|
|
querydslSourcesDir = querydslDir
|
|
}
|
|
sourceSets {
|
|
main.java.srcDir querydslDir
|
|
}
|
|
compileQuerydsl{
|
|
options.annotationProcessorPath = configurations.querydsl
|
|
}
|
|
configurations {
|
|
compileOnly {
|
|
extendsFrom annotationProcessor
|
|
}
|
|
querydsl.extendsFrom compileClasspath
|
|
} |