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-06 11:30:25 -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>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-pom</artifactId>
|
2015-05-21 08:47:45 -04:00
|
|
|
<version>1.0.1-SNAPSHOT</version>
|
2014-11-28 06:46:12 -05:00
|
|
|
</parent>
|
|
|
|
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-website</artifactId>
|
2014-11-28 06:46:12 -05:00
|
|
|
<packaging>jar</packaging>
|
2015-04-21 09:49:05 -04:00
|
|
|
<name>ActiveMQ Artemis Web</name>
|
2014-11-28 06:46:12 -05:00
|
|
|
|
2015-05-13 13:49:42 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>artemis-core-client</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>artemis-jms-client</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>artemis-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>artemis-jms-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>artemis-journal</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>artemis-selector</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2014-11-28 06:46:12 -05:00
|
|
|
|
|
|
|
<properties>
|
2015-05-13 13:49:42 -04:00
|
|
|
<activemq.basedir>${project.basedir}/..</activemq.basedir>
|
|
|
|
<webapp-dir>${project.artifactId}-${project.version}</webapp-dir>
|
|
|
|
<webapp-outdir-user-manual>${basedir}/target/classes/user-manual</webapp-outdir-user-manual>
|
|
|
|
<webapp-outdir-hacking-guide>${basedir}/target/classes/hacking-guide</webapp-outdir-hacking-guide>
|
2014-11-28 06:46:12 -05:00
|
|
|
</properties>
|
|
|
|
|
2015-03-09 11:13:20 -04:00
|
|
|
<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>
|
|
|
|
<useStandardDocletOptions>true</useStandardDocletOptions>
|
|
|
|
<minmemory>128m</minmemory>
|
|
|
|
<maxmemory>512m</maxmemory>
|
|
|
|
<quiet>false</quiet>
|
|
|
|
<!-- switch on dependency-driven aggregation -->
|
|
|
|
<includeDependencySources>true</includeDependencySources>
|
|
|
|
|
|
|
|
<dependencySourceIncludes>
|
|
|
|
<!-- include ONLY dependencies I control -->
|
2015-04-27 17:32:30 -04:00
|
|
|
<dependencySourceInclude>org.apache.activemq:artemis-core-client</dependencySourceInclude>
|
|
|
|
<dependencySourceInclude>org.apache.activemq:artemis-jms-client</dependencySourceInclude>
|
|
|
|
<dependencySourceInclude>org.apache.activemq:artemis-server</dependencySourceInclude>
|
|
|
|
<dependencySourceInclude>org.apache.activemq:artemis-jms-server</dependencySourceInclude>
|
|
|
|
<dependencySourceInclude>org.apache.activemq:artemis-journal</dependencySourceInclude>
|
|
|
|
<dependencySourceInclude>org.apache.activemq:artemis-selector</dependencySourceInclude>
|
2015-03-09 11:13:20 -04:00
|
|
|
</dependencySourceIncludes>
|
|
|
|
<quiet>false</quiet>
|
|
|
|
<aggregate>true</aggregate>
|
2015-04-27 17:32:30 -04:00
|
|
|
<excludePackageNames>org.apache.activemq.artemis.core:org.apache.activemq.artemis.utils</excludePackageNames>
|
2015-03-09 11:13:20 -04:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2014-12-09 03:35:33 -05:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>release</id>
|
|
|
|
<build>
|
2015-05-13 13:49:42 -04:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2014-12-09 03:35:33 -05:00
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<version>1.6</version>
|
|
|
|
<executions>
|
2015-05-13 13:49:42 -04:00
|
|
|
<execution>
|
|
|
|
<phase>generate-sources</phase>
|
|
|
|
<configuration>
|
|
|
|
<target>
|
|
|
|
<condition property="gitbook.cmd" value="gitbook.cmd" else="gitbook">
|
2015-05-20 06:17:31 -04:00
|
|
|
<os family="windows" />
|
2015-05-13 13:49:42 -04:00
|
|
|
</condition>
|
|
|
|
<!-- lets generate the gitbook -->
|
2015-05-20 06:17:31 -04:00
|
|
|
<mkdir dir="${webapp-outdir-user-manual}/gitbook" />
|
2015-05-13 13:49:42 -04:00
|
|
|
<echo>executing ${gitbook.cmd}</echo>
|
|
|
|
<exec executable="${gitbook.cmd}">
|
2015-05-20 06:17:31 -04:00
|
|
|
<arg value="build" />
|
|
|
|
<arg value="${basedir}/../docs/user-manual/en" />
|
|
|
|
<arg value="--output=${webapp-outdir-user-manual}" />
|
2015-05-13 13:49:42 -04:00
|
|
|
</exec>
|
2015-05-20 06:17:31 -04:00
|
|
|
<mkdir dir="${webapp-outdir-hacking-guide}/gitbook" />
|
2015-05-13 13:49:42 -04:00
|
|
|
<echo>executing ${gitbook.cmd}</echo>
|
|
|
|
<exec executable="${gitbook.cmd}">
|
2015-05-20 06:17:31 -04:00
|
|
|
<arg value="build" />
|
|
|
|
<arg value="${basedir}/../docs/hacking-guide/en" />
|
|
|
|
<arg value="--output=${webapp-outdir-hacking-guide}" />
|
2015-05-13 13:49:42 -04:00
|
|
|
</exec>
|
|
|
|
</target>
|
|
|
|
</configuration>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
2014-12-09 03:35:33 -05:00
|
|
|
</executions>
|
2015-05-13 13:49:42 -04:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2014-12-09 03:35:33 -05:00
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2014-11-28 06:46:12 -05:00
|
|
|
</project>
|