Skip to content

Commit

Permalink
update dependency version; upgrade soot to 4.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DongjieHe committed Dec 26, 2024
1 parent 3c5d794 commit 272d92b
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
Binary file not shown.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ plugins {

group 'qilin'
// version format: major.minor.patch
version '0.9.5-SNAPSHOT'
version '0.9.6-SNAPSHOT'

java {
toolchain {
languageVersion = JavaLanguageVersion.of(16)
languageVersion = JavaLanguageVersion.of(17)
}
}

Expand All @@ -28,7 +28,7 @@ dependencies {
implementation(project(':qilin.pta'))
implementation(project(':qilin.core'))
implementation(project(':qilin.util'))
testImplementation group: 'junit', name: 'junit', version: '4.12'
testImplementation group: 'junit', name: 'junit', version: '4.13'
}

tasks.register('fatJar', Jar) {
Expand Down Expand Up @@ -69,8 +69,8 @@ subprojects {

java {
toolchain {
languageVersion = JavaLanguageVersion.of(16)
vendor = JvmVendorSpec.ADOPTIUM
languageVersion = JavaLanguageVersion.of(17)
// vendor = JvmVendorSpec.ADOPTIUM
}
}
publishing.publications {
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
2 changes: 1 addition & 1 deletion qilin.core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repositories {

dependencies {
// api files("${rootDir}/libs/sootclasses-4.4.0-jar-with-dependencies.jar")
implementation("org.soot-oss:soot:4.5.0")
implementation("org.soot-oss:soot:4.6.0")
api(project(':qilin.util'))
}

4 changes: 2 additions & 2 deletions qilin.microben/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version '1.0-SNAPSHOT'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(8)
vendor = JvmVendorSpec.ADOPTIUM
// vendor = JvmVendorSpec.ADOPTIUM
}
}

Expand All @@ -17,4 +17,4 @@ repositories {
}
sourceSets.main {
java.srcDirs = ['src']
}
}

0 comments on commit 272d92b

Please sign in to comment.