update version

This commit is contained in:
CaiHQ
2023-06-16 18:55:51 +08:00
parent adcb9d40a5
commit 2e5bea970a
4 changed files with 29 additions and 9 deletions

View File

@@ -3,8 +3,8 @@ buildscript {
mavenCentral()
}
dependencies {
classpath "org.bdware.bdcontract:simple-ypk-packer:0.5.5"
classpath "org.bdware.bdcontract:ypk-deploy-tool:0.7.1"
classpath "org.bdware.bdcontract:simple-ypk-packer:0.6.0"
classpath "org.bdware.bdcontract:ypk-deploy-tool:0.7.4"
}
}
plugins {
@@ -39,7 +39,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.8.0'
implementation 'org.bdware.sc:cp:1.9.1'
testImplementation 'junit:junit:4.13.2'
}
@@ -77,10 +77,10 @@ task copyJar(type: Copy, dependsOn: [":backend:jar", ":backend:copyLibs"]) {
}
def reltivePath = "./backend"
//reltivePath="."
def currVersion = "1.3.3"
def currVersion = "1.3.4"
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.grepJarByCPVersion("${reltivePath}/build/output/libs", org.bdware.datanet.CPVersion.cp_1_8_3)
org.bdware.datanet.YPKPacker.grepJarByListFile("${reltivePath}/build/output/libs", "${reltivePath}/grepcp.list")
}