Create parent pom that contains clouddoc-mvn-plugin version and profiles

Closes-Bug: #1235448

Change-Id: I9955aa261bb90ff48e524cde06d122c4ba905df8
author: diane fleming
This commit is contained in:
Diane Fleming 2013-10-05 09:27:19 -05:00 committed by Andreas Jaeger
parent 0645cdb67d
commit 909cb7ee84
11 changed files with 614 additions and 796 deletions

View File

@ -1,115 +1,93 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" <project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion> <parent>
<groupId>org.openstack.docs</groupId> <groupId>org.openstack.docs</groupId>
<artifactId>openstack-guide</artifactId> <artifactId>parent-pom</artifactId>
<version>1.0.0-SNAPSHOT</version> <version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging> <relativePath>../pom.xml</relativePath>
<name>OpenStack Administrator Guide</name> </parent>
<properties> <modelVersion>4.0.0</modelVersion>
<!-- This is set by Jenkins according to the branch. --> <artifactId>openstack-admin-guide-cloud</artifactId>
<release.path.name></release.path.name> <packaging>jar</packaging>
<comments.enabled>1</comments.enabled> <name>OpenStack Cloud Administrator Guide</name>
</properties> <properties>
<!-- ################################################ --> <!-- This is set by Jenkins according to the branch. -->
<!-- USE "mvn clean generate-sources" to run this POM --> <release.path.name></release.path.name>
<!-- ################################################ --> <comments.enabled>1</comments.enabled>
<profiles> </properties>
<profile> <!-- ################################################ -->
<id>Rackspace Research Repositories</id> <!-- USE "mvn clean generate-sources" to run this POM -->
<activation> <!-- ################################################ -->
<activeByDefault>true</activeByDefault> <build>
</activation> <plugins>
<repositories> <plugin>
<repository> <groupId>com.rackspace.cloud.api</groupId>
<id>rackspace-research</id> <artifactId>clouddocs-maven-plugin</artifactId>
<name>Rackspace Research Repository</name> <!-- version set in ../pom.xml -->
<url>http://maven.research.rackspacecloud.com/content/groups/public/</url> <executions>
</repository> <execution>
</repositories> <id>goal1</id>
<pluginRepositories> <goals>
<pluginRepository> <goal>generate-pdf</goal>
<id>rackspace-research</id> </goals>
<name>Rackspace Research Repository</name> <phase>generate-sources</phase>
<url>http://maven.research.rackspacecloud.com/content/groups/public/</url> <configuration>
</pluginRepository> <highlightSource>false</highlightSource>
</pluginRepositories> <!-- The following elements sets the autonumbering of sections in output for chapter numbers but no numbered sections-->
</profile> <sectionAutolabel>0</sectionAutolabel>
</profiles> <tocSectionDepth>1</tocSectionDepth>
<build> <sectionLabelIncludesComponentLabel>0</sectionLabelIncludesComponentLabel>
<plugins> </configuration>
<plugin> </execution>
<groupId>com.rackspace.cloud.api</groupId> <execution>
<artifactId>clouddocs-maven-plugin</artifactId> <id>goal2</id>
<version>1.10.0</version> <goals>
<executions> <goal>generate-webhelp</goal>
<execution> </goals>
<id>goal1</id> <phase>generate-sources</phase>
<goals> <configuration>
<goal>generate-pdf</goal> <!-- These parameters only apply to webhelp -->
</goals> <enableDisqus>${comments.enabled}</enableDisqus>
<phase>generate-sources</phase> <disqusShortname>os-cloud-admin-guide</disqusShortname>
<configuration> <enableGoogleAnalytics>1</enableGoogleAnalytics>
<highlightSource>false</highlightSource> <googleAnalyticsId>UA-17511903-1</googleAnalyticsId>
<!-- The following elements sets the autonumbering of sections in output for chapter numbers but no numbered sections--> <generateToc>
<sectionAutolabel>0</sectionAutolabel> appendix toc,title
<tocSectionDepth>1</tocSectionDepth> article/appendix nop
<sectionLabelIncludesComponentLabel>0</sectionLabelIncludesComponentLabel> article toc,title
</configuration> book toc,title,figure,table,example,equation
</execution> chapter toc,title
<execution> section toc
<id>goal2</id> part toc,title
<goals> qandadiv toc
<goal>generate-webhelp</goal> qandaset toc
</goals> reference toc,title
<phase>generate-sources</phase> set toc,title
<configuration> </generateToc>
<!-- These parameters only apply to webhelp --> <!-- The following elements sets the autonumbering of sections in output for chapter numbers but no numbered sections-->
<enableDisqus>${comments.enabled}</enableDisqus> <sectionAutolabel>0</sectionAutolabel>
<disqusShortname>os-cloud-admin-guide</disqusShortname> <tocSectionDepth>1</tocSectionDepth>
<enableGoogleAnalytics>1</enableGoogleAnalytics> <sectionLabelIncludesComponentLabel>0</sectionLabelIncludesComponentLabel>
<googleAnalyticsId>UA-17511903-1</googleAnalyticsId> <targetDirectory>${basedir}/target/docbkx/webhelp/admin-guide-cloud</targetDirectory>
<generateToc> <webhelpDirname>/</webhelpDirname>
appendix toc,title <pdfFilenameBase>bk-admin-guide-cloud-latest</pdfFilenameBase>
article/appendix nop </configuration>
article toc,title </execution>
book toc,title,figure,table,example,equation </executions>
chapter toc,title <configuration>
section toc <!-- These parameters apply to pdf and webhelp -->
part toc,title <xincludeSupported>true</xincludeSupported>
qandadiv toc <sourceDirectory>.</sourceDirectory>
qandaset toc <includes>
reference toc,title bk-admin-guide-cloud.xml
set toc,title </includes>
</generateToc> <canonicalUrlBase>http://docs.openstack.org/admin-guide-cloud/content/</canonicalUrlBase>
<!-- The following elements sets the autonumbering of sections in output for chapter numbers but no numbered sections--> <profileSecurity>reviewer</profileSecurity>
<sectionAutolabel>0</sectionAutolabel> <branding>openstack</branding>
<tocSectionDepth>1</tocSectionDepth> <strictImageValidation>false</strictImageValidation>
<sectionLabelIncludesComponentLabel>0</sectionLabelIncludesComponentLabel> </configuration>
<targetDirectory>${basedir}/target/docbkx/webhelp/admin-guide-cloud</targetDirectory> </plugin>
<webhelpDirname>/</webhelpDirname> </plugins>
<pdfFilenameBase>bk-admin-guide-cloud-latest</pdfFilenameBase> </build>
<postProcess> </project>
<!--Deletes leftover uneeded directories -->
<!--<delete dir="${basedir}/target/docbkx/webhelp/bk-admin-guide-cloud"/>-->
</postProcess>
</configuration>
</execution>
</executions>
<configuration>
<!-- These parameters apply to pdf and webhelp -->
<xincludeSupported>true</xincludeSupported>
<sourceDirectory>.</sourceDirectory>
<includes>
bk-admin-guide-cloud.xml
</includes>
<canonicalUrlBase>http://docs.openstack.org/admin-guide-cloud/content/</canonicalUrlBase>
<profileSecurity>reviewer</profileSecurity>
<branding>openstack</branding>
<strictImageValidation>false</strictImageValidation>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -1,115 +1,93 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" <project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion> <parent>
<groupId>org.openstack.docs</groupId> <groupId>org.openstack.docs</groupId>
<artifactId>openstack-guide</artifactId> <artifactId>parent-pom</artifactId>
<version>1.0.0-SNAPSHOT</version> <version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging> <relativePath>../pom.xml</relativePath>
<name>OpenStack Configuration Reference</name> </parent>
<properties> <modelVersion>4.0.0</modelVersion>
<!-- This is set by Jenkins according to the branch. --> <artifactId>openstack-config-reference</artifactId>
<release.path.name>local</release.path.name> <packaging>jar</packaging>
<comments.enabled>1</comments.enabled> <name>OpenStack Configuration Reference</name>
</properties> <properties>
<!-- ################################################ --> <!-- This is set by Jenkins according to the branch. -->
<!-- USE "mvn clean generate-sources" to run this POM --> <release.path.name>local</release.path.name>
<!-- ################################################ --> <comments.enabled>1</comments.enabled>
<profiles> </properties>
<profile> <!-- ################################################ -->
<id>Rackspace Research Repositories</id> <!-- USE "mvn clean generate-sources" to run this POM -->
<activation> <!-- ################################################ -->
<activeByDefault>true</activeByDefault> <build>
</activation> <plugins>
<repositories> <plugin>
<repository> <groupId>com.rackspace.cloud.api</groupId>
<id>rackspace-research</id> <artifactId>clouddocs-maven-plugin</artifactId>
<name>Rackspace Research Repository</name> <!-- version is set in ../pom.xml file -->
<url>http://maven.research.rackspacecloud.com/content/groups/public/</url> <executions>
</repository> <execution>
</repositories> <id>goal1</id>
<pluginRepositories> <goals>
<pluginRepository> <goal>generate-pdf</goal>
<id>rackspace-research</id> </goals>
<name>Rackspace Research Repository</name> <phase>generate-sources</phase>
<url>http://maven.research.rackspacecloud.com/content/groups/public/</url> <configuration>
</pluginRepository> <highlightSource>false</highlightSource>
</pluginRepositories> <!-- The following elements sets the autonumbering of sections in output for chapter numbers but no numbered sections-->
</profile> <sectionAutolabel>0</sectionAutolabel>
</profiles> <tocSectionDepth>1</tocSectionDepth>
<build> <sectionLabelIncludesComponentLabel>0</sectionLabelIncludesComponentLabel>
<plugins> </configuration>
<plugin> </execution>
<groupId>com.rackspace.cloud.api</groupId> <execution>
<artifactId>clouddocs-maven-plugin</artifactId> <id>goal2</id>
<version>1.10.0</version> <goals>
<executions> <goal>generate-webhelp</goal>
<execution> </goals>
<id>goal1</id> <phase>generate-sources</phase>
<goals> <configuration>
<goal>generate-pdf</goal> <!-- These parameters only apply to webhelp -->
</goals> <enableDisqus>${comments.enabled}</enableDisqus>
<phase>generate-sources</phase> <disqusShortname>os-config-guide</disqusShortname>
<configuration> <enableGoogleAnalytics>1</enableGoogleAnalytics>
<highlightSource>false</highlightSource> <googleAnalyticsId>UA-17511903-1</googleAnalyticsId>
<!-- The following elements sets the autonumbering of sections in output for chapter numbers but no numbered sections--> <generateToc>
<sectionAutolabel>0</sectionAutolabel> appendix toc,title
<tocSectionDepth>1</tocSectionDepth> article/appendix nop
<sectionLabelIncludesComponentLabel>0</sectionLabelIncludesComponentLabel> article toc,title
</configuration> book toc,title,figure,table,example,equation
</execution> chapter toc,title
<execution> section toc
<id>goal2</id> part toc,title
<goals> qandadiv toc
<goal>generate-webhelp</goal> qandaset toc
</goals> reference toc,title
<phase>generate-sources</phase> set toc,title
<configuration> </generateToc>
<!-- These parameters only apply to webhelp --> <!-- The following elements sets the autonumbering of sections in output for chapter numbers but no numbered sections-->
<enableDisqus>${comments.enabled}</enableDisqus> <sectionAutolabel>0</sectionAutolabel>
<disqusShortname>os-config-guide</disqusShortname> <tocSectionDepth>1</tocSectionDepth>
<enableGoogleAnalytics>1</enableGoogleAnalytics> <sectionLabelIncludesComponentLabel>0</sectionLabelIncludesComponentLabel>
<googleAnalyticsId>UA-17511903-1</googleAnalyticsId> <targetDirectory>${basedir}/target/docbkx/webhelp/${release.path.name}/config-reference</targetDirectory>
<generateToc> <webhelpDirname>/</webhelpDirname>
appendix toc,title <pdfFilenameBase>bk-config-guide-${release.path.name}</pdfFilenameBase>
article/appendix nop </configuration>
article toc,title </execution>
book toc,title,figure,table,example,equation </executions>
chapter toc,title <configuration>
section toc <!-- These parameters apply to pdf and webhelp -->
part toc,title <xincludeSupported>true</xincludeSupported>
qandadiv toc <sourceDirectory>.</sourceDirectory>
qandaset toc <includes>
reference toc,title bk-config-ref.xml
set toc,title </includes>
</generateToc> <canonicalUrlBase>http://docs.openstack.org/${release.path.name}/config-reference/content/</canonicalUrlBase>
<!-- The following elements sets the autonumbering of sections in output for chapter numbers but no numbered sections--> <profileSecurity>reviewer</profileSecurity>
<sectionAutolabel>0</sectionAutolabel> <branding>openstack</branding>
<tocSectionDepth>1</tocSectionDepth> <strictImageValidation>false</strictImageValidation>
<sectionLabelIncludesComponentLabel>0</sectionLabelIncludesComponentLabel> </configuration>
<targetDirectory>${basedir}/target/docbkx/webhelp/${release.path.name}/config-reference</targetDirectory> </plugin>
<webhelpDirname>/</webhelpDirname> </plugins>
<pdfFilenameBase>bk-config-guide-${release.path.name}</pdfFilenameBase> </build>
<postProcess> </project>
<!--Deletes leftover uneeded directories -->
<!--<delete dir="${basedir}/target/docbkx/webhelp/bk-block-storage-adminguide"/>-->
</postProcess>
</configuration>
</execution>
</executions>
<configuration>
<!-- These parameters apply to pdf and webhelp -->
<xincludeSupported>true</xincludeSupported>
<sourceDirectory>.</sourceDirectory>
<includes>
bk-config-ref.xml
</includes>
<canonicalUrlBase>http://docs.openstack.org/${release.path.name}/config-reference/content/</canonicalUrlBase>
<profileSecurity>reviewer</profileSecurity>
<branding>openstack</branding>
<strictImageValidation>false</strictImageValidation>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -1,16 +1,15 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" <project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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"> 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> <modelVersion>4.0.0</modelVersion>
<artifactId>openstack-glossary</artifactId>
<groupId>org.openstack.docs</groupId>
<artifactId>openstack-guide</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>OpenStack Glossary</name> <name>OpenStack Glossary</name>
<properties> <properties>
<!-- This is set by Jenkins according to the branch. --> <!-- This is set by Jenkins according to the branch. -->
<release.path.name>local</release.path.name> <release.path.name>local</release.path.name>
@ -18,29 +17,6 @@
<!-- ################################################ --> <!-- ################################################ -->
<!-- USE "mvn clean generate-sources" to run this POM --> <!-- USE "mvn clean generate-sources" to run this POM -->
<!-- ################################################ --> <!-- ################################################ -->
<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>
<build> <build>
<resources> <resources>
<resource> <resource>
@ -51,11 +27,10 @@
</resource> </resource>
</resources> </resources>
<plugins> <plugins>
<plugin> <plugin>
<groupId>com.rackspace.cloud.api</groupId> <groupId>com.rackspace.cloud.api</groupId>
<artifactId>clouddocs-maven-plugin</artifactId> <artifactId>clouddocs-maven-plugin</artifactId>
<version>1.10.0</version> <!-- version is set in ../pom.xml file -->
<executions> <executions>
<execution> <execution>
<id>goal1</id> <id>goal1</id>
@ -82,19 +57,6 @@
<disqusShortname>openstackdocs</disqusShortname> <disqusShortname>openstackdocs</disqusShortname>
<enableGoogleAnalytics>1</enableGoogleAnalytics> <enableGoogleAnalytics>1</enableGoogleAnalytics>
<googleAnalyticsId>UA-17511903-1</googleAnalyticsId> <googleAnalyticsId>UA-17511903-1</googleAnalyticsId>
<!--<generateToc>
appendix toc,title
article/appendix nop
article toc,title
book title,figure,table,example,equation
chapter toc,title
part toc,title
preface toc,title
qandadiv toc
qandaset toc
reference toc,title
set toc,title
</generateToc>-->
<!-- The following elements sets the autonumbering of sections in output for chapter numbers but no numbered sections--> <!-- The following elements sets the autonumbering of sections in output for chapter numbers but no numbered sections-->
<webhelpIncludeSearchTab>false</webhelpIncludeSearchTab> <webhelpIncludeSearchTab>false</webhelpIncludeSearchTab>
<chapterAutolabel>0</chapterAutolabel> <chapterAutolabel>0</chapterAutolabel>

