Skip to content

Commit

Permalink
Update Gradle plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
NeRdTheNed committed Oct 14, 2023
1 parent 01d34c6 commit 4425423
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/draftrelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up JDK 6 & 17
uses: actions/setup-java@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up JDK 6 & 17
uses: actions/setup-java@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ dependencies {
// Shadow is used to package API classes with applications
implementation "com.github.johnrengelman:shadow:8.1.1"
// ProGuard is used to minify and optimise applications
implementation "com.guardsquare:proguard-gradle:7.3.2"
implementation "com.guardsquare:proguard-gradle:7.4.0"
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ repositories {
// All unit tests use JUnit Jupiter
dependencies {
testImplementation group: 'org.junit.jupiter',
name: 'junit-jupiter', version: '5.9.3'
name: 'junit-jupiter', version: '5.10.0'
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
}

// Defines a Java 6 compatible JDK
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "com.gradle.enterprise" version "3.13.3"
id "com.gradle.enterprise" version "3.15.1"
}

gradleEnterprise {
Expand Down

0 comments on commit 4425423

Please sign in to comment.