Skip to content

Commit

Permalink
java 11->17
Browse files Browse the repository at this point in the history
  • Loading branch information
David Yen committed Jul 27, 2024
1 parent 82786f0 commit 5ac61be
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '11.0.6'
java-version: '17.0.12'
- uses: gradle/gradle-build-action@v1
with:
gradle-version: 8.0.1
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- **PODAAC-6181**
- add relatedUrl subType BROWSE IMAGE SOURCE
### Deprecated
### Changed
- **PODAAC-6185**
- java 11->17
### Removed
### Fixed
### Security
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apply plugin: 'java'
sourceCompatibility = 11
targetCompatibility = 11
sourceCompatibility = 17
targetCompatibility = 17

dependencies {
implementation fileTree(dir: 'target/dependency/', include: '*.jar')
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -218,8 +218,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>11</source>
<target>11</target>
<source>17</source>
<target>17</target>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit 5ac61be

Please sign in to comment.