Skip to content

Commit

Permalink
MEECROWAVE-340 fix shade plugin config
Browse files Browse the repository at this point in the history
we better only use one version of the plugin
  • Loading branch information
struberg committed Oct 20, 2024
1 parent 2d27283 commit 0d24db9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
16 changes: 10 additions & 6 deletions meecrowave-junit/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -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>
Expand Down Expand Up @@ -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>
Expand Down
1 change: 0 additions & 1 deletion meecrowave-oauth2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
1 change: 0 additions & 1 deletion meecrowave-specs-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 0d24db9

Please sign in to comment.