We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03978e9 commit 852fde3Copy full SHA for 852fde3
calc/pom.xml
@@ -11,12 +11,25 @@
11
<artifactId>javamoney-calc</artifactId>
12
<name>Money and Currency - JavaMoney Calculations</name>
13
<packaging>bundle</packaging>
14
+ <!-- Try to find workaround for problem attaching sources to bundle, as of now manually switching to "jar" works -->
15
<build>
16
<plugins>
17
<plugin>
18
<groupId>org.apache.felix</groupId>
19
<artifactId>maven-bundle-plugin</artifactId>
20
</plugin>
21
+ <plugin>
22
+ <groupId>org.apache.maven.plugins</groupId>
23
+ <artifactId>maven-source-plugin</artifactId>
24
+ <executions>
25
+ <execution>
26
+ <id>attach-sources</id>
27
+ <goals>
28
+ <goal>jar</goal>
29
+ </goals>
30
+ </execution>
31
+ </executions>
32
+ </plugin>
33
</plugins>
34
</build>
35
</project>
0 commit comments