Skip to content

Commit c77cf56

Browse files
committed
Update Maven plugins and dependencies
1 parent a26b815 commit c77cf56

File tree

4 files changed

+50
-36
lines changed

4 files changed

+50
-36
lines changed

aem-classification-maven-plugin/pom.xml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@
3434
<artifactId>maven-site-plugin</artifactId>
3535
<configuration>
3636
<generateReports>true</generateReports>
37-
<relativizeDecorationLinks>false</relativizeDecorationLinks>
3837
<skipDeploy>true</skipDeploy>
3938
</configuration>
4039
</plugin>
@@ -53,7 +52,6 @@
5352
<artifactId>maven-project-info-reports-plugin</artifactId>
5453
<configuration>
5554
<dependencyDetailsEnabled>false</dependencyDetailsEnabled>
56-
<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
5755
</configuration>
5856
</plugin>
5957
</plugins>
@@ -82,18 +80,18 @@
8280
<groupId>org.apache.maven.plugin-tools</groupId>
8381
<artifactId>maven-plugin-annotations</artifactId>
8482
<scope>provided</scope><!-- annotations are needed only to build the plugin -->
85-
<version>3.6.4</version>
83+
<version>3.15.2</version>
8684
</dependency>
8785
<dependency>
8886
<groupId>biz.netcentric.filevault.validator</groupId>
8987
<artifactId>aem-classification-validator</artifactId>
90-
<version>1.1.1</version>
88+
<version>1.1.2</version>
9189
</dependency>
9290
<!-- for the JSON parser -->
9391
<dependency>
9492
<groupId>org.apache.felix</groupId>
9593
<artifactId>org.apache.felix.utils</artifactId>
96-
<version>1.11.4</version>
94+
<version>1.11.8</version>
9795
</dependency>
9896
<dependency>
9997
<groupId>org.jetbrains</groupId>
@@ -103,7 +101,7 @@
103101
<!-- TESTING -->
104102
<dependency>
105103
<groupId>org.junit.jupiter</groupId>
106-
<artifactId>junit-jupiter</artifactId>
104+
<artifactId>junit-jupiter-api</artifactId>
107105
<scope>test</scope>
108106
</dependency>
109107
</dependencies>

aem-classification-maven-plugin/src/site/site.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
limitations under the License.
3131
-->
3232

33-
<project xmlns="http://maven.apache.org/DECORATION/1.3.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
34-
xsi:schemaLocation="http://maven.apache.org/DECORATION/1.3.0 http://maven.apache.org/xsd/decoration-1.3.0.xsd"
33+
<site xmlns="http://maven.apache.org/SITE/2.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
34+
xsi:schemaLocation="http://maven.apache.org/SITE/2.0.0 https://maven.apache.org/xsd/site-2.0.0.xsd"
3535
name="AEM Classification Maven Plugin">
3636
<body>
3737
<menu name="Overview">
@@ -51,7 +51,7 @@
5151
<skin>
5252
<groupId>org.apache.maven.skins</groupId>
5353
<artifactId>maven-fluido-skin</artifactId>
54-
<version>1.12.0</version>
54+
<version>2.1.0</version>
5555
</skin>
5656

5757
<custom>
@@ -65,4 +65,4 @@
6565
</gitHub>
6666
</fluidoSkin>
6767
</custom>
68-
</project>
68+
</site>

aem-classification-validator/pom.xml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,21 @@
1818
<tag>HEAD</tag>
1919
</scm>
2020

21+
<build>
22+
<pluginManagement>
23+
<plugins>
24+
<plugin>
25+
<artifactId>maven-compiler-plugin</artifactId>
26+
<configuration>
27+
<annotationProcessors>
28+
<!-- generate META-INF/services-->
29+
<annotationProcessor>org.kohsuke.metainf_services.AnnotationProcessorImpl</annotationProcessor>
30+
</annotationProcessors>
31+
</configuration>
32+
</plugin>
33+
</plugins>
34+
</pluginManagement>
35+
</build>
2136
<dependencies>
2237
<!-- version used in filevault-package-maven-plugin 1.1.0 -->
2338
<dependency>
@@ -50,7 +65,7 @@
5065
<dependency>
5166
<groupId>org.kohsuke.metainf-services</groupId>
5267
<artifactId>metainf-services</artifactId>
53-
<version>1.8</version>
68+
<version>1.11</version>
5469
<optional>true</optional>
5570
<scope>provided</scope>
5671
</dependency>

pom.xml

