]> git.argeo.org Git - lgpl/argeo-commons.git/blob - doc/pom.xml
Make login less verbose
[lgpl/argeo-commons.git] / doc / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.argeo.commons</groupId>
6 <artifactId>argeo-commons</artifactId>
7 <version>2.1.70-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>doc</artifactId>
11 <name>Commons Documentation</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.15</version>
19 <configuration>
20 <sourceDirectory>docbook</sourceDirectory>
21 <includes>argeo-commons.dbk.xml</includes>
22 <htmlStylesheet>argeo.css</htmlStylesheet>
23 <xincludeSupported>true</xincludeSupported>
24 <preProcess>
25 <copy todir="${project.build.directory}/docbkx/xhtml5" file="docbook/argeo.css" />
26 </preProcess>
27 </configuration>
28 <dependencies>
29 <dependency>
30 <groupId>net.sf.docbook</groupId>
31 <artifactId>docbook-xml</artifactId>
32 <version>5.0-all</version>
33 <classifier>resources</classifier>
34 <type>zip</type>
35 <scope>runtime</scope>
36 </dependency>
37 </dependencies>
38 <executions>
39 <execution>
40 <goals>
41 <goal>generate-xhtml5</goal>
42 </goals>
43 <phase>package</phase>
44 </execution>
45 </executions>
46 </plugin>
47 </plugins>
48 </build>
49 <repositories>
50 <!-- <repository> -->
51 <!-- <id>jboss</id> -->
52 <!-- <url>http://repository.jboss.org/</url> -->
53 <!-- <releases> -->
54 <!-- <enabled>true</enabled> -->
55 <!-- </releases> -->
56 <!-- <snapshots> -->
57 <!-- <enabled>false</enabled> -->
58 <!-- </snapshots> -->
59 <!-- </repository> -->
60 <repository>
61 <id>central</id>
62 <url>http://repo1.maven.org/maven2</url>
63 <releases>
64 <enabled>true</enabled>
65 </releases>
66 <snapshots>
67 <enabled>false</enabled>
68 </snapshots>
69 </repository>
70 </repositories>
71 <pluginRepositories>
72 <!-- <pluginRepository> -->
73 <!-- <id>jboss</id> -->
74 <!-- <url>http://repository.jboss.org/</url> -->
75 <!-- </pluginRepository> -->
76 </pluginRepositories>
77 </project>