Skip to content

Commit ec4eff0

Browse files
author
Alex Wenckus
committed
Add JavaDoc and Source JARs
1 parent 67bea70 commit ec4eff0

File tree

1 file changed

+26
-6
lines changed

1 file changed

+26
-6
lines changed

pom.xml

Lines changed: 26 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,34 @@
5454
</configuration>
5555
</plugin>
5656

57-
<!-- Release tags should be v<VERSION>. -->
57+
<!-- JAVADOC -->
5858
<plugin>
5959
<groupId>org.apache.maven.plugins</groupId>
60-
<artifactId>maven-release-plugin</artifactId>
61-
<version>2.5.3</version>
62-
<configuration>
63-
<tagNameFormat>v@{project.version}</tagNameFormat>
64-
</configuration>
60+
<artifactId>maven-javadoc-plugin</artifactId>
61+
<version>2.10.4</version>
62+
<executions>
63+
<execution>
64+
<id>attach-javadocs</id>
65+
<goals>
66+
<goal>jar</goal>
67+
</goals>
68+
</execution>
69+
</executions>
70+
</plugin>
71+
72+
<!-- SOURCES -->
73+
<plugin>
74+
<groupId>org.apache.maven.plugins</groupId>
75+
<artifactId>maven-source-plugin</artifactId>
76+
<version>3.0.1</version>
77+
<executions>
78+
<execution>
79+
<id>attach-sources</id>
80+
<goals>
81+
<goal>jar</goal>
82+
</goals>
83+
</execution>
84+
</executions>
6585
</plugin>
6686
</plugins>
6787
</build>

0 commit comments

Comments
 (0)