Skip to content

Commit

Permalink
Allow creation of staged site (without testapidocs)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmay committed Apr 17, 2014
1 parent 50ca27a commit 160f671
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions pom.xml
Expand Up @@ -48,6 +48,12 @@
<name>CDK Snapshot Repository</name>
<url>${cdk.repo.snapshots.url}</url>
</snapshotRepository>
<!-- site is staged and then copied to a sub-folder of gh-pages, no
url is provided but the field is needed to stage the site. -->
<site>
<id>cdk.github.com</id>
<url>http://cdk.github.io/cdk/</url>
</site>
</distributionManagement>

<prerequisites>
Expand Down Expand Up @@ -498,9 +504,17 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<configuration>
<aggregate>false</aggregate>
</configuration>
<reportSets>
<reportSet>
<id>default</id>
<configuration>
<aggregate>false</aggregate>
</configuration>
<reports>
<report>javadoc</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down

0 comments on commit 160f671

Please sign in to comment.