34d6db3e51
Change-Id: I311257ed7ebb4803923ee735d4e450cbbe8c7a13
114 lines
5.1 KiB
XML
114 lines
5.1 KiB
XML
<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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.openstack.docs</groupId>
|
|
<artifactId>openstack-guide</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
<packaging>jar</packaging>
|
|
<name>OpenStack Administration Guides</name>
|
|
|
|
<properties>
|
|
<!-- This is set by Jenkins according to the branch. -->
|
|
<release.path.name>local</release.path.name>
|
|
<comments.enabled>1</comments.enabled>
|
|
</properties>
|
|
|
|
<!-- ################################################ -->
|
|
<!-- USE "mvn clean generate-sources" to run this POM -->
|
|
<!-- Builds the Neutron Administration Manual -->
|
|
<!-- ################################################ -->
|
|
<build>
|
|
<plugins>
|
|
|
|
<plugin>
|
|
<groupId>com.rackspace.cloud.api</groupId>
|
|
<artifactId>clouddocs-maven-plugin</artifactId>
|
|
<version>1.9.2</version>
|
|
<executions>
|
|
<execution>
|
|
<id>networking-admin-webhelp</id>
|
|
<goals>
|
|
<goal>generate-webhelp</goal>
|
|
</goals>
|
|
<phase>generate-sources</phase>
|
|
<configuration>
|
|
<!-- These parameters only apply to webhelp -->
|
|
<enableDisqus>${comments.enabled}</enableDisqus>
|
|
<useVersionForDisqus>1</useVersionForDisqus>
|
|
<disqusShortname>os-neutron-guides</disqusShortname>
|
|
<enableGoogleAnalytics>1</enableGoogleAnalytics>
|
|
<googleAnalyticsId>UA-17511903-1</googleAnalyticsId>
|
|
<!-- The following elements sets the autonumbering of sections in output for chapter numbers but no numbered sections-->
|
|
<sectionAutolabel>0</sectionAutolabel>
|
|
<tocSectionDepth>1</tocSectionDepth>
|
|
<sectionLabelIncludesComponentLabel>0</sectionLabelIncludesComponentLabel>
|
|
|
|
<webhelpDirname>admin</webhelpDirname>
|
|
<targetDirectory>${basedir}/target/docbkx/webhelp/network-admin</targetDirectory>
|
|
<includeDateInPdfFilename>0</includeDateInPdfFilename>
|
|
<pdfFilenameBase>network-admin-guide</pdfFilenameBase>
|
|
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>cleanup</id>
|
|
<goals>
|
|
<goal>generate-webhelp</goal>
|
|
</goals>
|
|
<phase>generate-sources</phase>
|
|
<configuration>
|
|
<postProcess>
|
|
<delete includeemptydirs="true" verbose="true">
|
|
<fileset dir="${basedir}/target/docbkx/webhelp" >
|
|
<include name="**/*"/>
|
|
<exclude name="network-admin/**"/>
|
|
</fileset>
|
|
</delete>
|
|
</postProcess>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<!-- These parameters apply to pdf and webhelp -->
|
|
<xincludeSupported>true</xincludeSupported>
|
|
<sourceDirectory>.</sourceDirectory>
|
|
<includes>
|
|
bk-networking-admin-guide.xml
|
|
</includes>
|
|
<canonicalUrlBase>http://docs.openstack.org/${release.path.name}/network-admin/admin/content/</canonicalUrlBase>
|
|
<profileSecurity>reviewer</profileSecurity>
|
|
<branding>openstack</branding>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
</build>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>Rackspace Research Repositories</id>
|
|
<activation>
|
|
<activeByDefault>true</activeByDefault>
|
|
</activation>
|
|
<repositories>
|
|
<repository>
|
|
<id>rackspace-research</id>
|
|
<name>Rackspace Research Repository</name>
|
|
<url>http://maven.research.rackspacecloud.com/content/groups/public/</url>
|
|
</repository>
|
|
</repositories>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>rackspace-research</id>
|
|
<name>Rackspace Research Repository</name>
|
|
<url>http://maven.research.rackspacecloud.com/content/groups/public/</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
</profile>
|
|
</profiles>
|
|
|
|
</project>
|