add readme

add bdserver-docker
add yjs plugin
This commit is contained in:
CaiHQ
2022-05-20 23:31:40 +08:00
parent f372e358a1
commit 0ffd44aef7
14 changed files with 245 additions and 33 deletions

View File

@@ -5,7 +5,7 @@ buildscript {
}
dependencies {
classpath "org.bdware.bdcontract:simple-ypk-packer:0.5.0"
classpath "org.bdware.bdcontract:ypk-deploy-tool:0.5.0"
classpath "org.bdware.bdcontract:ypk-deploy-tool:0.5.2"
}
}
plugins {
@@ -40,7 +40,7 @@ sourceSets {
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.5.4'
implementation 'org.bdware.sc:cp:1.5.7'
testImplementation 'junit:junit:4.13.2'
}
@@ -73,7 +73,7 @@ task copyJar(type: Copy, dependsOn: [":backend:jar", ":backend:copyLibs"]) {
}
def reltivePath = "./backend"
//reltivePath="."
def currVersion = "1.2.0"
def currVersion = "1.3.0"
task grepCP(dependsOn: ["copyJar"]) {
doLast {
org.bdware.datanet.YPKPacker.grepJarByCPVersion("${reltivePath}/build/output/libs", org.bdware.datanet.CPVersion.cp_1_5_3)
@@ -94,6 +94,6 @@ task buildYPK(dependsOn: ["buildZip"]) {
}
task deploy(dependsOn: ["buildYPK"]) {
doLast {
org.bdware.ypkdeploy.HTTPTool.deployWithYpk("./backend/deployconfig.json", "${reltivePath}/build/contractexample-${currVersion}.ypk")
org.bdware.ypkdeploy.HTTPTool.deployWithYpk("${reltivePath}/debugconf.json", "${reltivePath}/build/contractexample-${currVersion}.ypk")
}
}