Skip to content

Commit

Permalink
java 11->17 (#245)
Browse files Browse the repository at this point in the history
Co-authored-by: David Yen <[email protected]>
  • Loading branch information
yenes56 and David Yen committed Aug 22, 2024
1 parent ce0cfbc commit 90361d7
Show file tree
Hide file tree
Showing 4 changed files with 7 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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
# [Unreleased]
### Added
### Changed
- **PODAAC-6185**
- java 11 ->17
### Deprecated
### Removed
### Fixed
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 = 1.11
targetCompatibility = 1.11
sourceCompatibility = 1.17
targetCompatibility = 1.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 @@ -88,8 +88,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>11</source>
<target>11</target>
<source>17</source>
<target>17</target>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit 90361d7

Please sign in to comment.