This is an automated email from the ASF dual-hosted git repository. alien11689 pushed a commit to branch ARIES-2173-remove-unused-maven-plugins-from-parent in repository https://gitbox.apache.org/repos/asf/aries.git
commit 45ac2260bbff459fa4de59ece3c8cd14c3686272 Author: Dominik Przybysz <[email protected]> AuthorDate: Fri Mar 21 19:16:47 2025 +0100 ARIES-2173: Remove paxexam maven plugin from parent --- parent/pom.xml | 27 ---------------------- .../blueprint/helloworld/helloworld-itests/pom.xml | 11 ++++----- 2 files changed, 5 insertions(+), 33 deletions(-) diff --git a/parent/pom.xml b/parent/pom.xml index 034992056..fdd9298ed 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -190,7 +190,6 @@ <findbugs-maven-plugin.version>3.0.5</findbugs-maven-plugin.version> <lifecycle-mapping.version>1.0.0</lifecycle-mapping.version> <maven-bundle-plugin.version>5.1.9</maven-bundle-plugin.version> - <maven-paxexam-plugin.version>1.2.4</maven-paxexam-plugin.version> <maven-pmd-plugin.version>3.26.0</maven-pmd-plugin.version> <org.apache.aries.versioning.plugin.version>0.3.1</org.apache.aries.versioning.plugin.version> @@ -312,27 +311,6 @@ <ignore/> </action> </pluginExecution> - <pluginExecution> - <pluginExecutionFilter> - <groupId> - org.ops4j.pax.exam - </groupId> - <artifactId> - maven-paxexam-plugin - </artifactId> - <versionRange> - [${maven-paxexam-plugin.version},) - </versionRange> - <goals> - <goal> - generate-depends-file - </goal> - </goals> - </pluginExecutionFilter> - <action> - <ignore/> - </action> - </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> @@ -366,11 +344,6 @@ <artifactId>findbugs-maven-plugin</artifactId> <version>${findbugs-maven-plugin.version}</version> </plugin> - <plugin> - <groupId>org.ops4j.pax.exam</groupId> - <artifactId>maven-paxexam-plugin</artifactId> - <version>${maven-paxexam-plugin.version}</version> - </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> diff --git a/samples/blueprint/helloworld/helloworld-itests/pom.xml b/samples/blueprint/helloworld/helloworld-itests/pom.xml index b294f9fe1..4b3992188 100644 --- a/samples/blueprint/helloworld/helloworld-itests/pom.xml +++ b/samples/blueprint/helloworld/helloworld-itests/pom.xml @@ -34,6 +34,7 @@ <properties> <asm.version>5.0.3</asm.version> <cm.version>3.2.0-v20070116</cm.version> + <depends-maven-plugin.version>1.5.0</depends-maven-plugin.version> <org.apache.aries.proxy.version>1.0.0</org.apache.aries.proxy.version> <org.eclipse.osgi.version>3.23.0</org.eclipse.osgi.version> <pax-exam.version>4.13.5</pax-exam.version> @@ -202,17 +203,15 @@ </configuration> </plugin> <plugin> - <groupId>org.ops4j.pax.exam</groupId> - <artifactId>maven-paxexam-plugin</artifactId> + <groupId>org.apache.servicemix.tooling</groupId> + <artifactId>depends-maven-plugin</artifactId> + <version>${depends-maven-plugin.version}</version> <executions> <execution> - <id>generate-config</id> + <id>generate-depends-file</id> <goals> <goal>generate-depends-file</goal> </goals> - <configuration> - <outputFile>${project.build.directory}/test-classes/META-INF/maven/dependencies.properties</outputFile> - </configuration> </execution> </executions> </plugin>