View File

@ -1,120 +1,92 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" <project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion> <parent>
<groupId>org.openstack.docs</groupId> <groupId>org.openstack.docs</groupId>
<artifactId>openstack-guide</artifactId> <artifactId>parent-pom</artifactId>
<version>1.0.0-SNAPSHOT</version> <version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging> <relativePath>../pom.xml</relativePath>
<name>OpenStack Guides</name> </parent>
<modelVersion>4.0.0</modelVersion>
<properties> <artifactId>openstack-high-availability-guide</artifactId>
<!-- This is set by Jenkins according to the branch. --> <packaging>jar</packaging>
<release.path.name>trunk</release.path.name> <name>OpenStack High Availability Guide</name>
<comments.enabled>1</comments.enabled> <properties>
</properties> <!-- This is set by Jenkins according to the branch. -->
<!-- ################################################ --> <release.path.name>trunk</release.path.name>
<!-- USE "mvn clean generate-sources" to run this POM --> <comments.enabled>1</comments.enabled>
<!-- ################################################ --> </properties>
<!-- ################################################ -->
<build> <!-- USE "mvn clean generate-sources" to run this POM -->
<plugins> <!-- ################################################ -->
<plugin> <build>
<groupId>com.rackspace.cloud.api</groupId> <plugins>
<artifactId>clouddocs-maven-plugin</artifactId> <plugin>
<version>1.10.0</version> <groupId>com.rackspace.cloud.api</groupId>
<executions> <artifactId>clouddocs-maven-plugin</artifactId>
<execution> <!-- version is set in ../pom.xml file -->
<id>generate-webhelp</id> <executions>
<goals> <execution>
<goal>generate-webhelp</goal> <id>generate-pdf</id>
</goals> <goals>
<phase>generate-sources</phase> <goal>generate-pdf</goal>
<configuration> </goals>
<!-- These parameters only apply to webhelp --> <phase>generate-sources</phase>
<enableDisqus>${comments.enabled}</enableDisqus> <configuration>
<disqusShortname>openstack-ha-guide</disqusShortname> <highlightSource>false</highlightSource>
<enableGoogleAnalytics>1</enableGoogleAnalytics> <!-- The following elements sets the autonumbering of sections in output for chapter numbers but no numbered sections-->
<googleAnalyticsId>UA-17511903-1</googleAnalyticsId> <sectionAutolabel>0</sectionAutolabel>
<generateToc> <tocSectionDepth>1</tocSectionDepth>
appendix toc,title <sectionLabelIncludesComponentLabel>0</sectionLabelIncludesComponentLabel>
article/appendix nop </configuration>
article toc,title </execution>
book title,figure,table,example,equation <execution>
chapter toc,title <id>generate-webhelp</id>
part toc,title <goals>
preface toc,title <goal>generate-webhelp</goal>
qandadiv toc </goals>
qandaset toc <phase>generate-sources</phase>
reference toc,title <configuration>
set toc,title <!-- These parameters only apply to webhelp -->
</generateToc> <enableDisqus>${comments.enabled}</enableDisqus>
<!-- The following elements sets the autonumbering of sections in output for chapter numbers but no numbered sections--> <disqusShortname>openstack-ha-guide</disqusShortname>
<sectionAutolabel>0</sectionAutolabel> <enableGoogleAnalytics>1</enableGoogleAnalytics>
<sectionLabelIncludesComponentLabel>0</sectionLabelIncludesComponentLabel> <googleAnalyticsId>UA-17511903-1</googleAnalyticsId>
<generateToc>
<webhelpDirname>high-availability-guide</webhelpDirname> appendix toc,title
<targetDirectory>${basedir}/target/docbkx/webhelp</targetDirectory> article/appendix nop
<includeDateInPdfFilename>0</includeDateInPdfFilename> article toc,title
<pdfFilenameBase>high-availability-guide</pdfFilenameBase> book toc,title,figure,table,example,equation
chapter toc,title
</configuration> section toc
</execution> part toc,title
<execution> qandadiv toc
<id>cleanup</id> qandaset toc
<goals> reference toc,title
<goal>generate-webhelp</goal> set toc,title
</goals> </generateToc>
<phase>generate-sources</phase> <!-- The following elements sets the autonumbering of sections in output for chapter numbers but no numbered sections-->
<configuration> <sectionAutolabel>0</sectionAutolabel>
<includes>dummy.xml</includes> <sectionLabelIncludesComponentLabel>0</sectionLabelIncludesComponentLabel>
<postProcess> <webhelpDirname>high-availability-guide</webhelpDirname>
<delete includeemptydirs="true" verbose="true"> <targetDirectory>${basedir}/target/docbkx/webhelp</targetDirectory>
<fileset dir="${basedir}/target/docbkx/webhelp" > <includeDateInPdfFilename>0</includeDateInPdfFilename>
<include name="**/*"/> <pdfFilenameBase>high-availability-guide</pdfFilenameBase>
<exclude name="high-availability-guide/**"/> </configuration>
</fileset> </execution>
</delete> </executions>
</postProcess> <configuration>
</configuration> <!-- These parameters apply to pdf and webhelp -->
</execution> <xincludeSupported>true</xincludeSupported>
</executions> <sourceDirectory>.</sourceDirectory>
<configuration> <includes>
<!-- These parameters apply to pdf and webhelp --> bk-ha-guide.xml
<xincludeSupported>true</xincludeSupported> </includes>
<sourceDirectory>.</sourceDirectory> <canonicalUrlBase>http://docs.openstack.org/high-availability-guide/content/</canonicalUrlBase>
<includes> <profileSecurity>reviewer</profileSecurity>
bk-ha-guide.xml <branding>openstack</branding>
</includes> </configuration>
<canonicalUrlBase>http://docs.openstack.org/high-availability-guide/content/</canonicalUrlBase> </plugin>
<profileSecurity>reviewer</profileSecurity> </plugins>
<branding>openstack</branding> </build>
</configuration> </project>
</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>

