]> git.argeo.org Git - lgpl/argeo-commons.git/blob - doc/pom.xml
Don't publish repository register
[lgpl/argeo-commons.git] / doc / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.argeo.commons</groupId>
6 <version>0.3.4-SNAPSHOT</version>
7 <artifactId>argeo-commons</artifactId>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>doc</artifactId>
11 <name>Commons Doc</name>
12 <packaging>pom</packaging>
13 <build>
14 <plugins>
15 <plugin>
16 <groupId>com.agilejava.docbkx</groupId>
17 <artifactId>docbkx-maven-plugin</artifactId>
18 <version>2.0.8</version>
19 <configuration>
20 <htmlStylesheet>css/style.css</htmlStylesheet>
21 <postProcess>
22 <!-- See https://fisheye.springframework.org/rdiff/spring-ldap?csid=439&u&N -->
23 <copy todir="target/docbkx/html">
24 <fileset dir="src/docbkx">
25 <include name="*/*.css" />
26 </fileset>
27 </copy>
28 </postProcess>
29 </configuration>
30 <executions>
31 <execution>
32 <goals>
33 <goal>generate-html</goal>
34 <goal>generate-pdf</goal>
35 </goals>
36 <phase>compile</phase>
37 </execution>
38 </executions>
39 <dependencies>
40 <dependency>
41 <groupId>org.docbook</groupId>
42 <artifactId>docbook-xml</artifactId>
43 <version>4.4</version>
44 <scope>runtime</scope>
45 </dependency>
46 </dependencies>
47 </plugin>
48 </plugins>
49 </build>
50 </project>