Skip to content

Commit

Permalink
e2e: avoid empty jar
Browse files Browse the repository at this point in the history
  • Loading branch information
ivangsa committed Jan 21, 2024
1 parent 60aee68 commit cd9cea2
Showing 1 changed file with 28 additions and 27 deletions.
55 changes: 28 additions & 27 deletions e2e/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,33 +15,6 @@
<skipTests>${e2e.tests.skip}</skipTests>
</properties>

<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>default-install</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<executions>
<execution>
<id>default-install</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>

<dependencies>
<dependency>
<groupId>io.github.zenwave360.zenwave-sdk</groupId>
Expand Down Expand Up @@ -81,4 +54,32 @@
</dependency>
</dependencies>

<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>default-jar</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<executions>
<execution>
<id>default-install</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>


</project>

0 comments on commit cd9cea2

Please sign in to comment.