Skip to content

Commit

Permalink
ISPN-12342 Add Dependencies Manifest header to Spring artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
marschall authored and karesti committed Sep 23, 2020
1 parent c28a26f commit 766c544
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
10 changes: 10 additions & 0 deletions spring/spring5/spring5-common/pom.xml
Expand Up @@ -58,6 +58,16 @@
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Dependencies>org.infinispan.commons</Dependencies>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
Expand Down
10 changes: 10 additions & 0 deletions spring/spring5/spring5-embedded/pom.xml
Expand Up @@ -126,6 +126,16 @@
</testResource>
</testResources>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Dependencies>org.infinispan.commons, org.infinispan</Dependencies>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
Expand Down
10 changes: 10 additions & 0 deletions spring/spring5/spring5-remote/pom.xml
Expand Up @@ -131,6 +131,16 @@
</testResource>
</testResources>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Dependencies>org.infinispan.commons, org.infinispan, org.infinispan.client.hotrod</Dependencies>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
Expand Down

0 comments on commit 766c544

Please sign in to comment.