Skip to content

Commit

Permalink
Add Maven GitHub Site plugin and bind to site phase
Browse files Browse the repository at this point in the history
  • Loading branch information
joschi committed Apr 3, 2014
1 parent d37b1e8 commit be126ca
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,26 @@
</archive>
</configuration>
</plugin>
<plugin>
<groupId>com.github.github</groupId>
<artifactId>site-maven-plugin</artifactId>
<version>0.9</version>
<configuration>
<!-- Make sure that each sub-module gets its own site -->
<path>${project.version}/${project.artifactId}</path>
<message>Create site for ${project.name} ${project.version}</message>
<noJekyll>true</noJekyll>
<merge>true</merge>
</configuration>
<executions>
<execution>
<goals>
<goal>site</goal>
</goals>
<phase>site</phase>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
Expand Down

0 comments on commit be126ca

Please sign in to comment.