2021-11-17 03:28:40 +00:00
|
|
|
buildscript {
|
|
|
|
dependencies {
|
2022-04-19 01:26:59 +00:00
|
|
|
classpath files("buildlibs/simple-ypk-packer-0.1.0.jar")
|
2021-11-17 03:28:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id 'java-library'
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.withType(JavaCompile) {
|
|
|
|
options.compilerArgs << '-Xlint:none'
|
|
|
|
options.compilerArgs << '-Xlint:deprecation' << "-Werror"
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main {
|
|
|
|
java {
|
|
|
|
srcDirs 'src/main/java'
|
|
|
|
}
|
|
|
|
resources {
|
|
|
|
srcDir 'src/main/resources'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
test {
|
|
|
|
java {
|
|
|
|
srcDir 'src/test/java'
|
|
|
|
}
|
|
|
|
resources {
|
|
|
|
srcDir 'src/test/resources'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
api 'org.apache.logging.log4j:log4j-core:2.14.1'
|
|
|
|
api 'org.apache.logging.log4j:log4j-api:2.14.1'
|
2022-04-19 01:26:59 +00:00
|
|
|
api 'com.google.code.gson:gson:2.8.8'
|
|
|
|
|
2021-12-07 09:00:03 +00:00
|
|
|
implementation fileTree(dir: 'cplibs', include: '*.jar')
|
|
|
|
implementation fileTree(dir: 'cplibs/lib/', include: '*.jar')
|
2022-04-19 01:26:59 +00:00
|
|
|
implementation 'org.bdware.doip:doip-audit-tool:0.9.0'
|
2021-11-17 03:28:40 +00:00
|
|
|
testImplementation 'junit:junit:4.13.2'
|
|
|
|
}
|
|
|
|
|
|
|
|
task copyLibs(type: Copy) {
|
|
|
|
from configurations.runtimeClasspath
|
|
|
|
into "./build/output/libs/"
|
|
|
|
}
|
|
|
|
|
|
|
|
task copyYJS(type: Copy) {
|
|
|
|
from "./yjs"
|
|
|
|
into "./build/output/"
|
|
|
|
}
|
|
|
|
|
2021-12-07 09:00:03 +00:00
|
|
|
task sourcesJar(type: Jar) {
|
2021-11-17 03:28:40 +00:00
|
|
|
from sourceSets.main.allJava
|
|
|
|
archiveClassifier = 'sources'
|
|
|
|
}
|
2021-12-07 09:00:03 +00:00
|
|
|
task copyAssets(type: Copy) {
|
2021-11-17 03:28:40 +00:00
|
|
|
from "../front"
|
|
|
|
into "./build/output/assets/"
|
|
|
|
}
|
2022-04-19 01:26:59 +00:00
|
|
|
task copyJar(type: Copy, dependsOn: [":backend:jar", ":backend:copyLibs"]) {
|
2022-04-20 04:00:37 +00:00
|
|
|
from "./build/libs/$project.name-${project.version}.jar"
|
2021-11-17 03:28:40 +00:00
|
|
|
into "./build/output"
|
2022-04-20 04:00:37 +00:00
|
|
|
rename { String fileName -> "controlproxy-${project.version}.jar" }
|
2021-11-17 03:28:40 +00:00
|
|
|
doFirst {
|
|
|
|
println "copyJar start"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-07 09:00:03 +00:00
|
|
|
task buildZip(type: Zip, dependsOn: ["copyAssets", "copyJar", "copyYJS"]) {
|
2021-11-17 03:28:40 +00:00
|
|
|
from './build/output/'
|
|
|
|
duplicatesStrategy = DuplicatesStrategy.INCLUDE
|
2022-04-19 01:26:59 +00:00
|
|
|
archiveFileName = 'ControlProxy.zip'
|
2021-11-17 03:28:40 +00:00
|
|
|
destinationDirectory = file('build/')
|
|
|
|
}
|
|
|
|
|
2021-12-07 09:00:03 +00:00
|
|
|
task buildYPK(dependsOn: ["buildZip"]) {
|
2021-11-17 03:28:40 +00:00
|
|
|
doLast {
|
2022-04-19 01:26:59 +00:00
|
|
|
org.bdware.datanet.YPKPacker.staticPack("./backend/build/ControlProxy.zip", "./backend/build/ControlProxy-${project.version}.ypk")
|
2021-11-17 03:28:40 +00:00
|
|
|
}
|
|
|
|
}
|