한국공항공사(KAC) - 서버
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

165 lines
5.0 KiB

1 year ago
plugins {
id 'java'
id 'org.springframework.boot' version '2.5.1'
id 'io.spring.dependency-management' version '1.0.15.RELEASE'
id 'com.ewerk.gradle.plugins.querydsl' version '1.0.10'
}
group = 'com.palnet'
version = '0.0.1'
1 year ago
java {
sourceCompatibility = '11'
}
compileJava {
options.compilerArgs += [
'-Amapstruct.unmappedTargetPolicy=IGNORE',
'-Amapstruct.unmappedSourcePolicy=IGNORE'
1 year ago
]
}
repositories {
mavenCentral {
content {
excludeModule("javax.media", "jai_core")
}
}
maven { url "https://repo.osgeo.org/repository/release" }
1 year ago
}
jar {
enabled = false
}
1 year ago
dependencies {
// implementation project(':pav-common')
1 year ago
// spring
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-cache'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
// implementation 'io.springfox:springfox-boot-starter:3.0.0'
implementation 'org.springdoc:springdoc-openapi-ui:1.6.15'
// thymeleaf
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
// pdf create
implementation 'com.itextpdf:html2pdf:5.0.1'
1 year ago
// db
runtimeOnly 'mysql:mysql-connector-java'
// log
implementation 'ch.qos.logback:logback-classic'
1 year ago
// aws
implementation 'org.springframework.cloud:spring-cloud-starter-aws:2.0.1.RELEASE'
implementation 'org.springframework.cloud:spring-cloud-aws-context:1.2.1.RELEASE'
implementation 'org.springframework.cloud:spring-cloud-aws-autoconfigure:2.0.1.RELEASE'
// lombok, mapstruct
compileOnly 'org.projectlombok:lombok:1.18.28'
annotationProcessor 'org.projectlombok:lombok:1.18.28'
1 year ago
implementation 'org.mapstruct:mapstruct:1.5.5.Final'
1 year ago
annotationProcessor 'org.mapstruct:mapstruct-processor:1.5.5.Final'
annotationProcessor 'org.projectlombok:lombok-mapstruct-binding:0.2.0'
// querydsl - jpa
implementation 'com.querydsl:querydsl-core:5.0.0'
implementation 'com.querydsl:querydsl-jpa:5.0.0'
implementation 'com.querydsl:querydsl-sql:5.0.0'
1 year ago
annotationProcessor 'com.querydsl:querydsl-apt:5.0.0'
// other
implementation 'io.jsonwebtoken:jjwt:0.9.1'
// implementation 'io.netty:netty-all:4.1.9.Final'
1 year ago
implementation 'org.bgee.log4jdbc-log4j2:log4jdbc-log4j2-jdbc4:1.16'
implementation 'org.apache.httpcomponents:httpclient:4.5.13'
implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation 'org.apache.commons:commons-io:1.3.2'
1 year ago
implementation 'commons-httpclient:commons-httpclient:3.1'
implementation 'com.googlecode.json-simple:json-simple:1.1.1'
implementation 'org.json:json:20220320'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr353:2.15.2'
// excel
implementation 'org.apache.poi:poi:5.2.5'
implementation 'org.apache.poi:poi-ooxml:5.2.5'
// geometry
implementation 'com.esri.geometry:esri-geometry-api:2.2.4'
implementation 'org.locationtech.proj4j:proj4j:1.3.0'
1 year ago
implementation 'org.locationtech.proj4j:proj4j-epsg:1.3.0'
implementation 'org.locationtech.jts:jts-core:1.19.0'
implementation 'org.geotools:gt-geojson:29.2'
implementation 'org.geotools:gt-coverage:29.2'
implementation 'org.geotools:gt-geotiff:29.2'
implementation 'org.geotools:gt-epsg-hsql:29.2'
10 months ago
// QR Code
implementation 'com.google.zxing:core:3.5.2'
implementation 'com.google.zxing:javase:3.5.2'
// hancom
// implementation 'kr.dogfoot:hwplib:1.1.6'
implementation 'kr.dogfoot:hwpxlib:1.0.3'
testCompileOnly 'org.projectlombok:lombok:1.18.28'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.28'
1 year ago
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testAnnotationProcessor "org.mapstruct:mapstruct-processor:1.5.5.Final"
1 year ago
}
tasks.named('test') {
useJUnitPlatform()
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
1 year ago
tasks.withType(Test) {
enabled = false
}
1 year ago
def querydslDir = "$buildDir/generated/querydsl"
10 months ago
def mapstructDir = "$buildDir/generated/sources/annotationProcessor/java/main"
1 year ago
querydsl {
jpa = true
querydslSourcesDir = querydslDir
}
10 months ago
1 year ago
sourceSets {
main.java.srcDir querydslDir
main.java.srcDir mapstructDir
1 year ago
}
10 months ago
sourceSets.each { srcSet ->
println "[" + srcSet.name + "]"
print "-->Source directories: " + srcSet.allJava.srcDirs + "\n"
print "-->Output directories: " + srcSet.output.classesDirs.files + "\n"
println ""
}
10 months ago
1 year ago
configurations {
querydsl.extendsFrom compileClasspath
}
compileQuerydsl {
options.annotationProcessorPath = configurations.querydsl
}