ce28d2e18b
Change-Id: I47eace660c962dceab9a7fbe8c7e54d9d2c25b71
127 lines
4.6 KiB
XML
127 lines
4.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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-block-storage-api-guide</artifactId>
|
|
<version>2.0.0</version>
|
|
<packaging>jar</packaging>
|
|
<name>OpenStack Block Storage Service API Guide v2</name>
|
|
<!-- ################################################ -->
|
|
<!-- USE "mvn clean generate-sources" to run this POM -->
|
|
<!-- ################################################ -->
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<build>
|
|
<sourceDirectory>src</sourceDirectory>
|
|
<plugins>
|
|
|
|
<plugin>
|
|
<groupId>com.rackspace.cloud.api</groupId>
|
|
<artifactId>clouddocs-maven-plugin</artifactId>
|
|
<version>1.13.0</version>
|
|
<executions>
|
|
<execution>
|
|
<id>generate-webhelp</id>
|
|
<goals>
|
|
<goal>generate-webhelp</goal>
|
|
</goals>
|
|
<phase>generate-sources</phase>
|
|
<configuration>
|
|
<!-- These parameters only apply to webhelp -->
|
|
<enableDisqus>1</enableDisqus>
|
|
<disqusShortname>openstackdocs</disqusShortname>
|
|
<enableGoogleAnalytics>1</enableGoogleAnalytics>
|
|
<googleAnalyticsId>UA-17511903-1</googleAnalyticsId>
|
|
<generateToc>
|
|
appendix toc,title
|
|
article/appendix nop
|
|
article toc,title
|
|
book toc,title,figure,table,example,equation
|
|
chapter toc
|
|
section toc
|
|
part toc,title
|
|
preface toc
|
|
qandadiv toc
|
|
qandaset toc
|
|
reference toc,title
|
|
set toc,title
|
|
</generateToc>
|
|
<chapterAutolabel>1</chapterAutolabel>
|
|
<sectionAutolabel>0</sectionAutolabel>
|
|
<tocSectionDepth>1</tocSectionDepth>
|
|
<!-- The following elements sets the autonumbering of sections in output for chapter numbers but no numbered sections-->
|
|
<!--<sectionAutolabel>0</sectionAutolabel>
|
|
<sectionLabelIncludesComponentLabel>0</sectionLabelIncludesComponentLabel>-->
|
|
|
|
<webhelpDirname>2.0</webhelpDirname>
|
|
<targetDirectory>${basedir}/target/docbkx/webhelp/api/openstack-block-storage</targetDirectory>
|
|
<includeDateInPdfFilename>0</includeDateInPdfFilename>
|
|
<pdfFilenameBase>openstack-blockstorage-devguide-2.0</pdfFilenameBase>
|
|
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>cleanup</id>
|
|
<goals>
|
|
<goal>generate-webhelp</goal>
|
|
</goals>
|
|
<phase>generate-sources</phase>
|
|
<configuration>
|
|
<includes>dummy.xml</includes>
|
|
<postProcess>
|
|
<delete includeemptydirs="true" verbose="true">
|
|
<fileset dir="${basedir}/target/docbkx" >
|
|
<include name="**/*"/>
|
|
<exclude name="webhelp/**"/>
|
|
</fileset>
|
|
</delete>
|
|
</postProcess>
|
|
</configuration>
|
|
</execution>
|
|
|
|
</executions>
|
|
<configuration>
|
|
<!-- These parameters apply to pdf and webhelp -->
|
|
<xincludeSupported>true</xincludeSupported>
|
|
<sourceDirectory>src</sourceDirectory>
|
|
<includes>
|
|
openstack-blockstorage-devguide.xml
|
|
</includes>
|
|
<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>
|