Skip to content

Commit

Permalink
Java 11->17 (#225)
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 authored Aug 22, 2024
1 parent 09d4bcc commit 4be02c6
Show file tree
Hide file tree
Showing 4 changed files with 17 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
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Added
### Changed
- **PODAAC-6185**
- java 11 -> 17
### Deprecated
### Removed
### Fixed
### Security
- Snyk: Upgrade com.amazonaws:aws-java-sdk-s3: 1.12.565 -> 1.12.661


## [1.8.0]
### Added
- **User contribution**
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 @@ -90,8 +90,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 4be02c6

Please sign in to comment.