View File

@ -1,124 +1,98 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" <project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<modelVersion>4.0.0</modelVersion> <groupId>org.openstack.docs</groupId>
<artifactId>parent-pom</artifactId>
<groupId>org.openstack.docs</groupId> <version>1.0.0-SNAPSHOT</version>
<artifactId>openstack-guide</artifactId> <relativePath>../pom.xml</relativePath>
<version>1.0.0-SNAPSHOT</version> </parent>
<packaging>jar</packaging> <modelVersion>4.0.0</modelVersion>
<name>OpenStack Guides</name> <artifactId>openstack-image-guide</artifactId>
<packaging>jar</packaging>
<properties> <name>OpenStack Virtual Machine Image Guide</name>
<!-- This is set by Jenkins according to the branch. --> <properties>
<release.path.name>local</release.path.name> <!-- This is set by Jenkins according to the branch. -->
<comments.enabled>1</comments.enabled> <release.path.name>local</release.path.name>
</properties> <comments.enabled>1</comments.enabled>
<!-- ################################################ --> </properties>
<!-- USE "mvn clean generate-sources" to run this POM --> <!-- ################################################ -->
<!-- ################################################ --> <!-- USE "mvn clean generate-sources" to run this POM -->
<!-- ################################################ -->
<build> <build>
<plugins> <plugins>
<plugin>
<plugin> <groupId>com.rackspace.cloud.api</groupId>
<groupId>com.rackspace.cloud.api</groupId> <artifactId>clouddocs-maven-plugin</artifactId>
<artifactId>clouddocs-maven-plugin</artifactId> <!-- version is set in ../pom.xml file -->
<version>1.10.0</version> <executions>
<executions> <execution>
<execution> <id>generate-webhelp</id>
<id>generate-webhelp</id> <goals>
<goals> <goal>generate-webhelp</goal>
<goal>generate-webhelp</goal> </goals>
</goals> <phase>generate-sources</phase>
<phase>generate-sources</phase> <configuration>
<configuration> <!-- These parameters only apply to webhelp -->
<!-- These parameters only apply to webhelp --> <enableDisqus>${comments.enabled}</enableDisqus>
<enableDisqus>${comments.enabled}</enableDisqus> <disqusShortname>os-image-guide</disqusShortname>
<disqusShortname>os-image-guide</disqusShortname> <enableGoogleAnalytics>1</enableGoogleAnalytics>
<enableGoogleAnalytics>1</enableGoogleAnalytics> <googleAnalyticsId>UA-17511903-1</googleAnalyticsId>
<googleAnalyticsId>UA-17511903-1</googleAnalyticsId> <generateToc>
<generateToc> appendix toc,title
appendix toc,title article/appendix nop
article/appendix nop article toc,title
article toc,title book toc,title,figure,table,example,equation
book toc,title,figure,table,example,equation chapter toc
chapter toc section toc
section toc part toc
part toc preface toc
preface toc qandadiv toc
qandadiv toc qandaset toc
qandaset toc reference toc,title
reference toc,title set toc,title
set toc,title </generateToc>
</generateToc> <!-- The following elements sets the autonumbering of sections in output for chapter numbers but no numbered sections-->
<!-- The following elements sets the autonumbering of sections in output for chapter numbers but no numbered sections--> <sectionAutolabel>0</sectionAutolabel>
<sectionAutolabel>0</sectionAutolabel> <formalProcedures>0</formalProcedures>
<formalProcedures>0</formalProcedures> <tocSectionDepth>1</tocSectionDepth>
<tocSectionDepth>1</tocSectionDepth> <tocChapterDepth>1</tocChapterDepth>
<tocChapterDepth>1</tocChapterDepth> <sectionLabelIncludesComponentLabel>0</sectionLabelIncludesComponentLabel>
<sectionLabelIncludesComponentLabel>0</sectionLabelIncludesComponentLabel> <targetDirectory>target/docbkx/webhelp/</targetDirectory>
<targetDirectory>target/docbkx/webhelp/</targetDirectory> <webhelpDirname>image-guide</webhelpDirname>
<webhelpDirname>image-guide</webhelpDirname> <pdfFilenameBase>image-guide</pdfFilenameBase>
<pdfFilenameBase>image-guide</pdfFilenameBase> </configuration>
</configuration> </execution>
</execution> <execution>
<execution> <id>cleanup</id>
<id>cleanup</id> <goals>
<goals> <goal>generate-webhelp</goal>
<goal>generate-webhelp</goal> </goals>
</goals> <phase>generate-sources</phase>
<phase>generate-sources</phase> <configuration>
<configuration> <includes>dummy.xml</includes>
<includes>dummy.xml</includes> <postProcess>
<postProcess> <delete includeemptydirs="true">
<delete includeemptydirs="true"> <fileset dir="${basedir}/target/docbkx/webhelp" >
<fileset dir="${basedir}/target/docbkx/webhelp" > <include name="**/*"/>
<include name="**/*"/> <exclude name="image-guide/**"/>
<exclude name="image-guide/**"/> </fileset>
</fileset> </delete>
</delete> </postProcess>
</postProcess> </configuration>
</configuration> </execution>
</execution> </executions>
</executions> <configuration>
<configuration> <!-- These parameters apply to pdf and webhelp -->
<!-- These parameters apply to pdf and webhelp --> <xincludeSupported>true</xincludeSupported>
<xincludeSupported>true</xincludeSupported> <sourceDirectory>.</sourceDirectory>
<sourceDirectory>.</sourceDirectory> <includes>
<includes> bk-imageguide.xml
bk-imageguide.xml </includes>
</includes> <profileSecurity>reviewer</profileSecurity>
<profileSecurity>reviewer</profileSecurity> <branding>openstack</branding>
<branding>openstack</branding> </configuration>
</plugin>
</configuration> </plugins>
</plugin> </build>
</project>
</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>

