-
Notifications
You must be signed in to change notification settings - Fork 1
Task 04 upgrade java #5
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
Merged
Merged
Changes from 18 commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
3b9b0e6
Migrate to jdk 1.8, remove maven build plugins, add jaxb dependencies.
mbjones 73db0a3
Upgraded to java 25 language target (also worked with 17 and 21)
mbjones c211cb0
Remove maven gpg signing plugin
mbjones 06de8b7
Remove extraneous buildInfo props file
mbjones 6b2a665
Drop support for XSLT stylesheets in embedded XML.
mbjones 613544d
Reformatted TypeMarshalling class and test files
mbjones 4a435de
Remove unused imports from test class.
mbjones 071980a
Deleted dead code in pom.xml
mbjones 0109ba6
Add new java maven build GHA.
mbjones 7e0612a
Only run mvn GHA build on `main`, `develop`, and PRs.
mbjones c66936d
Remove dependency upload from workflow.
mbjones c32e8fa
Switch back to java 25
mbjones 4881777
Upgrade log4j, common-lang, and commons-io, and fix schema url.
mbjones 5262f85
Remove unused imports.
mbjones cdfbf82
Remove redundant `implements Serializable` when parent already does.
mbjones 1033f6e
Replace deprecated methods from before JDK 17.
mbjones 0725c8e
Reformat pom to use standaard indent and spacing.
mbjones c1109cc
Update to formats 1.28
mbjones 5837e68
Upgraded maven compiler plugin and jar plugin
mbjones ddc46f7
Upgrade servlet-related compatibility and refresh core dependencies
mbjones 3ac4276
Switch `mvn deploy` to use maven.dataone.org
mbjones 7b69d52
Restore build and deploy of test-jar artifacts that libclient needs d…
mbjones 61bb090
Remove GHA to deploy to sonatype, and upgrade GHA maven test to recen…
mbjones d508a7e
Fully remove sonatype repo, depend on maven.dataone.org for releases …
mbjones 6c1ab6f
Switch to mvn verify for GHA CI tests.
mbjones 04a48cc
Use the released d1_test_resources 2.4.0
mbjones File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,36 @@ | ||
| # This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time | ||
| # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven | ||
|
|
||
| # This workflow uses actions that are not certified by GitHub. | ||
| # They are provided by a third-party and are governed by | ||
| # separate terms of service, privacy policy, and support | ||
| # documentation. | ||
|
|
||
| name: Java CI with Maven | ||
|
|
||
| on: | ||
| push: | ||
| branches: [ "main", "develop" ] | ||
| pull_request: | ||
| branches: [ "*" ] | ||
|
|
||
| jobs: | ||
| build: | ||
|
|
||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: Set up JDK | ||
| uses: actions/setup-java@v4 | ||
| with: | ||
| java-version: '25' | ||
| distribution: 'temurin' | ||
| cache: maven | ||
| - name: Build with Maven | ||
| run: mvn -B package --file pom.xml | ||
|
|
||
| # Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive | ||
| # - name: Update dependency graph | ||
| # uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6 | ||
|
|
||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.