-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Upgrade to project keeper 2 * Cleanup pom, exclude vulnerabiltities
- Loading branch information
1 parent
05638ac
commit 9612f1d
Showing
13 changed files
with
378 additions
and
234 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,35 @@ | ||
name: CI Build next Java | ||
|
||
on: | ||
- push | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
|
||
jobs: | ||
java-17-compatibility: | ||
runs-on: ubuntu-latest | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v2 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'temurin' | ||
java-version: 17 | ||
- name: Cache local Maven repository | ||
uses: actions/cache@v2 | ||
with: | ||
path: ~/.m2/repository | ||
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | ||
restore-keys: | | ||
${{ runner.os }}-maven- | ||
cache: 'maven' | ||
- name: Run tests and build with Maven | ||
run: mvn --batch-mode --update-snapshots clean package -DtrimStackTrace=false | ||
run: | | ||
mvn --batch-mode --update-snapshots clean package -DtrimStackTrace=false \ | ||
-Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn | ||
- name: Publish Test Report | ||
uses: scacap/action-surefire-report@v1 | ||
if: ${{ always() && github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]' }} | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
fail_if_no_tests: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,3 +28,4 @@ pom.xml.versionsBackup | |
*.orig | ||
*.old | ||
*.md.html | ||
*.flattened-pom.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
sources: | ||
- type: maven | ||
path: pom.xml | ||
modules: | ||
linkReplacements: | ||
excludes: | ||
- "E-PK-CORE-17: Missing required file: 'src/test/resources/logging.properties'" | ||
- "E-PK-CORE-17: Missing required file: '.github/workflows/release_droid_prepare_original_checksum.yml'" | ||
- "E-PK-CORE-17: Missing required file: '.github/workflows/release_droid_print_quick_checksum.yml'" | ||
- "E-PK-CORE-18: Outdated content: '.github/workflows/release_droid_upload_github_release_assets.yml'" | ||
- "E-PK-CORE-18: Outdated content: '.github/workflows/ci-build.yml'" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# cloudwatch-dashboard-examples 0.2.2, released 2022-06-24 | ||
|
||
Code name: Upgrade dependencies | ||
|
||
## Bugfixes | ||
|
||
* #15 Upgraded dependencies | ||
|
||
## Dependency Updates | ||
|
||
### Compile Dependency Updates | ||
|
||
* Updated `software.amazon.awscdk:cloudwatch:1.145.0` to `1.161.0` | ||
* Updated `software.amazon.awscdk:core:1.145.0` to `1.161.0` | ||
|
||
### Plugin Dependency Updates | ||
|
||
* Updated `com.exasol:error-code-crawler-maven-plugin:1.0.0` to `1.1.1` | ||
* Updated `com.exasol:project-keeper-maven-plugin:1.3.4` to `2.4.6` | ||
* Updated `org.apache.maven.plugins:maven-compiler-plugin:3.10.0` to `3.10.1` | ||
* Updated `org.apache.maven.plugins:maven-surefire-plugin:3.0.0-M3` to `3.0.0-M5` | ||
* Added `org.codehaus.mojo:flatten-maven-plugin:1.2.7` | ||
* Updated `org.codehaus.mojo:versions-maven-plugin:2.9.0` to `2.10.0` | ||
* Updated `org.jacoco:jacoco-maven-plugin:0.8.7` to `0.8.8` | ||
* Added `org.sonarsource.scanner.maven:sonar-maven-plugin:3.9.1.2184` |
Oops, something went wrong.