54042c1ceb
This change allows NetBeans to show folders in the Projects pane when the pom.xml is opened as a project. Change-Id: Id695693ab24d9f2cdc92320bd0d7cb98c00b2a19
85 lines
3.3 KiB
XML
85 lines
3.3 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">
|
|
<parent>
|
|
<groupId>org.openstack.docs</groupId>
|
|
<artifactId>parent-pom</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>openstack-api-guide</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>OpenStack API Guide</name>
|
|
<properties>
|
|
<!-- This is set by Jenkins according to the branch. -->
|
|
<release.path.name>local</release.path.name>
|
|
<comments.enabled>0</comments.enabled>
|
|
</properties>
|
|
<!-- ################################################ -->
|
|
<!-- USE "mvn clean generate-sources" to run this POM -->
|
|
<!-- ################################################ -->
|
|
<build>
|
|
<!--
|
|
Setting the source and resource directories is not required for building the
|
|
project, but it provides certain IDEs with information necessary to show the
|
|
proper folder structure when the pom.xml is opened as a project.
|
|
-->
|
|
<sourceDirectory>.</sourceDirectory>
|
|
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>com.rackspace.cloud.api</groupId>
|
|
<artifactId>clouddocs-maven-plugin</artifactId>
|
|
<!-- version is set in ../pom.xml file -->
|
|
<executions>
|
|
<!-- Configuration for OpenStack API Guide -->
|
|
<execution>
|
|
<id>os-api-guide</id>
|
|
<goals>
|
|
<goal>generate-webhelp</goal>
|
|
</goals>
|
|
<phase>generate-sources</phase>
|
|
<configuration>
|
|
<includes> bk-api-guide.xml</includes>
|
|
<generateToc>
|
|
appendix toc,title
|
|
article/appendix nop
|
|
article toc,title
|
|
book toc,title,figure,table,example,equation
|
|
chapter toc,title
|
|
section toc
|
|
part toc,title
|
|
qandadiv toc
|
|
qandaset toc
|
|
reference toc,title
|
|
set toc,title
|
|
</generateToc>
|
|
<targetDirectory>target/docbkx/webhelp</targetDirectory>
|
|
<webhelpDirname>api-guide</webhelpDirname>
|
|
<pdfFilenameBase>api-guide</pdfFilenameBase>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<chapterAutolabel>1</chapterAutolabel>
|
|
<sectionAutolabel>0</sectionAutolabel>
|
|
<tocSectionDepth>1</tocSectionDepth>
|
|
<formalProcedures>0</formalProcedures>
|
|
<highlightSource>false</highlightSource>
|
|
<xincludeSupported>true</xincludeSupported>
|
|
<showXslMessages>true</showXslMessages>
|
|
<sourceDirectory>.</sourceDirectory>
|
|
<security>external</security>
|
|
<branding>openstack</branding>
|
|
<enableDisqus>${comments.enabled}</enableDisqus>
|
|
<disqusShortname>os-api-guide</disqusShortname>
|
|
<enableGoogleAnalytics>1</enableGoogleAnalytics>
|
|
<googleAnalyticsId>UA-17511903-1</googleAnalyticsId>
|
|
<suppressFooterNavigation>0</suppressFooterNavigation>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|