Skip to content

Commit e741282

Browse files
Refresh setup-custom-ear-lifecycle test
1 parent a3c64de commit e741282

File tree

3 files changed

+11
-19
lines changed

3 files changed

+11
-19
lines changed

pom.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ under the License.
9696
<javaVersion>8</javaVersion>
9797
<project.build.outputTimestamp>2022-11-22T08:07:26Z</project.build.outputTimestamp>
9898
<slf4j.version>1.7.36</slf4j.version>
99+
<plexus-archiver.version>4.6.0</plexus-archiver.version>
99100
</properties>
100101

101102
<dependencyManagement>
@@ -176,7 +177,7 @@ under the License.
176177
<dependency>
177178
<groupId>org.codehaus.plexus</groupId>
178179
<artifactId>plexus-archiver</artifactId>
179-
<version>4.6.0</version>
180+
<version>${plexus-archiver.version}</version>
180181
</dependency>
181182
<dependency>
182183
<groupId>org.codehaus.plexus</groupId>

src/it/projects/setup-custom-ear-lifecycle/manager/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ under the License.
3333
<dependency>
3434
<groupId>org.codehaus.plexus</groupId>
3535
<artifactId>plexus-archiver</artifactId>
36-
<version>2.6.3</version>
36+
<version>@plexus-archiver.version@</version>
3737
</dependency>
3838
</dependencies>
3939

src/it/projects/setup-custom-ear-lifecycle/plugin/pom.xml

+8-17
Original file line numberDiff line numberDiff line change
@@ -41,18 +41,7 @@ under the License.
4141
<plugin>
4242
<groupId>org.apache.maven.plugins</groupId>
4343
<artifactId>maven-plugin-plugin</artifactId>
44-
<version>3.1</version>
45-
<configuration>
46-
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
47-
</configuration>
48-
<executions>
49-
<execution>
50-
<id>mojo-descriptor</id>
51-
<goals>
52-
<goal>descriptor</goal>
53-
</goals>
54-
</execution>
55-
</executions>
44+
<version>3.7.0</version>
5645
</plugin>
5746
</plugins>
5847
</build>
@@ -68,23 +57,25 @@ under the License.
6857
<dependency>
6958
<groupId>org.apache.maven</groupId>
7059
<artifactId>maven-plugin-api</artifactId>
71-
<version>2.0.9</version>
60+
<version>@mavenVersion@</version>
61+
<scope>provided</scope>
7262
</dependency>
7363
<dependency>
7464
<groupId>org.apache.maven</groupId>
75-
<artifactId>maven-project</artifactId>
76-
<version>2.0.9</version>
65+
<artifactId>maven-core</artifactId>
66+
<version>@mavenVersion@</version>
67+
<scope>provided</scope>
7768
</dependency>
7869
<dependency>
7970
<groupId>org.codehaus.plexus</groupId>
8071
<artifactId>plexus-archiver</artifactId>
81-
<version>4.2.2</version>
72+
<version>@plexus-archiver.version@</version>
8273
</dependency>
8374
<!-- dependencies to annotations -->
8475
<dependency>
8576
<groupId>org.apache.maven.plugin-tools</groupId>
8677
<artifactId>maven-plugin-annotations</artifactId>
87-
<version>3.1</version>
78+
<version>3.7.0</version>
8879
<scope>provided</scope>
8980
</dependency>
9081
</dependencies>

0 commit comments

Comments
 (0)