View File

@ -1,127 +1,102 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" <project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<modelVersion>4.0.0</modelVersion> <groupId>org.openstack.docs</groupId>
<artifactId>parent-pom</artifactId>
<groupId>org.openstack.docs</groupId> <version>1.0.0-SNAPSHOT</version>
<artifactId>openstack-guide</artifactId> <relativePath>../pom.xml</relativePath>
<version>1.0.0-SNAPSHOT</version> </parent>
<packaging>jar</packaging> <modelVersion>4.0.0</modelVersion>
<name>OpenStack Guides</name> <artifactId>openstack-install-guide</artifactId>
<packaging>jar</packaging>
<properties> <name>OpenStack Installation Guide</name>
<!-- This is set by Jenkins according to the branch. --> <properties>
<release.path.name>local</release.path.name> <!-- This is set by Jenkins according to the branch. -->
<comments.enabled>1</comments.enabled> <release.path.name>local</release.path.name>
<operating.system>yum</operating.system> <comments.enabled>1</comments.enabled>
<!-- This is set by Jenkins to run twice for each similar operating system group --> <operating.system>yum</operating.system>
<profile.os>rhel;centos;fedora</profile.os> <!-- This is set by Jenkins to run twice for each similar operating system group -->
</properties> <profile.os>rhel;centos;fedora</profile.os>
<!-- ################################################ --> </properties>
<!-- USE "mvn clean generate-sources" to run this POM --> <!-- ################################################ -->
<!-- ################################################ --> <!-- USE "mvn clean generate-sources" to run this POM -->
<!-- ################################################ -->
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>com.rackspace.cloud.api</groupId> <groupId>com.rackspace.cloud.api</groupId>
<artifactId>clouddocs-maven-plugin</artifactId> <artifactId>clouddocs-maven-plugin</artifactId>
<version>1.10.0</version> <!-- version is set in ../pom.xml file -->
<executions>
<executions> <execution>
<execution> <id>generate-webhelp</id>
<id>generate-webhelp</id> <goals>
<goals> <goal>generate-webhelp</goal>
<goal>generate-webhelp</goal> </goals>
</goals> <phase>generate-sources</phase>
<phase>generate-sources</phase> <configuration>
<configuration> <!-- These parameters only apply to webhelp -->
<!-- These parameters only apply to webhelp --> <enableDisqus>${comments.enabled}</enableDisqus>
<enableDisqus>${comments.enabled}</enableDisqus> <disqusShortname>os-install-${operating.system}</disqusShortname>
<disqusShortname>os-install-${operating.system}</disqusShortname> <enableGoogleAnalytics>1</enableGoogleAnalytics>
<enableGoogleAnalytics>1</enableGoogleAnalytics> <googleAnalyticsId>UA-17511903-1</googleAnalyticsId>
<googleAnalyticsId>UA-17511903-1</googleAnalyticsId> <generateToc>
<generateToc> appendix toc,title
appendix toc,title article/appendix nop
article/appendix nop article toc,title
article toc,title book toc,title,figure,table,example,equation
book toc,title,figure,table,example,equation chapter toc,title
chapter toc section toc
section toc part toc,title
part toc qandadiv toc
preface toc qandaset toc
qandadiv toc reference toc,title
qandaset toc set toc,title
reference toc,title </generateToc>
set toc,title <!-- The following elements sets the autonumbering of sections in output for chapter numbers but no numbered sections-->
</generateToc> <chapterAutolabel>0</chapterAutolabel>
<!-- The following elements sets the autonumbering of sections in output for chapter numbers but no numbered sections--> <appendixAutolabel>0</appendixAutolabel>
<chapterAutolabel>0</chapterAutolabel> <sectionAutolabel>0</sectionAutolabel>
<appendixAutolabel>0</appendixAutolabel> <tocSectionDepth>1</tocSectionDepth>
<sectionAutolabel>0</sectionAutolabel> <formalProcedures>0</formalProcedures>
<tocSectionDepth>1</tocSectionDepth> <webhelpDirname>${operating.system}</webhelpDirname>
<formalProcedures>0</formalProcedures> <targetDirectory>${basedir}/target/docbkx/webhelp/${release.path.name}/install-guide/install</targetDirectory>
<webhelpDirname>${operating.system}</webhelpDirname> <includeDateInPdfFilename>0</includeDateInPdfFilename>
<targetDirectory>${basedir}/target/docbkx/webhelp/${release.path.name}/install-guide/install</targetDirectory> <pdfFilenameBase>openstack-install-guide-${operating.system}-${release.path.name}</pdfFilenameBase>
<includeDateInPdfFilename>0</includeDateInPdfFilename> </configuration>
<pdfFilenameBase>openstack-install-guide-${operating.system}-${release.path.name}</pdfFilenameBase> </execution>
<execution>
</configuration> <id>cleanup</id>
</execution> <goals>
<execution> <goal>generate-webhelp</goal>
<id>cleanup</id> </goals>
<goals> <phase>generate-sources</phase>
<goal>generate-webhelp</goal> <configuration>
</goals> <includes>dummy.xml</includes>
<phase>generate-sources</phase> <postProcess>
<configuration> <delete includeemptydirs="true" verbose="true">
<includes>dummy.xml</includes> <fileset dir="${basedir}/target/docbkx/webhelp/${release.path.name}" >
<postProcess> <include name="**/*"/>
<delete includeemptydirs="true" verbose="true"> <exclude name="install-guide/install/**"/>
<fileset dir="${basedir}/target/docbkx/webhelp/${release.path.name}" > </fileset>
<include name="**/*"/> </delete>
<exclude name="install-guide/install/**"/> </postProcess>
</fileset> </configuration>
</delete> </execution>
</postProcess> </executions>
</configuration> <configuration>
</execution> <!-- These parameters apply to pdf and webhelp -->
</executions> <xincludeSupported>true</xincludeSupported>
<configuration> <sourceDirectory>.</sourceDirectory>
<!-- These parameters apply to pdf and webhelp --> <includes>
<xincludeSupported>true</xincludeSupported> bk_openstackinstallguide.xml
<sourceDirectory>.</sourceDirectory> </includes>
<includes> <profileSecurity>reviewer</profileSecurity>
bk_openstackinstallguide.xml <branding>openstack</branding>
</includes> <profileOs>${profile.os}</profileOs>
<profileSecurity>reviewer</profileSecurity> </configuration>
<branding>openstack</branding> </plugin>
<profileOs>${profile.os}</profileOs> </plugins>
</configuration> </build>
</plugin> </project>
</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>

