Skip to content

Commit

Permalink
adding james as shaded in the spec jar to let the impl compile back
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/geronimo/specs/trunk@1827415 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
rmannibucau committed Mar 21, 2018
1 parent 63b4a80 commit 1f72a8a
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions geronimo-javamail_1.5_spec/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,11 @@
<version>1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.james</groupId>
<artifactId>apache-mime4j-core</artifactId>
<version>0.8.1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand All @@ -93,6 +98,31 @@

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<configuration>
<artifactSet>
<includes>
<include>org.apache.james:apache-mime4j-core</include>
</includes>
</artifactSet>
<relocations>
<relocation>
<pattern>org.apache.james.mime4j</pattern>
<shadedPattern>org.apache.geronimo.mail.james.mime4j</shadedPattern>
</relocation>
</relocations>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
Expand Down

0 comments on commit 1f72a8a

Please sign in to comment.