Lines changed: 26 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,11 @@
7777
</dependency>
7878
<!-- TESTING -->
7979
<dependency>
80-
<groupId>org.junit.jupiter</groupId>
81-
<artifactId>junit-jupiter</artifactId>
82-
<version>${junit.jupiter.version}</version>
83-
<scope>test</scope>
80+
<groupId>org.junit</groupId>
81+
<artifactId>junit-bom</artifactId>
82+
<version>6.0.1</version>
83+
<type>pom</type>
84+
<scope>import</scope>
8485
</dependency>
8586
</dependencies>
8687
</dependencyManagement>
@@ -102,83 +103,83 @@
102103
</plugin>
103104
<plugin>
104105
<artifactId>maven-surefire-plugin</artifactId>
105-
<version>3.5.1</version>
106+
<version>3.5.4</version>
106107
</plugin>
107108
<plugin>
108109
<artifactId>maven-failsafe-plugin</artifactId>
109-
<version>3.5.1</version>
110+
<version>3.5.4</version>
110111
</plugin>
111112
<plugin>
112113
<artifactId>maven-compiler-plugin</artifactId>
113-
<version>3.13.0</version>
114+
<version>3.14.1</version>
114115
</plugin>
115116
<plugin>
116117
<artifactId>maven-install-plugin</artifactId>
117-
<version>3.1.3</version>
118+
<version>3.1.4</version>
118119
</plugin>
119120
<plugin>
120121
<artifactId>maven-deploy-plugin</artifactId>
121-
<version>3.1.3</version>
122+
<version>3.1.4</version>
122123
</plugin>
123124
<plugin>
124125
<artifactId>maven-resources-plugin</artifactId>
125-
<version>3.3.1</version>
126+
<version>3.4.0</version>
126127
</plugin>
127128
<plugin>
128129
<artifactId>maven-clean-plugin</artifactId>
129-
<version>3.4.0</version>
130+
<version>3.5.0</version>
130131
</plugin>
131132
<plugin>
132133
<artifactId>maven-jar-plugin</artifactId>
133-
<version>3.4.2</version>
134+
<version>3.5.0</version>
134135
</plugin>
135136
<plugin>
136137
<artifactId>maven-javadoc-plugin</artifactId>
137-
<version>3.10.1</version>
138+
<version>3.12.0</version>
138139
</plugin>
139140
<plugin>
140141
<artifactId>maven-source-plugin</artifactId>
141-
<version>3.3.1</version>
142+
<version>3.4.0</version>
142143
</plugin>
143144
<plugin>
144145
<artifactId>maven-release-plugin</artifactId>
145-
<version>3.1.1</version>
146+
<version>3.3.0</version>
146147
</plugin>
147148
<plugin>
148149
<artifactId>maven-plugin-plugin</artifactId>
149-
<version>3.15.0</version>
150+
<version>3.15.2</version>
150151
</plugin>
151152
<plugin>
152153
<artifactId>maven-plugin-report-plugin</artifactId>
153-
<version>3.15.0</version>
154+
<version>3.15.2</version>
154155
</plugin>
155156
<plugin>
156157
<artifactId>maven-project-info-reports-plugin</artifactId>
157-
<version>3.6.2</version>
158+
<version>3.9.0</version>
158159
</plugin>
159160
<plugin>
160161
<artifactId>maven-dependency-plugin</artifactId>
161-
<version>3.8.0</version>
162+
<version>3.9.0</version>
162163
</plugin>
163164
<!-- ====================================================================== -->
164165
<!-- S I T E P L U G I N -->
165166
<!-- ====================================================================== -->
166167
<plugin>
167168
<artifactId>maven-site-plugin</artifactId>
168-
<version>3.12.1</version>
169+
<version>3.21.0</version>
169170
</plugin>
170171
<plugin>
171172
<artifactId>maven-scm-publish-plugin</artifactId>
172173
<version>3.3.0</version>
173174
</plugin>
174175
<plugin>
175176
<artifactId>maven-enforcer-plugin</artifactId>
176-
<version>3.5.0</version>
177+
<version>3.6.2</version>
177178
</plugin>
178179
<plugin>
179180
<groupId>org.apache.maven.plugins</groupId>
180181
<artifactId>maven-gpg-plugin</artifactId>
181-
<version>3.2.7</version>
182+
<version>3.2.8</version>
182183
</plugin>
183184
<plugin>
184185
<groupId>org.apache.jackrabbit</groupId>
@@ -188,17 +189,17 @@
188189
<plugin>
189190
<groupId>com.day.jcr.vault</groupId>
190191
<artifactId>content-package-maven-plugin</artifactId>
191-
<version>1.0.4</version>
192+
<version>1.0.6</version>
192193
</plugin>
193194
<plugin>
194195
<groupId>org.codehaus.mojo</groupId>
195196
<artifactId>license-maven-plugin</artifactId>
196-
<version>2.0.0</version>
197+
<version>2.7.0</version>
197198
</plugin>
198199
<plugin>
199200
<groupId>org.codehaus.mojo</groupId>
200201
<artifactId>flatten-maven-plugin</artifactId>
201-
<version>1.6.0</version>
202+
<version>1.7.3</version>
202203
<configuration>
203204
<flattenMode>ossrh</flattenMode>
204205
</configuration>

0 commit comments

Comments
 (0)