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