54
doc/pom.xml Normal file
View File

@ -0,0 +1,54 @@
<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>parent-pom</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>admin-guide-cloud</module>
<module>config-reference</module>
<module>glossary</module>
<module>high-availability-guide</module>
<module>image-guide</module>
<module>install-guide</module>
<module>security-guide</module>
<module>training-guide</module>
<module>user-guide</module>
<module>user-guide-admin</module>
</modules>
<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>
<build>
<plugins>
<plugin>
<groupId>com.rackspace.cloud.api</groupId>
<artifactId>clouddocs-maven-plugin</artifactId>
<version>1.11.0</version>
</plugin>
</plugins>
</build>
</project>

View File

@ -1,12 +1,16 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" <project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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"> 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> <modelVersion>4.0.0</modelVersion>
<groupId>org.openstack.apidocs</groupId>
<artifactId>openstack-security-guide</artifactId> <artifactId>openstack-security-guide</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>OpenStack Security Guide Docs</name> <name>OpenStack Security Guide</name>
<properties> <properties>
<!-- This is set by Jenkins according to the branch. --> <!-- This is set by Jenkins according to the branch. -->
<release.path.name>local</release.path.name> <release.path.name>local</release.path.name>
@ -17,7 +21,7 @@
<plugin> <plugin>
<groupId>com.rackspace.cloud.api</groupId> <groupId>com.rackspace.cloud.api</groupId>
<artifactId>clouddocs-maven-plugin</artifactId> <artifactId>clouddocs-maven-plugin</artifactId>
<version>1.10.0</version> <!-- version is set in ../pom.xml file -->
<executions> <executions>
<execution> <execution>
<id>security-guide</id> <id>security-guide</id>
@ -75,26 +79,4 @@
</plugin> </plugin>
</plugins> </plugins>
</build> </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> </project>

