Skip to content

Commit 0e2b435

Browse files
author
Rob Tjalma
authored
Merge pull request #62 from com-pas/develop
Merge branch 'develop' into master
2 parents 33f300e + a04450d commit 0e2b435

5 files changed

Lines changed: 61 additions & 18 deletions

File tree

.github/dependabot.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# SPDX-FileCopyrightText: 2021 Alliander N.V.
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
5+
version: 2
6+
7+
registries:
8+
maven-github:
9+
type: maven-repository
10+
url: https://maven.pkg.github.com/com-pas/*
11+
username: OWNER
12+
password: ${{ secrets.DB_GITHUB_PACKAGES }}
13+
14+
updates:
15+
# Maintain dependencies for GitHub Actions
16+
- package-ecosystem: "github-actions"
17+
directory: "/"
18+
schedule:
19+
interval: "daily"
20+
open-pull-requests-limit: 5
21+
22+
# Maintain dependencies for Maven
23+
- package-ecosystem: "maven"
24+
directory: "/"
25+
registries:
26+
- maven-github
27+
schedule:
28+
interval: "daily"
29+
open-pull-requests-limit: 5
30+
ignore:
31+
# Next two dependencies shouldn't be upgrade, because Quarkus isn't using newer version of EL.
32+
- dependency-name: org.hibernate.validator:hibernate-validator
33+
versions: [ "[7.0,)" ]
34+
- dependency-name: org.glassfish:jakarta.el
35+
versions: [ "[4.0,)" ]
36+
# Next two dependencies shouldn't be upgrade, because RestEasy isn't using newer version. (2.3.X)
37+
- dependency-name: jakarta.xml.bind:jakarta.xml.bind-api
38+
versions: [ "[3.0,)" ]
39+
- dependency-name: com.sun.xml.bind:jaxb-impl
40+
versions: [ "[3.0,)" ]

.github/workflows/build-project.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,10 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v2
1717
- name: Set up JDK 1.11
18-
uses: actions/setup-java@v1
18+
uses: actions/setup-java@v2.3.0
1919
with:
20-
java-version: 1.11
20+
distribution: 'zulu'
21+
java-version: '11'
2122
- name: Create custom Maven Settings.xml
2223
uses: whelk-io/maven-settings-xml-action@v18
2324
with:

.github/workflows/release-project.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,11 @@ jobs:
2121
shell: bash
2222
# Extra the tagname form the git reference, value of GITHUB_REF will be something like refs/tags/<tag_name>.
2323
run: echo "##[set-output name=tagname;]$(echo ${GITHUB_REF##*/})"
24-
- uses: actions/setup-java@v2
24+
- name: Set up JDK 1.11
25+
uses: actions/setup-java@v2.3.0
2526
with:
27+
distribution: 'zulu'
2628
java-version: '11'
27-
distribution: 'adopt'
2829
- name: Create custom Maven Settings.xml
2930
uses: whelk-io/maven-settings-xml-action@v18
3031
with:

.github/workflows/sonarcloud-analysis.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,19 @@ jobs:
1414
- uses: actions/checkout@v2
1515
with:
1616
fetch-depth: 0
17-
- name: Set up JDK 11
18-
uses: actions/setup-java@v1
17+
- name: Set up JDK 1.11
18+
uses: actions/setup-java@v2.3.0
1919
with:
20-
java-version: 11
20+
distribution: 'zulu'
21+
java-version: '11'
2122
- name: Cache SonarCloud packages
22-
uses: actions/cache@v1
23+
uses: actions/cache@v2.1.6
2324
with:
2425
path: ~/.sonar/cache
2526
key: ${{ runner.os }}-sonar
2627
restore-keys: ${{ runner.os }}-sonar
2728
- name: Cache Maven packages
28-
uses: actions/cache@v1
29+
uses: actions/cache@v2.1.6
2930
with:
3031
path: ~/.m2
3132
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

pom.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ SPDX-License-Identifier: Apache-2.0
1919
<maven.compiler.target>11</maven.compiler.target>
2020
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2121

22-
<compas.scl.xsd.version>0.0.1</compas.scl.xsd.version>
23-
<slf4j.version>1.7.31</slf4j.version>
24-
<jackson.version>2.12.4</jackson.version>
22+
<compas.scl.xsd.version>0.0.2</compas.scl.xsd.version>
23+
<slf4j.version>1.7.32</slf4j.version>
24+
<jackson.version>2.12.5</jackson.version>
2525
<jaxb.bind.version>2.3.3</jaxb.bind.version>
2626
<junit.jupiter.version>5.7.2</junit.jupiter.version>
27-
<mockito-junit-jupiter.version>3.11.2</mockito-junit-jupiter.version>
27+
<mockito-junit-jupiter.version>3.12.4</mockito-junit-jupiter.version>
2828
<openpojo.version>0.9.1</openpojo.version>
2929
</properties>
3030

@@ -96,7 +96,7 @@ SPDX-License-Identifier: Apache-2.0
9696
<dependency>
9797
<groupId>org.glassfish</groupId>
9898
<artifactId>jakarta.el</artifactId>
99-
<version>3.0.3</version>
99+
<version>3.0.4</version>
100100
<scope>test</scope>
101101
</dependency>
102102

@@ -114,7 +114,7 @@ SPDX-License-Identifier: Apache-2.0
114114
<dependency>
115115
<groupId>javax.ws.rs</groupId>
116116
<artifactId>javax.ws.rs-api</artifactId>
117-
<version>2.1</version>
117+
<version>2.1.1</version>
118118
</dependency>
119119
<dependency>
120120
<groupId>org.jboss.resteasy</groupId>
@@ -218,7 +218,7 @@ SPDX-License-Identifier: Apache-2.0
218218
<plugin>
219219
<groupId>org.jboss.jandex</groupId>
220220
<artifactId>jandex-maven-plugin</artifactId>
221-
<version>1.1.0</version>
221+
<version>1.2.0</version>
222222
<executions>
223223
<execution>
224224
<id>make-index</id>
@@ -240,7 +240,7 @@ SPDX-License-Identifier: Apache-2.0
240240
<sonar.language>java</sonar.language>
241241

242242
<!-- JaCoCo Properties -->
243-
<jacoco.version>0.8.6</jacoco.version>
243+
<jacoco.version>0.8.7</jacoco.version>
244244
<sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
245245
</properties>
246246

@@ -288,7 +288,7 @@ SPDX-License-Identifier: Apache-2.0
288288
<plugin>
289289
<groupId>org.apache.maven.plugins</groupId>
290290
<artifactId>maven-source-plugin</artifactId>
291-
<version>3.2.0</version>
291+
<version>3.2.1</version>
292292
<executions>
293293
<execution>
294294
<id>attach-sources</id>

0 commit comments

Comments
 (0)