Skip to content

Commit

Permalink
make javadocs great again
Browse files Browse the repository at this point in the history
  • Loading branch information
webron committed Aug 19, 2017
1 parent 930871a commit 0a430b4
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
17 changes: 17 additions & 0 deletions modules/swagger-parser-v2/dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,23 @@
</relocation>
</relocations>
<createSourcesJar>true</createSourcesJar>
<shadeSourcesContent>true</shadeSourcesContent>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.0-M1</version>
<executions>
<execution>
<id>javadoc-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<includeDependencySources>true</includeDependencySources>
</configuration>
</execution>
</executions>
Expand Down
18 changes: 18 additions & 0 deletions modules/swagger-parser-v2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,24 @@
</relocation>
</relocations>
<createSourcesJar>true</createSourcesJar>
<shadeSourcesContent>true</shadeSourcesContent>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.0-M1</version>
<executions>
<execution>
<id>javadoc-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<!-- switch on dependency-driven aggregation -->
<includeDependencySources>true</includeDependencySources>
</configuration>
</execution>
</executions>
Expand Down

0 comments on commit 0a430b4

Please sign in to comment.