Skip to content
This repository has been archived by the owner on Jan 4, 2020. It is now read-only.

Commit

Permalink
switched to included javadocs for dependencies in publish profile
Browse files Browse the repository at this point in the history
  • Loading branch information
Torsten Krause committed Apr 25, 2016
1 parent 10f3ac8 commit a3a2e4a
Showing 1 changed file with 22 additions and 8 deletions.
30 changes: 22 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -146,14 +146,6 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
<configuration>
<notimestamp>true</notimestamp>
<links>
<link>https://markenwerk.github.io/java-commons-datastructures/</link>
<link>https://markenwerk.github.io/java-commons-interfaces/</link>
<link>https://markenwerk.github.io/java-commons-iterators/</link>
</links>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
Expand Down Expand Up @@ -216,6 +208,28 @@
<id>publish</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
<configuration>
<notimestamp>true</notimestamp>
<includeDependencySources>true</includeDependencySources>
<includeTransitiveDependencySources>true</includeTransitiveDependencySources>
<dependencySourceIncludes>
<dependencySourceInclude>net.markenwerk:*</dependencySourceInclude>
</dependencySourceIncludes>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-publish-plugin</artifactId>
Expand Down

0 comments on commit a3a2e4a

Please sign in to comment.