2021-11-17 03:28:40 +00:00
|
|
|
buildscript {
|
|
|
|
dependencies {
|
2022-04-20 16:50:40 +00:00
|
|
|
classpath files("buildlibs/simple-ypk-packer-0.3.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 {
|
2022-04-20 16:50:40 +00:00
|
|
|
api 'org.apache.logging.log4j:log4j-core:2.17.2'
|
|
|
|
api 'org.apache.logging.log4j:log4j-api:2.17.2'
|
2021-12-07 09:00:03 +00:00
|
|
|
implementation fileTree(dir: 'cplibs', include: '*.jar')
|
|
|
|
implementation fileTree(dir: 'cplibs/lib/', include: '*.jar')
|
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-20 16:50:40 +00:00
|
|
|
task copyJar(type: Copy, dependsOn: [":backend:jar", ":backend:copyLibs"]) {
|
|
|
|
from "./build/libs/$project.name-${project.version}.jar"
|
2021-11-17 03:28:40 +00:00
|
|
|
into "./build/output"
|
2021-12-07 09:00:03 +00:00
|
|
|
rename { String fileName -> "sc-example.jar" }
|
2021-11-17 03:28:40 +00:00
|
|
|
doFirst {
|
|
|
|
println "copyJar start"
|
|
|
|
}
|
|
|
|
}
|
2022-04-20 16:50:40 +00:00
|
|
|
def reltivePath = "./backend"
|
|
|
|
//reltivePath="."
|
|
|
|
def currVersion = "0.1.0"
|
|
|
|
task grepCP (dependsOn:["copyJar"]){
|
|
|
|
doLast {
|
|
|
|
org.bdware.datanet.YPKPacker.grepCPLibWithFilter("${reltivePath}/cplibs/libs","${reltivePath}/build/output/libs","${reltivePath}/grepcp.list")
|
|
|
|
}
|
|
|
|
}
|
2021-11-17 03:28:40 +00:00
|
|
|
|
2022-04-20 16:50:40 +00:00
|
|
|
task buildZip(type: Zip, dependsOn: ["copyAssets", "copyJar", "copyYJS","grepCP"]) {
|
2021-11-17 03:28:40 +00:00
|
|
|
from './build/output/'
|
|
|
|
duplicatesStrategy = DuplicatesStrategy.INCLUDE
|
|
|
|
archiveFileName = 'contractexample.zip'
|
|
|
|
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-20 16:50:40 +00:00
|
|
|
org.bdware.datanet.YPKPacker.staticPack("${reltivePath}/build/contractexample.zip", "${reltivePath}/build/contractexample-${currVersion}.ypk")
|
2021-11-17 03:28:40 +00:00
|
|
|
}
|
2022-04-20 16:50:40 +00:00
|
|
|
}
|