Skip to content

Commit

Permalink
Gradle 8.2 + plugins + Java11 + kSAR version 6.0.0 (vlsi#284)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pitterling authored Nov 23, 2023
1 parent 17f89f6 commit 964556f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
java-version:
- 8
- 11
- 17
runs-on: ubuntu-latest
name: 'Test (JDK ${{ matrix.java-version }})'
Expand Down
12 changes: 6 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
plugins {
id("java")
id("application")
id("com.github.johnrengelman.shadow") version "7.1.2"
id("com.github.johnrengelman.shadow") version "8.1.1"
id("checkstyle")
id("com.github.vlsi.gradle-extensions") version "1.84"
id("com.github.vlsi.gradle-extensions") version "1.90"
}

group = "com.github.vlsi.ksar"
Expand All @@ -17,8 +17,8 @@ println("Building kSar $version")
setProperty("archivesBaseName", "ksar")

java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}

application {
Expand All @@ -31,8 +31,8 @@ repositories {

dependencies {
implementation("org.slf4j:slf4j-api:2.0.6")
implementation("ch.qos.logback:logback-core:1.3.5")
implementation("ch.qos.logback:logback-classic:1.3.5")
implementation("ch.qos.logback:logback-core:1.3.7")
implementation("ch.qos.logback:logback-classic:1.3.7")

implementation("com.itextpdf:itextpdf:5.5.13.3")
implementation("com.jcraft:jsch:0.1.55")
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#
# Copyright 2018 The kSAR Project. All rights reserved.
# Copyright 2018-2023 The kSAR Project. All rights reserved.
# See the LICENSE file in the project root for more information.
#

version = 5.2.5
version = 6.0.0
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionSha256Sum=7ba68c54029790ab444b39d7e293d3236b2632631fb5f2e012bb28b4ff669e4b
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
distributionSha256Sum=03ec176d388f2aa99defcadc3ac6adf8dd2bce5145a129659537c0874dea5ad1
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip

0 comments on commit 964556f

Please sign in to comment.