View File

@ -1,12 +1,16 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" <project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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"> 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> <modelVersion>4.0.0</modelVersion>
<groupId>org.openstack.apidocs</groupId> <artifactId>openstack-training-guide</artifactId>
<artifactId>openstack-training-guides</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>OpenStack Training Guides</name> <name>OpenStack Training Guide</name>
<properties> <properties>
<!-- This is set by Jenkins according to the branch. --> <!-- This is set by Jenkins according to the branch. -->
<release.path.name>local</release.path.name> <release.path.name>local</release.path.name>
@ -18,7 +22,7 @@
<plugin> <plugin>
<groupId>com.rackspace.cloud.api</groupId> <groupId>com.rackspace.cloud.api</groupId>
<artifactId>clouddocs-maven-plugin</artifactId> <artifactId>clouddocs-maven-plugin</artifactId>
<version>1.10.0</version> <!-- version is set in ../pom.xml file -->
<executions> <executions>
<execution> <execution>
<id>training-guide</id> <id>training-guide</id>
@ -28,9 +32,8 @@
<phase>generate-sources</phase> <phase>generate-sources</phase>
<configuration> <configuration>
<includes>st-training-guides.xml</includes> <includes>st-training-guides.xml</includes>
<sourceDirectory>.</sourceDirectory> <sourceDirectory>.</sourceDirectory>
<canonicalUrlBase>http://docs.openstack.org/${release.path.name}/training-guide/</canonicalUrlBase>
<canonicalUrlBase>http://docs.openstack.org/${release.path.name}/training-guide/</canonicalUrlBase>
<targetDirectory>${basedir}/target/docbkx/webhelp/${release.path.name}/training-guide</targetDirectory> <targetDirectory>${basedir}/target/docbkx/webhelp/${release.path.name}/training-guide</targetDirectory>
<webhelpDirname>/</webhelpDirname> <webhelpDirname>/</webhelpDirname>
<pdfFilenameBase>training-guides-${release.path.name}</pdfFilenameBase> <pdfFilenameBase>training-guides-${release.path.name}</pdfFilenameBase>
@ -42,54 +45,30 @@
<tocSectionDepth>1</tocSectionDepth> <tocSectionDepth>1</tocSectionDepth>
<formalProcedures>0</formalProcedures> <formalProcedures>0</formalProcedures>
<generateToc> <generateToc>
appendix toc,title appendix toc,title
article/appendix nop article/appendix nop
article toc,title article toc,title
book toc,title,figure,table,equation book toc,title,figure,table,example,equation
chapter toc chapter toc,title
part toc,title section toc
acknowledgements toc,title part toc,title
preface toc qandadiv toc
qandadiv toc qandaset toc
qandaset toc
reference toc,title reference toc,title
section toc set toc,title
set toc,title
</generateToc> </generateToc>
<pageWidth>9.68in</pageWidth> <pageWidth>9.68in</pageWidth>
<pageHeight>7.44in</pageHeight> <pageHeight>7.44in</pageHeight>
<doubleSided>1</doubleSided> <doubleSided>1</doubleSided>
<omitCover>1</omitCover> <omitCover>1</omitCover>
</configuration> </configuration>
</execution> </execution>
</executions> </executions>
<configuration> <configuration>
<branding>openstack</branding> <branding>openstack</branding>
<showXslMessages>true</showXslMessages> <showXslMessages>true</showXslMessages>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>
</build> </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> </project>

