Skip to content

Commit af04a52

Browse files
committed
Merge branch 'develop'
2 parents 08242ed + 706b055 commit af04a52

File tree

22 files changed

+277
-220
lines changed

22 files changed

+277
-220
lines changed

.github/workflows/maven-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@ jobs:
3939
java-version: ${{ matrix.java }}
4040
maven-executable: ./mvnw
4141
sonar-run-on-os: ubuntu-latest
42-
sonar-run-on-java-version: 11
42+
sonar-run-on-java-version: 17
4343
sonar-token: ${{ secrets.SONAR_TOKEN }}
4444
github-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/maven-deploy.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
name: Deploy
44

5+
concurrency: ${{ github.workflow }}
6+
57
on:
68
push:
79
branches:

.mvn/wrapper/maven-wrapper.jar

3.73 KB
Binary file not shown.

.mvn/wrapper/maven-wrapper.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
# to you under the Apache License, Version 2.0 (the
66
# "License"); you may not use this file except in compliance
77
# with the License. You may obtain a copy of the License at
8-
#
8+
#
99
# http://www.apache.org/licenses/LICENSE-2.0
10-
#
10+
#
1111
# Unless required by applicable law or agreed to in writing,
1212
# software distributed under the License is distributed on an
1313
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
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.8.4/apache-maven-3.8.4-bin.zip
18-
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-wrapper-3.1.0.jar
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

changes.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,18 @@
2323
xsi:schemaLocation="http://maven.apache.org/changes/1.0.0 https://maven.apache.org/plugins/maven-changes-plugin/xsd/changes-1.0.0.xsd">
2424
<body>
2525

26+
<release version="2.19.6" date="2023-08-31">
27+
<action type="update" dev="sseifert">
28+
Switch to latest Maven APIs to handle build output timestamp.
29+
</action>
30+
<action type="update" dev="sseifert">
31+
Eliminate usage of Guava.
32+
</action>
33+
<action type="fix" dev="cnagel" issue="59">
34+
conga-aem-maven-plugin: Fix content package dependency rewriting when autoDependenciesMode=OFF.
35+
</action>
36+
</release>
37+
2638
<release version="2.19.4" date="2023-03-27">
2739
<action type="update" dev="sseifert">
2840
Update to SnakeYAML 2.0.

conga-aem-plugin/pom.xml

Lines changed: 2 additions & 8 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.aem.parent</artifactId>
28-
<version>2.19.4</version>
28+
<version>2.19.6</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.aem</artifactId>
34-
<version>2.19.4</version>
34+
<version>2.19.6</version>
3535
<packaging>jar</packaging>
3636

3737
<name>CONGA AEM Plugin</name>
@@ -67,12 +67,6 @@
6767
<scope>compile</scope>
6868
</dependency>
6969

70-
<dependency>
71-
<groupId>com.google.guava</groupId>
72-
<artifactId>guava</artifactId>
73-
<scope>compile</scope>
74-
</dependency>
75-
7670
<dependency>
7771
<groupId>org.apache.jackrabbit</groupId>
7872
<artifactId>filevault-package-maven-plugin</artifactId>

0 commit comments

Comments
 (0)