Skip to content

Commit 32c48fe

Browse files
committed
Fix build
1 parent 53c54ce commit 32c48fe

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.github/workflows/basic.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ jobs:
88

99
steps:
1010
- uses: actions/checkout@v4
11-
- name: Set up JDK 1.8
11+
- name: Set up JDK 11
1212
uses: actions/setup-java@v4
1313
with:
14-
java-version: 8
14+
java-version: 11
1515
distribution: temurin
1616
cache: maven
1717
- name: Build with Maven

.github/workflows/deploy.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111

1212
steps:
1313
- uses: actions/checkout@v4
14-
- name: Set up JDK 1.8
14+
- name: Set up JDK 11
1515
uses: actions/setup-java@v4
1616
with:
17-
java-version: 8
17+
java-version: 11
1818
distribution: temurin
1919
cache: maven
2020
- name: Build with Maven

gradle-plugin/src/main/java/org/springframework/boot/experimental/gradle/PropertiesTask.java

-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
import org.gradle.api.tasks.OutputFile;
2929
import org.gradle.api.tasks.TaskAction;
3030
import org.gradle.api.tasks.TaskExecutionException;
31-
3231
import org.springframework.util.StringUtils;
3332

3433
/**
@@ -145,7 +144,6 @@ public File getOutput() {
145144
/**
146145
* The name of the thin properties file (defaults to "thin").
147146
*/
148-
@Override
149147
public void setName(String name) {
150148
this.name = name;
151149
}

0 commit comments

Comments
 (0)