Skip to content

Commit 65cff23

Browse files
committed
Merge branch 'develop'
2 parents f8a53a6 + 8d914f9 commit 65cff23

File tree

31 files changed

+420
-516
lines changed

31 files changed

+420
-516
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.github/renovate.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": [
4+
"github>wcm-io/renovate-config:maven",
5+
"github>wcm-io/renovate-config:automerge-parent",
6+
"github>wcm-io/renovate-config:automerge-testing",
7+
"github>wcm-io-devops/renovate-config:automerge-parent"
8+
]
9+
}

.github/workflows/maven-build.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,9 @@ name: Build
44

55
on:
66
push:
7-
branches-ignore:
8-
- master
9-
- experimental/**
7+
branches:
8+
- develop
109
pull_request:
11-
types: [opened, synchronize, reopened]
12-
branches-ignore:
13-
- master
14-
- experimental/**
1510
workflow_dispatch:
1611

1712
jobs:
@@ -39,6 +34,6 @@ jobs:
3934
java-version: ${{ matrix.java }}
4035
maven-executable: ./mvnw
4136
sonar-run-on-os: ubuntu-latest
42-
sonar-run-on-java-version: 17
37+
sonar-run-on-java-version: 21
4338
sonar-token: ${{ secrets.SONAR_TOKEN }}
4439
github-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/maven-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
git config --global user.name "${{ secrets.GH_SITE_DEPLOY_NAME }}"
2626
2727
- name: Setup JDK
28-
uses: actions/setup-java@v3
28+
uses: actions/setup-java@v4
2929
with:
3030
distribution: temurin
3131
java-version: 11

.github/workflows/release-from-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ jobs:
1515
- uses: actions/checkout@v4
1616
- uses: ncipollo/release-action@v1
1717
with:
18-
body: 'Changes: https://devops.wcm.io/conga/plugins/ansible/changes-report.html'
18+
body: 'Changes: https://devops.wcm.io/conga/plugins/ansible/changes.html'
1919
token: ${{ secrets.GITHUB_TOKEN }}

.mvn/wrapper/maven-wrapper.jar

-61.1 KB
Binary file not shown.

.mvn/wrapper/maven-wrapper.properties

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@
1414
# KIND, either express or implied. See the License for the
1515
# specific language governing permissions and limitations
1616
# under the License.
17-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.4/apache-maven-3.9.4-bin.zip
18-
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar
17+
wrapperVersion=3.3.2
18+
distributionType=only-script
19+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip

changes.xml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,17 @@
1919
#L%
2020
-->
2121

22-
<document xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/changes/1.0.0"
23-
xsi:schemaLocation="http://maven.apache.org/changes/1.0.0 http://maven.apache.org/plugins/maven-changes-plugin/xsd/changes-1.0.0.xsd">
22+
<document xmlns="http://maven.apache.org/changes/2.0.0"
23+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24+
xsi:schemaLocation="http://maven.apache.org/changes/2.0.0 https://maven.apache.org/xsd/changes-2.0.0.xsd">
2425
<body>
2526

27+
<release version="1.4.8" date="2025-04-01">
28+
<action type="update" dev="sseifert">
29+
Update dependencies.
30+
</action>
31+
</release>
32+
2633
<release version="1.4.6" date="2023-10-18">
2734
<action type="fix" dev="sseifert" issue="11">
2835
Increase SnakeYAML codepoint limit to 64MB (from default 3MB).

conga-ansible-plugin/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@
2525
<parent>
2626
<groupId>io.wcm.devops.conga.plugins</groupId>
2727
<artifactId>io.wcm.devops.conga.plugins.ansible.parent</artifactId>
28-
<version>1.4.6</version>
28+
<version>1.4.8</version>
2929
<relativePath>../parent/pom.xml</relativePath>
3030
</parent>
3131

3232
<groupId>io.wcm.devops.conga.plugins</groupId>
3333
<artifactId>io.wcm.devops.conga.plugins.ansible</artifactId>
34-
<version>1.4.6</version>
34+
<version>1.4.8</version>
3535
<packaging>jar</packaging>
3636

3737
<name>CONGA Ansible Plugin</name>
@@ -57,7 +57,7 @@
5757
<dependency>
5858
<groupId>io.wcm.devops.conga</groupId>
5959
<artifactId>io.wcm.devops.conga.generator</artifactId>
60-
<version>1.16.4</version>
60+
<version>1.17.2</version>
6161
<scope>compile</scope>
6262
</dependency>
6363

@@ -81,14 +81,14 @@
8181
<dependency>
8282
<groupId>org.apache.commons</groupId>
8383
<artifactId>commons-exec</artifactId>
84-
<version>1.3</version>
84+
<version>1.4.0</version>
8585
<scope>compile</scope>
8686
</dependency>
8787

8888
<dependency>
8989
<groupId>com.jayway.jsonpath</groupId>
9090
<artifactId>json-path</artifactId>
91-
<version>2.8.0</version>
91+
<version>2.9.0</version>
9292
<scope>compile</scope>
9393
</dependency>
9494

conga-ansible-plugin/src/it/example/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<parent>
2727
<groupId>io.wcm.maven</groupId>
2828
<artifactId>io.wcm.maven.global-parent</artifactId>
29-
<version>54</version>
29+
<version>62</version>
3030
<relativePath/>
3131
</parent>
3232

@@ -46,7 +46,7 @@
4646
<plugin>
4747
<groupId>org.codehaus.mojo</groupId>
4848
<artifactId>properties-maven-plugin</artifactId>
49-
<version>1.0.0</version>
49+
<version>1.2.1</version>
5050
<executions>
5151
<execution>
5252
<id>set-properties</id>
@@ -65,7 +65,7 @@
6565
<plugin>
6666
<groupId>io.wcm.devops.conga</groupId>
6767
<artifactId>conga-maven-plugin</artifactId>
68-
<version>1.16.4</version>
68+
<version>1.17.2</version>
6969
<extensions>true</extensions>
7070
<configuration>
7171
<valueProvider>

0 commit comments

Comments
 (0)