mirror of https://github.com/apache/activemq.git
improving building maven site
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1444071 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
bfde5c3bd6
commit
386b7bb844
|
@ -229,6 +229,41 @@
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-antrun-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>site</id>
|
||||||
|
<phase>site</phase>
|
||||||
|
<configuration>
|
||||||
|
<tasks>
|
||||||
|
<echo>Running the XSDDoc task</echo>
|
||||||
|
<taskdef name="xsddoc" classname="net.sf.xframe.xsddoc.Task" />
|
||||||
|
<mkdir dir="${basedir}/target/site/xsddoc" />
|
||||||
|
<xsddoc file="${basedir}/target/classes/activemq.xsd" out="${basedir}/target/site/xsddoc"
|
||||||
|
doctitle="Apache ActiveMQ XML Schema Reference"
|
||||||
|
header="<a href='http://activemq.apache.org/'>Apache ActiveMQ</a>"
|
||||||
|
footer="Copyright 2005-2012 (c) the <a href='http://www.apache.org/'>Apache Software Foundation</a>"
|
||||||
|
verbose="false" />
|
||||||
|
<!--
|
||||||
|
css="${basedir}/../etc/css/stylesheet.css"
|
||||||
|
-->
|
||||||
|
</tasks>
|
||||||
|
</configuration>
|
||||||
|
<goals>
|
||||||
|
<goal>run</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>xsddoc</groupId>
|
||||||
|
<artifactId>maven-xsddoc-plugin</artifactId>
|
||||||
|
<version>1.0</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
|
|
@ -463,32 +463,7 @@
|
||||||
<goal>run</goal>
|
<goal>run</goal>
|
||||||
</goals>
|
</goals>
|
||||||
</execution>
|
</execution>
|
||||||
<execution>
|
|
||||||
<id>site</id>
|
|
||||||
<phase>site</phase>
|
|
||||||
<configuration>
|
|
||||||
<tasks>
|
|
||||||
<echo>Running the XSDDoc task</echo>
|
|
||||||
<taskdef name="xsddoc" classname="net.sf.xframe.xsddoc.Task" />
|
|
||||||
<mkdir dir="${basedir}/target/site/xsddoc" />
|
|
||||||
<xsddoc file="${basedir}/target/classes/activemq.xsd" out="${basedir}/target/site/xsddoc" doctitle="Apache ActiveMQ XML Schema Reference" header="<a href='http://activemq.apache.org/'>Apache ActiveMQ</a>" footer="Copyright 2005-2012 (c) the <a href='http://www.apache.org/'>Apache Software Foundation</a>" verbose="false" />
|
|
||||||
<!--
|
|
||||||
css="${basedir}/../etc/css/stylesheet.css"
|
|
||||||
-->
|
|
||||||
</tasks>
|
|
||||||
</configuration>
|
|
||||||
<goals>
|
|
||||||
<goal>run</goal>
|
|
||||||
</goals>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
</executions>
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>xsddoc</groupId>
|
|
||||||
<artifactId>maven-xsddoc-plugin</artifactId>
|
|
||||||
<version>1.0</version>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
</plugin>
|
</plugin>
|
||||||
<!-- generate the attached tests jar -->
|
<!-- generate the attached tests jar -->
|
||||||
<plugin>
|
<plugin>
|
||||||
|
|
10
pom.xml
10
pom.xml
|
@ -1492,6 +1492,16 @@
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||||
|
<version>2.6</version>
|
||||||
|
<configuration>
|
||||||
|
<dependencyLocationsEnabled>
|
||||||
|
false
|
||||||
|
</dependencyLocationsEnabled>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
</profile>
|
</profile>
|
||||||
|
|
Loading…
Reference in New Issue