Skip to content

Commit

Permalink
Merge pull request #51 from virtualidentityag/develop
Browse files Browse the repository at this point in the history
merge to tsys-release
  • Loading branch information
tkuzynow authored Feb 17, 2025
2 parents 12fdc9e + c8f40bf commit a7dff24
Show file tree
Hide file tree
Showing 147 changed files with 1,881 additions and 1,779 deletions.
19 changes: 13 additions & 6 deletions .github/workflows/dockerImage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- 'release'
- 'staging'
- 'develop'
- "tsys-release"
- 'tsys-release'
tags:
- "dockerImage.v.*"
- "v*"
Expand All @@ -28,12 +28,11 @@ jobs:
- name: Setup JVM
uses: actions/setup-java@v1
with:
java-version: 11.0.10
java-version: 17
java-package: jdk
architecture: x64

- name: Caching maven dependencies
uses: actions/cache@v1
uses: actions/cache@v4
env:
cache-name: cache-maven-dependencies
with:
Expand All @@ -43,7 +42,7 @@ jobs:
run: mvn -B -Pprod clean package -DskipTests
- name: Maven Verify
run: mvn -B -Pprod clean verify
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: targetfiles
path: target/*.jar
Expand Down Expand Up @@ -74,7 +73,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Download buildfiles artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: targetfiles
- name: Get current time
Expand Down Expand Up @@ -190,3 +189,11 @@ jobs:
custom-actions: |
- text: View CI
url: "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
- name: Publish to T-sys if T-sys release
if: ${{ (github.ref == 'refs/heads/tsys-release') && (matrix.registry == 'ghcr.io') }}
uses: fjogeleit/http-request-action@v1
with:
url: 'https://git.mms-support.de/api/v4/projects/${{ secrets.TSYS_SERVICE_ID }}/repository/tags?ref=master&tag_name=${{ env.DOCKER_IMAGE_TAG }}'
method: 'POST'
customHeaders: '{"PRIVATE-TOKEN": "${{ secrets.TSYS_ACCESS_TOKEN }}"}'

4 changes: 2 additions & 2 deletions .github/workflows/feature-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
- name: Setup JVM
uses: actions/setup-java@v1
with:
java-version: 11.0.10
java-version: 17
java-package: jdk
architecture: x64

- name: Caching maven dependencies
uses: actions/cache@v1
uses: actions/cache@v4
env:
cache-name: cache-maven-dependencies
with:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM adoptopenjdk/openjdk11
FROM openjdk:17-oracle
VOLUME ["/tmp","/log"]
EXPOSE 8080
ARG JAR_FILE
Expand Down
7 changes: 6 additions & 1 deletion google_checks_light.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
<property name="severity" value="warning"/>

<property name="fileExtensions" value="java, properties, xml"/>

<!-- Excludes all 'module-info.java' files -->
<!-- See https://checkstyle.org/config_filefilters.html -->
<module name="BeforeExecutionExclusionFileFilter">
Expand Down Expand Up @@ -47,6 +48,10 @@
-->

<module name="TreeWalker">
<module name="AbbreviationAsWordInName">
<property name="allowedAbbreviationLength" value="4"/>
<property name="ignoreFinal" value="true"/>
</module>
<module name="OuterTypeFilename"/>
<module name="IllegalTokenText">
<property name="tokens" value="STRING_LITERAL, CHAR_LITERAL"/>
Expand Down Expand Up @@ -301,7 +306,7 @@
</module>
-->
<module name="JavadocMethod">
<property name="scope" value="public"/>
<property name="accessModifiers" value="public"/>
<property name="allowMissingParamTags" value="true"/>
<property name="allowMissingReturnTag" value="true"/>
<property name="allowedAnnotations" value="Override, Test"/>
Expand Down
Loading

0 comments on commit a7dff24

Please sign in to comment.