-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
82 lines (78 loc) · 3.67 KB
/
pom.xml
File metadata and controls
82 lines (78 loc) · 3.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.rackspace.cloud.api</groupId>
<artifactId>api-extensions</artifactId>
<version>1.0.0-SNAPSHOT</version>
<name>API Extensions Intro</name>
<packaging>jar</packaging>
<pluginRepositories>
<pluginRepository>
<id>rackspace-research</id>
<name>Rackspace Research Repository</name>
<url>http://maven.research.rackspacecloud.com/content/groups/public/</url>
</pluginRepository>
</pluginRepositories>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>batik-maven-plugin</artifactId>
<version>1.0-beta-1</version>
<executions>
<execution>
<goals>
<goal>rasterize</goal>
</goals>
<configuration>
<srcDir>${basedir}/src/resources/figures</srcDir>
<destDir>${basedir}/target/docbkx/webhelp/apix-intro/content/figures</destDir>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.rackspace.cloud.api</groupId>
<artifactId>clouddocs-maven-plugin</artifactId>
<!-- this <version> relates only to the *plugin* used for document formatting -->
<!-- the version of the *API* that is the subject of the document is indicated within each document -->
<version>1.0.8-SNAPSHOT</version>
<executions>
<execution>
<id>g1</id>
<goals>
<goal>generate-pdf</goal>
<goal>generate-webhelp</goal>
</goals>
<phase>generate-sources</phase>
<configuration>
<xincludeSupported>true</xincludeSupported>
<branding>openstack</branding>
<sourceDirectory>src/resources</sourceDirectory>
<highlightSource>true</highlightSource>
<includes>apix-intro.xml</includes>
<pdfUrl>apix-intro.pdf</pdfUrl>
<canonicalUrlBase>http://docs.rackspacecloud.com/openstack-extensions/apix-intro/content</canonicalUrlBase>
<postProcess>
<copy todir="target/docbkx/webhelp/apix-intro/content/">
<fileset dir="target/docbkx/pdf/">
<include name="**/*.pdf"/>
</fileset>
</copy>
</postProcess>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.docbook</groupId>
<artifactId>docbook-xml</artifactId>
<version>4.4</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>