mirror of
https://gitee.com/BDWare/contract-java-example.git
synced 2025-01-10 09:54:08 +00:00
108 lines
2.9 KiB
Groovy
108 lines
2.9 KiB
Groovy
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath "org.bdware.bdcontract:simple-ypk-packer:0.5.5"
|
|
classpath "org.bdware.bdcontract:ypk-deploy-tool:0.7.1"
|
|
}
|
|
}
|
|
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.17.2'
|
|
api 'org.apache.logging.log4j:log4j-api:2.17.2'
|
|
implementation 'org.bdware.sc:cp:1.8.0'
|
|
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/"
|
|
}
|
|
//TODO 针对不同的前端,可以仅复制所需的前端代码,而不是整个前端目录。
|
|
//比如: from "../front/vite/dist"
|
|
task copyFront(type: Copy) {
|
|
from "../front"
|
|
into "./build/output/assets"
|
|
}
|
|
task sourcesJar(type: Jar) {
|
|
from sourceSets.main.allJava
|
|
archiveClassifier = 'sources'
|
|
}
|
|
task copyAssets(type: Copy) {
|
|
from "../front"
|
|
into "./build/output/assets/"
|
|
}
|
|
|
|
task copyJar(type: Copy, dependsOn: [":backend:jar", ":backend:copyLibs"]) {
|
|
from "./build/libs/$project.name-${project.version}.jar"
|
|
into "./build/output"
|
|
rename { String fileName -> "sc-example.jar" }
|
|
doFirst {
|
|
println "copyJar start"
|
|
}
|
|
}
|
|
def reltivePath = "./backend"
|
|
//reltivePath="."
|
|
def currVersion = "1.3.3"
|
|
task grepCP(dependsOn: ["copyJar"]) {
|
|
doLast {
|
|
org.bdware.datanet.YPKPacker.grepJarByCPVersion("${reltivePath}/build/output/libs", org.bdware.datanet.CPVersion.cp_1_6_8)
|
|
org.bdware.datanet.YPKPacker.grepJarByListFile("${reltivePath}/build/output/libs", "${reltivePath}/grepcp.list")
|
|
|
|
}
|
|
}
|
|
tasks.processResources.setDuplicatesStrategy(DuplicatesStrategy.INCLUDE)
|
|
tasks.processTestResources.setDuplicatesStrategy(DuplicatesStrategy.INCLUDE)
|
|
|
|
task buildZip(type: Zip, dependsOn: ["copyAssets", "copyJar", "copyYJS", "grepCP", "copyFront"]) {
|
|
from './build/output/'
|
|
duplicatesStrategy = DuplicatesStrategy.INCLUDE
|
|
archiveFileName = 'contractexample.zip'
|
|
destinationDirectory = file('build/')
|
|
}
|
|
|
|
task buildYPK(dependsOn: ["buildZip"]) {
|
|
doLast {
|
|
org.bdware.datanet.YPKPacker.staticPack("${reltivePath}/build/contractexample.zip", "${reltivePath}/build/contractexample-${currVersion}.ypk")
|
|
}
|
|
}
|
|
|
|
task deploy(dependsOn: ["buildYPK"]) {
|
|
doLast {
|
|
org.bdware.ypkdeploy.HTTPTool.deployWithYpk("${reltivePath}/debugconf.json", "${reltivePath}/build/contractexample-${currVersion}.ypk")
|
|
}
|
|
} |