Skip to content

Commit 446caac

Browse files
committed
bump gradle from 8.14.2 to 9.0.0
1 parent 934eefd commit 446caac

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
with:
1717
distribution: 'temurin'
1818
cache: 'gradle'
19-
java-version: '11'
19+
java-version: '17'
2020
- name: Run tests in Gradle
2121
run: ./gradlew clean test --info --rerun-tasks
2222
- uses: actions/upload-artifact@v4
@@ -36,7 +36,7 @@ jobs:
3636
contents: write
3737
steps:
3838
- name: 🤖 Merge PR from dependabot
39-
uses: fastify/github-action-merge-dependabot@v3.11.1
39+
uses: fastify/github-action-merge-dependabot@v3
4040
with:
4141
github-token: ${{secrets.GITHUB_TOKEN}}
4242
target: minor

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
buildscript {
22
repositories {
33
mavenCentral()
4-
maven { url 'https://plugins.gradle.org/m2' }
4+
maven { url = 'https://plugins.gradle.org/m2' }
55
}
66
}
77

@@ -13,7 +13,7 @@ plugins {
1313
}
1414

1515
group = 'com.codeborne'
16-
archivesBaseName = 'pdf-test'
16+
base.archivesName.set('pdf-test')
1717
version = '2.0.1-SNAPSHOT'
1818

1919
defaultTasks 'test', 'install'

gradle/compilation.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,7 @@
22
[compileJava, compileTestJava]*.options.collect {options -> options.debug = true}
33
compileJava.options.debugOptions.debugLevel = "source,lines,vars"
44

5-
sourceCompatibility = 11
6-
targetCompatibility = 11
5+
java {
6+
sourceCompatibility = 11
7+
targetCompatibility = 11
8+
}

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)