Skip to content

Commit

Permalink
Merge pull request #254 from jklukas/attach-sources
Browse files Browse the repository at this point in the history
Publish sources jar and javadoc jar
  • Loading branch information
erosb committed Jan 4, 2019
2 parents 1382890 + e187f43 commit 5722c0f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,30 @@
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</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>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
Expand Down

0 comments on commit 5722c0f

Please sign in to comment.