Skip to content

Commit

Permalink
14: Deploy lib to maven repository
Browse files Browse the repository at this point in the history
  • Loading branch information
keilw committed Apr 12, 2015
1 parent 03978e9 commit 852fde3
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions calc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,25 @@
<artifactId>javamoney-calc</artifactId>
<name>Money and Currency - JavaMoney Calculations</name>
<packaging>bundle</packaging>
<!-- Try to find workaround for problem attaching sources to bundle, as of now manually switching to "jar" works -->
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 852fde3

Please sign in to comment.