Skip to content

Commit 4aab5f1

Browse files
authored
Merge pull request #186 from xdev-software/develop
Release
2 parents 123a602 + f802059 commit 4aab5f1

10 files changed

Lines changed: 21 additions & 21 deletions

File tree

.github/workflows/check-build.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,4 @@ jobs:
138138
name: pmd-report
139139
if-no-files-found: ignore
140140
path: |
141-
target/site/*.html
142-
target/site/css/**
143-
target/site/images/logos/maven-feather.png
144-
target/site/images/external.png
141+
target/reports/**

.github/workflows/image-vuln-scan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ jobs:
2020
- uses: actions/checkout@v4
2121

2222
- name: Scan - Full
23-
uses: aquasecurity/trivy-action@0.29.0
23+
uses: aquasecurity/trivy-action@0.30.0
2424
with:
2525
image-ref: ${{ env.TRIVYY_IMAGE_REF }}
2626

2727
- name: Scan - Relevant
2828
id: scan_relevant
29-
uses: aquasecurity/trivy-action@0.29.0
29+
uses: aquasecurity/trivy-action@0.30.0
3030
with:
3131
image-ref: ${{ env.TRIVYY_IMAGE_REF }}
3232
exit-code: 1

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
cache: 'maven'
2424

2525
- name: Build with Maven
26-
run: ./mvnw -B clean package
26+
run: ./mvnw -B clean package -T2C
2727

2828
- name: Check for uncommited changes
2929
run: |
@@ -62,7 +62,7 @@ jobs:
6262
run: |
6363
mvnwPath=$(readlink -f ./mvnw)
6464
modules=("") # root
65-
modules+=($(grep -ozP '(?<=module>)[^<]+' 'pom.xml' | tr -d '\0'))
65+
modules+=($(grep -oP '(?<=<module>)[^<]+' 'pom.xml'))
6666
for i in "${modules[@]}"
6767
do
6868
echo "Processing $i/pom.xml"
@@ -142,7 +142,7 @@ jobs:
142142
git config --global user.name "GitHub Actions"
143143
git pull
144144
145-
- name: Set up JDK Apache Maven Central
145+
- name: Set up JDK OSSRH
146146
uses: actions/setup-java@v4
147147
with: # running setup-java again overwrites the settings.xml
148148
java-version: '17'
@@ -153,7 +153,7 @@ jobs:
153153
gpg-passphrase: MAVEN_GPG_PASSPHRASE
154154
gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }}
155155

156-
- name: Publish to Apache Maven Central
156+
- name: Publish to OSSRH
157157
run: ./mvnw -B deploy -pl "client,server,testcontainers" -am -Possrh -DskipTests
158158
env:
159159
MAVEN_CENTRAL_USERNAME: ${{ secrets.S01_OSS_SONATYPE_MAVEN_USERNAME }}
@@ -300,7 +300,7 @@ jobs:
300300
run: |
301301
mvnwPath=$(readlink -f ./mvnw)
302302
modules=("") # root
303-
modules+=($(grep -ozP '(?<=module>)[^<]+' 'pom.xml' | tr -d '\0'))
303+
modules+=($(grep -oP '(?<=<module>)[^<]+' 'pom.xml'))
304304
for i in "${modules[@]}"
305305
do
306306
echo "Processing $i/pom.xml"

.github/workflows/update-from-template.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ jobs:
202202
GH_TOKEN: ${{ secrets.UPDATE_FROM_TEMPLATE_PAT }}
203203
run: |
204204
not_failed_conclusion="skipped|neutral|success"
205-
not_relevant_app_slug="dependabot|github-pages|sonarcloud"
205+
not_relevant_app_slug="dependabot|github-pages|sonarqubecloud"
206206
207207
echo "Waiting for checks to start..."
208208
sleep 40s
@@ -212,7 +212,7 @@ jobs:
212212
213213
echo "Checking if update-branch-merged exists"
214214
git fetch
215-
if [[ $(git rev-parse origin/${{ env.UPDATE_BRANCH_MERGED }}) ]]; then
215+
if [[ $(git ls-remote --heads origin refs/heads/${{ env.UPDATE_BRANCH_MERGED }}) ]]; then
216216
echo "Branch still exists; Continuing..."
217217
else
218218
echo "Branch origin/${{ env.UPDATE_BRANCH_MERGED }} is missing"

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1+
# 1.0.13
2+
* Rebuild to get rid of CVE-2024-8176
3+
14
# 1.0.12
25
* Updated dependencies
36

47
# 1.0.11
5-
* Rebuild to update underlying packages and flush out some CVEs
8+
* Rebuild to get rid of CVE-2024-12797
69

710
# 1.0.10
811
* Updated dependencies

client/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
<licenses>
3737
<license>
38-
<name>Apache License, Version 2.0</name>
38+
<name>Apache-2.0</name>
3939
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
4040
<distribution>repo</distribution>
4141
</license>
@@ -111,7 +111,7 @@
111111
<plugin>
112112
<groupId>com.mycila</groupId>
113113
<artifactId>license-maven-plugin</artifactId>
114-
<version>4.6</version>
114+
<version>5.0.0</version>
115115
<configuration>
116116
<properties>
117117
<email>${project.organization.url}</email>

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@
152152
<plugin>
153153
<groupId>com.mycila</groupId>
154154
<artifactId>license-maven-plugin</artifactId>
155-
<version>4.6</version>
155+
<version>5.0.0</version>
156156
<configuration>
157157
<properties>
158158
<email>${project.organization.url}</email>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
<licenses>
3434
<license>
35-
<name>Apache License, Version 2.0</name>
35+
<name>Apache-2.0</name>
3636
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
3737
<distribution>repo</distribution>
3838
</license>

server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@
148148
<plugin>
149149
<groupId>com.mycila</groupId>
150150
<artifactId>license-maven-plugin</artifactId>
151-
<version>4.6</version>
151+
<version>5.0.0</version>
152152
<configuration>
153153
<properties>
154154
<email>${project.organization.url}</email>

testcontainers/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
<dependency>
112112
<groupId>org.junit.jupiter</groupId>
113113
<artifactId>junit-jupiter</artifactId>
114-
<version>5.12.0</version>
114+
<version>5.12.1</version>
115115
<scope>test</scope>
116116
</dependency>
117117
<dependency>
@@ -155,7 +155,7 @@
155155
<plugin>
156156
<groupId>com.mycila</groupId>
157157
<artifactId>license-maven-plugin</artifactId>
158-
<version>4.6</version>
158+
<version>5.0.0</version>
159159
<configuration>
160160
<properties>
161161
<email>${project.organization.url}</email>

0 commit comments

Comments
 (0)