362 lines
15 KiB
XML
362 lines
15 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
~ Copyright 2009 Red Hat, Inc.
|
|
~ Red Hat 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.
|
|
-->
|
|
|
|
<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/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.apache.activemq.docs</groupId>
|
|
<artifactId>activemq-docs</artifactId>
|
|
<version>6.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<groupId>org.apache.activemq.docs</groupId>
|
|
<artifactId>user-manual</artifactId>
|
|
<version>1.0</version>
|
|
<packaging>jdocbook</packaging>
|
|
<name>user-manual</name>
|
|
|
|
<properties>
|
|
<translation>en</translation>
|
|
<docname>ActiveMQ_User_Manual</docname>
|
|
<bookname>ActiveMQ User Manual</bookname>
|
|
</properties>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>jboss-public-repository-group</id>
|
|
<name>JBoss Public Maven Repository Group</name>
|
|
<url>https://repository.jboss.org/nexus/content/groups/public/</url>
|
|
<layout>default</layout>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
<updatePolicy>never</updatePolicy>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
<updatePolicy>never</updatePolicy>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>jboss-public-repository-group</id>
|
|
<name>JBoss Public Maven Repository Group</name>
|
|
<url>https://repository.jboss.org/nexus/content/groups/public/</url>
|
|
<layout>default</layout>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</pluginRepository>
|
|
<!--pluginRepository>
|
|
<id>jboss-snapshot-repository-group</id>
|
|
<name>JBoss Snapshot Maven Repository Group</name>
|
|
<url>https://repository.jboss.org/nexus/content/groups/snapshot/</url>
|
|
<layout>default</layout>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</pluginRepository-->
|
|
</pluginRepositories>
|
|
|
|
<profiles>
|
|
<!-- mvn compile -->
|
|
<profile>
|
|
<id>all</id>
|
|
<activation>
|
|
<activeByDefault>true</activeByDefault>
|
|
</activation>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.jboss.maven.plugins</groupId>
|
|
<artifactId>maven-jdocbook-plugin</artifactId>
|
|
<version>2.3.5</version>
|
|
<extensions>true</extensions>
|
|
<configuration>
|
|
<formats>
|
|
<format>
|
|
<formatName>pdf</formatName>
|
|
<stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
|
|
<finalName>${docname}.pdf</finalName>
|
|
</format>
|
|
<format>
|
|
<formatName>html</formatName>
|
|
<stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
|
|
<finalName>index.html</finalName>
|
|
</format>
|
|
<format>
|
|
<formatName>html_single</formatName>
|
|
<stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
|
|
<finalName>index.html</finalName>
|
|
</format>
|
|
</formats>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
|
|
<!-- mvn compile -Phtml -->
|
|
<profile>
|
|
<id>html</id>
|
|
<activation>
|
|
<activeByDefault>false</activeByDefault>
|
|
</activation>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.jboss.maven.plugins</groupId>
|
|
<artifactId>maven-jdocbook-plugin</artifactId>
|
|
<version>2.2.1</version>
|
|
<extensions>true</extensions>
|
|
<configuration>
|
|
<formats>
|
|
<format>
|
|
<formatName>html</formatName>
|
|
<stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
|
|
<finalName>index.html</finalName>
|
|
</format>
|
|
</formats>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
|
|
<!-- mvn compile -Phtml-single -->
|
|
<profile>
|
|
<id>html-single</id>
|
|
<activation>
|
|
<activeByDefault>false</activeByDefault>
|
|
</activation>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.jboss.maven.plugins</groupId>
|
|
<artifactId>maven-jdocbook-plugin</artifactId>
|
|
<version>2.2.1</version>
|
|
<extensions>true</extensions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
|
|
<!-- mvn compile -Ppdf -->
|
|
<profile>
|
|
<id>pdf</id>
|
|
<activation>
|
|
<activeByDefault>false</activeByDefault>
|
|
</activation>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.jboss.maven.plugins</groupId>
|
|
<artifactId>maven-jdocbook-plugin</artifactId>
|
|
<version>2.2.1</version>
|
|
<extensions>true</extensions>
|
|
<configuration>
|
|
<formats>
|
|
<format>
|
|
<formatName>pdf</formatName>
|
|
<stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
|
|
<finalName>${docname}.pdf</finalName>
|
|
</format>
|
|
</formats>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.jboss.maven.plugins</groupId>
|
|
<artifactId>maven-jdocbook-plugin</artifactId>
|
|
<version>2.2.1</version>
|
|
<extensions>true</extensions>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.jboss.pressgang</groupId>
|
|
<artifactId>pressgang-xslt</artifactId>
|
|
<version>2.0.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jboss</groupId>
|
|
<artifactId>jbossorg-jdocbook-style</artifactId>
|
|
<version>1.1.1</version>
|
|
<type>jdocbook-style</type>
|
|
</dependency>
|
|
</dependencies>
|
|
<configuration>
|
|
<sourceDirectory>${project.basedir}</sourceDirectory>
|
|
<sourceDocumentName>${docname}.xml</sourceDocumentName>
|
|
<masterTranslation>en</masterTranslation>
|
|
<imageResource>
|
|
<directory>${project.basedir}/en</directory>
|
|
<includes>
|
|
<include>images/*.png</include>
|
|
<include>images/*.jpg</include>
|
|
</includes>
|
|
</imageResource>
|
|
<formats>
|
|
<format>
|
|
<formatName>pdf</formatName>
|
|
<stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
|
|
<finalName>${pdf.name}</finalName>
|
|
</format>
|
|
<format>
|
|
<formatName>html</formatName>
|
|
<stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
|
|
<finalName>index.html</finalName>
|
|
</format>
|
|
<format>
|
|
<formatName>html_single</formatName>
|
|
<stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
|
|
<finalName>index.html</finalName>
|
|
</format>
|
|
</formats>
|
|
<options>
|
|
<xincludeSupported>true</xincludeSupported>
|
|
<xmlTransformerType>saxon</xmlTransformerType>
|
|
<docbookVersion>1.72.0</docbookVersion>
|
|
<localeSeparator>-</localeSeparator>
|
|
<applyStandardInjectionValues>false</applyStandardInjectionValues>
|
|
<transformerParameters>
|
|
<property>
|
|
<name>javax.xml.parsers.DocumentBuilderFactory</name>
|
|
<value>org.apache.xerces.jaxp.DocumentBuilderFactoryImpl</value>
|
|
</property>
|
|
<property>
|
|
<name>javax.xml.parsers.SAXParserFactory</name>
|
|
<value>org.apache.xerces.jaxp.SAXParserFactoryImpl</value>
|
|
</property>
|
|
</transformerParameters>
|
|
</options>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>xml-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>transform</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<transformerFactory>net.sf.saxon.TransformerFactoryImpl</transformerFactory>
|
|
<transformationSets>
|
|
<transformationSet>
|
|
<dir>../../activemq-server/src/main/resources/schema</dir>
|
|
<stylesheet>./src/main/resources/schemaToTable.xsl</stylesheet>
|
|
<includes>
|
|
<include>activemq-configuration.xsd</include>
|
|
</includes>
|
|
<fileMappers>
|
|
<fileMapper implementation="org.codehaus.plexus.components.io.filemappers.FileExtensionMapper">
|
|
<targetExtension>.xml</targetExtension>
|
|
</fileMapper>
|
|
</fileMappers>
|
|
</transformationSet>
|
|
<transformationSet>
|
|
<dir>../../activemq-jms-server/src/main/resources/schema</dir>
|
|
<stylesheet>./src/main/resources/schemaToTable.xsl</stylesheet>
|
|
<includes>
|
|
<include>activemq-jms.xsd</include>
|
|
</includes>
|
|
<fileMappers>
|
|
<fileMapper implementation="org.codehaus.plexus.components.io.filemappers.FileExtensionMapper">
|
|
<targetExtension>.xml</targetExtension>
|
|
</fileMapper>
|
|
</fileMappers>
|
|
</transformationSet>
|
|
</transformationSets>
|
|
</configuration>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>net.sf.saxon</groupId>
|
|
<artifactId>saxon</artifactId>
|
|
<version>8.7</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<!--<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.jboss.maven.plugins</groupId>
|
|
<artifactId>maven-jdocbook-plugin</artifactId>
|
|
<version>2.2.1</version>
|
|
<extensions>true</extensions>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.jboss.pressgang</groupId>
|
|
<artifactId>pressgang-xslt</artifactId>
|
|
<version>1.2.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jboss</groupId>
|
|
<artifactId>jbossorg-jdocbook-style</artifactId>
|
|
<version>1.1.1</version>
|
|
<type>jdocbook-style</type>
|
|
</dependency>
|
|
</dependencies>
|
|
<configuration>
|
|
<sourceDocumentName>${docname}.xml</sourceDocumentName>
|
|
<sourceDirectory>.</sourceDirectory>
|
|
<imageResource>
|
|
<directory>${translation}</directory>
|
|
<includes>
|
|
<include>images/*</include>
|
|
</includes>
|
|
</imageResource>
|
|
<options>
|
|
<xincludeSupported>true</xincludeSupported>
|
|
<xmlTransformerType>saxon</xmlTransformerType>
|
|
<transformerParameters>
|
|
<property>
|
|
<name>javax.xml.parsers.DocumentBuilderFactory</name>
|
|
<value>org.apache.xerces.jaxp.DocumentBuilderFactoryImpl</value>
|
|
</property>
|
|
<property>
|
|
<name>javax.xml.parsers.SAXParserFactory</name>
|
|
<value>org.apache.xerces.jaxp.SAXParserFactoryImpl</value>
|
|
</property>
|
|
</transformerParameters>
|
|
</options>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>-->
|
|
</project>
|