View File

@ -1,12 +1,16 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" <project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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"> 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> <modelVersion>4.0.0</modelVersion>
<groupId>org.openstack.docs</groupId> <artifactId>openstack-user-guide-admin</artifactId>
<artifactId>openstack-admin-user-guide</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>OpenStack Guides</name> <name>OpenStack Admin User Guide</name>
<properties> <properties>
<!-- This is set by Jenkins according to the branch. --> <!-- This is set by Jenkins according to the branch. -->
<release.path.name>grizzly</release.path.name> <release.path.name>grizzly</release.path.name>
@ -20,7 +24,7 @@
<plugin> <plugin>
<groupId>com.rackspace.cloud.api</groupId> <groupId>com.rackspace.cloud.api</groupId>
<artifactId>clouddocs-maven-plugin</artifactId> <artifactId>clouddocs-maven-plugin</artifactId>
<version>1.10.0</version> <!-- version is set in ../pom.xml file -->
<executions> <executions>
<!-- Configuration for OpenStack End User Guide --> <!-- Configuration for OpenStack End User Guide -->
<execution> <execution>
@ -30,21 +34,21 @@
</goals> </goals>
<phase>generate-sources</phase> <phase>generate-sources</phase>
<configuration> <configuration>
<profileOs>adminuser</profileOs> <profileOs>adminuser</profileOs>
<includes> bk-admin-user-guide.xml</includes> <includes> bk-admin-user-guide.xml</includes>
<generateToc> <generateToc>
appendix toc appendix toc,title
article/appendix nop article/appendix nop
article toc,title article toc,title
book toc,title,figure,equation book toc,title,figure,table,example,equation
chapter toc chapter toc,title
section toc section toc
part toc,title part toc,title
preface toc qandadiv toc
qandadiv toc qandaset toc
qandaset toc
reference toc,title reference toc,title
set toc,title </generateToc> set toc,title
</generateToc>
<targetDirectory>target/docbkx/webhelp/</targetDirectory> <targetDirectory>target/docbkx/webhelp/</targetDirectory>
<webhelpDirname>user-guide-admin</webhelpDirname> <webhelpDirname>user-guide-admin</webhelpDirname>
<pdfFilenameBase>admin-user-guide-${release.path.name}</pdfFilenameBase> <pdfFilenameBase>admin-user-guide-${release.path.name}</pdfFilenameBase>
@ -76,26 +80,4 @@
</plugin> </plugin>
</plugins> </plugins>
</build> </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> </project>

