2015-01-05 07:45:36 -05:00
|
|
|
<!--
|
|
|
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
|
|
this work for additional information regarding copyright ownership.
|
|
|
|
The ASF licenses this file to You under the Apache License, Version 2.0
|
|
|
|
(the "License"); you may not use this file except in compliance with
|
|
|
|
the License. You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
2015-03-03 06:48:06 -05:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
2014-11-28 06:46:12 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>activemq-pom</artifactId>
|
2015-03-03 06:48:06 -05:00
|
|
|
<version>6.0.0-SNAPSHOT</version>
|
2014-11-28 06:46:12 -05:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>activemq-website</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>ActiveMQ6 Web</name>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>activemq-core-client</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>activemq-jms-client</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>activemq-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>activemq-jms-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>activemq-journal</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>activemq-selector</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<activemq.basedir>${project.basedir}/..</activemq.basedir>
|
2014-12-09 03:35:33 -05:00
|
|
|
<webapp-dir>${project.artifactId}-${project.version}</webapp-dir>
|
|
|
|
<webapp-outdir>${basedir}/target/classes/user-manual</webapp-outdir>
|
2014-11-28 06:46:12 -05:00
|
|
|
</properties>
|
|
|
|
|
2014-12-09 03:35:33 -05:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>release</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>2.10.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>javadoc-jar</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<doclet>org.jboss.apiviz.APIviz</doclet>
|
|
|
|
<docletArtifact>
|
|
|
|
<groupId>org.jboss.apiviz</groupId>
|
|
|
|
<artifactId>apiviz</artifactId>
|
|
|
|
<version>1.3.2.GA</version>
|
|
|
|
</docletArtifact>
|
|
|
|
<useStandardDocletOptions>true</useStandardDocletOptions>
|
|
|
|
<minmemory>128m</minmemory>
|
|
|
|
<maxmemory>512m</maxmemory>
|
|
|
|
<quiet>false</quiet>
|
|
|
|
<!-- switch on dependency-driven aggregation -->
|
|
|
|
<includeDependencySources>true</includeDependencySources>
|
2014-11-28 06:46:12 -05:00
|
|
|
|
2014-12-09 03:35:33 -05:00
|
|
|
<dependencySourceIncludes>
|
|
|
|
<!-- include ONLY dependencies I control -->
|
|
|
|
<dependencySourceInclude>org.apache.activemq:activemq-core-client</dependencySourceInclude>
|
|
|
|
<dependencySourceInclude>org.apache.activemq:activemq-jms-client</dependencySourceInclude>
|
|
|
|
<dependencySourceInclude>org.apache.activemq:activemq-server</dependencySourceInclude>
|
|
|
|
<dependencySourceInclude>org.apache.activemq:activemq-jms-server</dependencySourceInclude>
|
|
|
|
<dependencySourceInclude>org.apache.activemq:activemq-journal</dependencySourceInclude>
|
|
|
|
<dependencySourceInclude>org.apache.activemq:activemq-selector</dependencySourceInclude>
|
|
|
|
</dependencySourceIncludes>
|
|
|
|
<quiet>false</quiet>
|
|
|
|
<aggregate>true</aggregate>
|
|
|
|
<excludePackageNames>org.apache.activemq.core:org.apache.activemq.utils</excludePackageNames>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<version>1.6</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>generate-sources</phase>
|
|
|
|
<configuration>
|
|
|
|
<target>
|
|
|
|
<!-- lets generate the gitbook -->
|
2015-03-03 06:48:06 -05:00
|
|
|
<mkdir dir="${webapp-outdir}/gitbook"/>
|
2014-12-09 03:35:33 -05:00
|
|
|
<echo>executing gitbook</echo>
|
|
|
|
<exec executable="gitbook">
|
2015-03-03 06:48:06 -05:00
|
|
|
<arg value="build"/>
|
|
|
|
<arg value="${basedir}/../docs/user-manual/en"/>
|
|
|
|
<arg value="--output=${webapp-outdir}"/>
|
2014-12-09 03:35:33 -05:00
|
|
|
</exec>
|
|
|
|
</target>
|
|
|
|
</configuration>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
2014-11-28 06:46:12 -05:00
|
|
|
</execution>
|
2014-12-09 03:35:33 -05:00
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2014-11-28 06:46:12 -05:00
|
|
|
</project>
|