Skip to content

Commit 9456f46

Browse files
committed
Add source jars to maven build
Updated pom.xml so that build will also produce source jars. Closes issue #32
1 parent 4466781 commit 9456f46

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

pom.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,18 @@
2929
<target>1.6</target>
3030
</configuration>
3131
</plugin>
32+
<plugin>
33+
<groupId>org.apache.maven.plugins</groupId>
34+
<artifactId>maven-source-plugin</artifactId>
35+
<executions>
36+
<execution>
37+
<id>attach-sources</id>
38+
<goals>
39+
<goal>jar</goal>
40+
</goals>
41+
</execution>
42+
</executions>
43+
</plugin>
3244
</plugins>
3345
</build>
3446
<distributionManagement>

0 commit comments

Comments
 (0)