Author: tchemit Date: 2010-04-06 23:35:23 +0200 (Tue, 06 Apr 2010) New Revision: 1717 Log: include xsd in site Modified: trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-04-06 21:22:18 UTC (rev 1716) +++ trunk/pom.xml 2010-04-06 21:35:23 UTC (rev 1717) @@ -375,6 +375,31 @@ </executions> </plugin> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <!-- TC-20100117 : 1.3 does not works here --> + <version>1.2</version> + <executions> + <!-- copy generated xsd to site --> + <execution> + <id>copy licenProject.xsd</id> + <phase>pre-site</phase> + <configuration> + <tasks> + <copy verbose="${maven.verbose}" + failonerror="false" + overwrite="false" + file="target/generated-site/xsd/licenseProject-1.0.0.xsd" + tofile="target/site/licenseProject-1.0.0.xsd"/> + </tasks> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> <pluginManagement>
participants (1)
-
tchemit@users.nuiton.org