
Closes-Bug: #1253756 backport: havana Change-Id: I4e2a731b09a3795b919003af513fb0c8fd5ea25a author: diane fleming
59 lines
2.3 KiB
XML
59 lines
2.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/xsd/maven-4.0.0.xsd">
|
|
<!-- POM Build file for api.openstack.org/api-ref.html -->
|
|
<!-- ################################################ -->
|
|
<!-- USE "mvn clean generate-sources" to run this POM -->
|
|
<!-- ################################################ -->
|
|
<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-ref</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>OpenStack API Complete Reference</name>
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>com.rackspace.cloud.api</groupId>
|
|
<artifactId>clouddocs-maven-plugin</artifactId>
|
|
<!-- version is set in ../pom.xml file -->
|
|
<executions>
|
|
<execution>
|
|
<id>g1</id>
|
|
<goals>
|
|
<goal>generate-html</goal>
|
|
</goals>
|
|
<phase>generate-sources</phase>
|
|
<configuration>
|
|
<highlightSource>false</highlightSource>
|
|
<enableGoogleAnalytics>1</enableGoogleAnalytics>
|
|
<googleAnalyticsId>UA-17511903-1</googleAnalyticsId>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<!-- These parameters apply to pdf and webhelp -->
|
|
<xincludeSupported>true</xincludeSupported>
|
|
<sourceDirectory>src/docbkx</sourceDirectory>
|
|
<includes> api-ref.xml, api-ref-identity.xml,
|
|
api-ref-compute.xml, api-ref-image.xml,
|
|
api-ref-networking.xml, api-ref-objectstorage.xml,
|
|
api-ref-blockstorage.xml, api-ref-orchestration.xml,
|
|
api-ref-metering.xml </includes>
|
|
<profileSecurity>reviewer</profileSecurity>
|
|
<branding>openstack</branding>
|
|
<trimWadlUriCount>1</trimWadlUriCount>
|
|
<showXslMessages>true</showXslMessages>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|