-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update dependency org.apache.maven.plugins:maven-site-plugin to v3.20.0 (#382) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.7.0 * Update dependency org.apache.maven.plugins:maven-failsafe-plugin to v3.5.0 * Update dependency org.apache.maven.plugins:maven-surefire-report-plugin to v3.5.0 (#390) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency org.apache.maven.plugins:maven-javadoc-plugin to v3.10.0 (#389) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency org.apache.maven.plugins:maven-checkstyle-plugin to v3.5.0 (#387) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update auf Java 17 & Jakarta Namespace (#391) * DAO & Criteria Klassen als deprecated markiert - ORM Mapper statt dessen verwenden * javax -> jakarta * mit Java 17 bauen * findbugs -> spotbugs * clean up * Deployment mit Java 17 * Remove .travis.yml file * clean up * Update pom.xml * Update build process to use JDK 17 and Maven * automatic deployment to github (#393) * DAO & Criteria Klassen als deprecated markiert - ORM Mapper statt dessen verwenden * javax -> jakarta * mit Java 17 bauen * findbugs -> spotbugs * clean up * Deployment mit Java 17 * Remove .travis.yml file * clean up * Update pom.xml * Update build process to use JDK 17 and Maven * Update Maven publish workflow to deploy to GitHub * Deploy to GitHub * Refactor GitHub deployment workflow * Add spotbugs-maven-plugin to renovate.json * Update dependency com.github.spotbugs:spotbugs-maven-plugin to v4.8.6.4 (#392) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update actions/checkout action to v4 (#394) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
- Loading branch information
1 parent
f3cbbdc
commit baef5be
Showing
136 changed files
with
1,701 additions
and
2,269 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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Deploy to GitHub Packages | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: 17 | ||
distribution: 'temurin' | ||
|
||
- name: Configure Maven settings | ||
run: | | ||
mkdir -p ~/.m2 | ||
echo "<settings> | ||
<servers> | ||
<server> | ||
<id>github</id> | ||
<username>${{ github.actor }}</username> | ||
<password>${{ secrets.GITHUB_TOKEN }}</password> | ||
</server> | ||
</servers> | ||
</settings>" > ~/.m2/settings.xml | ||
- name: Build and deploy | ||
run: mvn deploy | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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 was deleted.
Oops, something went wrong.
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
Oops, something went wrong.