-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#596: Fixed build with Java 21 #606
Changes from 15 commits
76b695a
27f90a4
8e5f1dc
6fda61e
ed431fe
b9f592a
4f15235
b15d005
affcc7f
1f12731
3506638
bf8b567
1b720f5
8050900
cb1215c
4956d00
43cccf4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ on: | |
pull_request: | ||
|
||
jobs: | ||
test: | ||
test-on-windows: | ||
runs-on: windows-latest | ||
permissions: | ||
contents: read | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,8 +72,6 @@ version: | |
excludes: | ||
# PK can't use itself as a Maven plugin | ||
- regex: "W-PK-CORE-151: Pom file .* contains no reference to project-keeper-maven-plugin." | ||
# Build with Java 21 fails due to missing JavaDoc comments, see https://github.com/exasol/project-keeper/issues/596 | ||
- "E-PK-CORE-17: Missing required file: '.github/workflows/ci-build-next-java.yml'" | ||
# No configuration necessary for aggregator POM | ||
- "E-PK-CORE-103: Missing parent declaration in 'pom.xml'" | ||
- "E-PK-CORE-17: Missing required file: 'pk_generated_parent.pom'" | ||
|
@@ -89,6 +87,7 @@ build: | |
- name: "ci-build.yml" | ||
stepCustomizations: | ||
- action: INSERT_AFTER | ||
job: build-and-test | ||
stepId: setup-java | ||
content: | ||
name: Set up Go | ||
|
@@ -98,12 +97,14 @@ build: | |
go-version: "1.22" | ||
cache-dependency-path: .project-keeper.yml | ||
- action: INSERT_AFTER | ||
job: build-and-test | ||
stepId: setup-go | ||
content: | ||
name: Install Go tools | ||
id: install-go-tools | ||
run: go install github.com/google/[email protected] | ||
- action: REPLACE | ||
job: build-and-test | ||
stepId: build-pk-verify | ||
content: | ||
name: Run tests and build with Maven | ||
|
@@ -115,12 +116,14 @@ build: | |
env: | ||
GITHUB_TOKEN: ${{ github.token }} # Required for integration tests | ||
- action: INSERT_AFTER | ||
job: build-and-test | ||
stepId: sonar-analysis | ||
content: | ||
name: Run project-keeper itself | ||
id: build-pk-verify | ||
run: mvn --batch-mode com.exasol:project-keeper-maven-plugin:verify --projects . | ||
- action: INSERT_AFTER | ||
job: build-and-test | ||
stepId: build-pk-verify | ||
content: | ||
name: Verify that metrics.json was created | ||
|
@@ -134,6 +137,7 @@ build: | |
- name: "dependencies_check.yml" | ||
stepCustomizations: | ||
- action: INSERT_AFTER | ||
job: report_security_issues | ||
stepId: setup-jdks | ||
content: | ||
name: Install Project Keeper | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed duplicate class