This is an automated email from the ASF dual-hosted git repository.

struberg pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openwebbeans-meecrowave.git


The following commit(s) were added to refs/heads/main by this push:
     new 0d24db9  MEECROWAVE-340 fix shade plugin config
0d24db9 is described below

commit 0d24db9386bf0d74eac9adac8ee5da6d2890fc8d
Author: Mark Struberg <[email protected]>
AuthorDate: Sun Oct 20 17:15:42 2024 +0200

    MEECROWAVE-340 fix shade plugin config
    
    we better only use one version of the plugin
---
 meecrowave-junit/pom.xml     | 16 ++++++++++------
 meecrowave-oauth2/pom.xml    |  1 -
 meecrowave-specs-api/pom.xml |  1 -
 3 files changed, 10 insertions(+), 8 deletions(-)

diff --git a/meecrowave-junit/pom.xml b/meecrowave-junit/pom.xml
index eab63f7..758375a 100644
--- a/meecrowave-junit/pom.xml
+++ b/meecrowave-junit/pom.xml
@@ -18,12 +18,13 @@
     under the License.
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation=" 
http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd";>
+  <modelVersion>4.0.0</modelVersion>
+
   <parent>
-    <artifactId>meecrowave</artifactId>
     <groupId>org.apache.meecrowave</groupId>
+    <artifactId>meecrowave</artifactId>
     <version>2.0.0-SNAPSHOT</version>
   </parent>
-  <modelVersion>4.0.0</modelVersion>
 
   <artifactId>meecrowave-junit</artifactId>
   <name>Meecrowave :: JUnit</name>
@@ -42,6 +43,13 @@
   </profiles>
 
   <dependencies>
+    <dependency>
+      <groupId>org.apache.meecrowave</groupId>
+      <artifactId>meecrowave-specs-api</artifactId>
+      <version>${project.version}</version>
+      <scope>provided</scope>
+    </dependency>
+
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
@@ -73,10 +81,6 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-surefire-plugin</artifactId>
-        <configuration>
-          <!-- cause of mono runner/rule -->
-          <reuseForks>false</reuseForks>
-        </configuration>
         <dependencies>
           <dependency>
             <groupId>org.junit.platform</groupId>
diff --git a/meecrowave-oauth2/pom.xml b/meecrowave-oauth2/pom.xml
index 550a23a..21761dd 100644
--- a/meecrowave-oauth2/pom.xml
+++ b/meecrowave-oauth2/pom.xml
@@ -87,7 +87,6 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-shade-plugin</artifactId>
-        <version>3.2.4</version>
         <executions>
           <execution>
             <id>bundle</id>
diff --git a/meecrowave-specs-api/pom.xml b/meecrowave-specs-api/pom.xml
index 7eff1ee..473fb49 100644
--- a/meecrowave-specs-api/pom.xml
+++ b/meecrowave-specs-api/pom.xml
@@ -72,7 +72,6 @@
       <plugin>
       <groupId>org.apache.maven.plugins</groupId>
       <artifactId>maven-shade-plugin</artifactId>
-      <version>3.2.1</version>
       <executions>
         <execution>
           <id>mw-javaee-api</id>

Reply via email to