Files
contract-java-example/backend/build.gradle

100 lines
2.5 KiB
Groovy
Raw Normal View History

2021-11-17 11:28:40 +08:00
buildscript {
2022-04-22 14:10:09 +08:00
repositories{
mavenCentral()
mavenLocal()
}
2021-11-17 11:28:40 +08:00
dependencies {
2022-04-22 14:10:09 +08:00
classpath "org.bdware.bdcontract:simple-ypk-packer:0.3.0"
classpath "org.bdware.bdcontract:ypk-deploy-tool:0.4.0"
2021-11-17 11:28:40 +08: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-21 00:50:40 +08:00
api 'org.apache.logging.log4j:log4j-core:2.17.2'
api 'org.apache.logging.log4j:log4j-api:2.17.2'
2021-12-07 17:00:03 +08:00
implementation fileTree(dir: 'cplibs', include: '*.jar')
implementation fileTree(dir: 'cplibs/lib/', include: '*.jar')
2021-11-17 11:28:40 +08: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 17:00:03 +08:00
task sourcesJar(type: Jar) {
2021-11-17 11:28:40 +08:00
from sourceSets.main.allJava
archiveClassifier = 'sources'
}
2021-12-07 17:00:03 +08:00
task copyAssets(type: Copy) {
2021-11-17 11:28:40 +08:00
from "../front"
into "./build/output/assets/"
}
2022-04-21 00:50:40 +08:00
task copyJar(type: Copy, dependsOn: [":backend:jar", ":backend:copyLibs"]) {
from "./build/libs/$project.name-${project.version}.jar"
2021-11-17 11:28:40 +08:00
into "./build/output"
2021-12-07 17:00:03 +08:00
rename { String fileName -> "sc-example.jar" }
2021-11-17 11:28:40 +08:00
doFirst {
println "copyJar start"
}
}
2022-04-21 00:50:40 +08:00
def reltivePath = "./backend"
//reltivePath="."
2022-04-22 14:10:09 +08:00
def currVersion = "1.1.0"
2022-04-21 00:50:40 +08:00
task grepCP (dependsOn:["copyJar"]){
doLast {
org.bdware.datanet.YPKPacker.grepCPLibWithFilter("${reltivePath}/cplibs/libs","${reltivePath}/build/output/libs","${reltivePath}/grepcp.list")
}
}
2021-11-17 11:28:40 +08:00
2022-04-21 00:50:40 +08:00
task buildZip(type: Zip, dependsOn: ["copyAssets", "copyJar", "copyYJS","grepCP"]) {
2021-11-17 11:28:40 +08:00
from './build/output/'
duplicatesStrategy = DuplicatesStrategy.INCLUDE
archiveFileName = 'contractexample.zip'
destinationDirectory = file('build/')
}
2021-12-07 17:00:03 +08:00
task buildYPK(dependsOn: ["buildZip"]) {
2021-11-17 11:28:40 +08:00
doLast {
2022-04-21 00:50:40 +08:00
org.bdware.datanet.YPKPacker.staticPack("${reltivePath}/build/contractexample.zip", "${reltivePath}/build/contractexample-${currVersion}.ypk")
2021-11-17 11:28:40 +08:00
}
2022-04-22 14:10:09 +08:00
}
task deploy(dependsOn: ["buildYPK"]){
doLast {
org.bdware.ypkdeploy.HTTPTool.batchRun("./backend/deployconfig.json", true)
}
2022-04-21 00:50:40 +08:00
}