View File

@ -1,12 +1,16 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" <project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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"> 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> <modelVersion>4.0.0</modelVersion>
<groupId>org.openstack.docs</groupId>
<artifactId>openstack-user-guide</artifactId> <artifactId>openstack-user-guide</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>OpenStack Guides</name> <name>OpenStack User Guide</name>
<properties> <properties>
<!-- This is set by Jenkins according to the branch. --> <!-- This is set by Jenkins according to the branch. -->
<release.path.name>local</release.path.name> <release.path.name>local</release.path.name>
@ -20,7 +24,7 @@
<plugin> <plugin>
<groupId>com.rackspace.cloud.api</groupId> <groupId>com.rackspace.cloud.api</groupId>
<artifactId>clouddocs-maven-plugin</artifactId> <artifactId>clouddocs-maven-plugin</artifactId>
<version>1.10.0</version> <!-- version is set in ../pom.xml file -->
<executions> <executions>
<!-- Configuration for OpenStack End User Guide --> <!-- Configuration for OpenStack End User Guide -->
<execution> <execution>
@ -30,22 +34,22 @@
</goals> </goals>
<phase>generate-sources</phase> <phase>generate-sources</phase>
<configuration> <configuration>
<profileOs>enduser</profileOs> <profileOs>enduser</profileOs>
<includes> bk-user-guide.xml</includes> <includes> bk-user-guide.xml</includes>
<generateToc> <generateToc>
appendix toc appendix toc,title
article/appendix nop article/appendix nop
article toc,title article toc,title
book toc,title,figure,equation book toc,title,figure,table,example,equation
chapter toc chapter toc,title
section toc section toc
part toc,title part toc,title
preface toc qandadiv toc
qandadiv toc qandaset toc
qandaset toc reference toc,title
reference toc,title set toc,title
set toc,title </generateToc> </generateToc>
<targetDirectory>target/docbkx/webhelp/</targetDirectory> <targetDirectory>target/docbkx/webhelp</targetDirectory>
<webhelpDirname>user-guide</webhelpDirname> <webhelpDirname>user-guide</webhelpDirname>
<pdfFilenameBase>user-guide</pdfFilenameBase> <pdfFilenameBase>user-guide</pdfFilenameBase>
</configuration> </configuration>
@ -73,26 +77,4 @@ set toc,title </generateToc>
</plugin> </plugin>
</plugins> </plugins>
</build> </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> </project>