1 |
26607
|
alessia.ba
|
<?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 |
|
|
<parent>
|
4 |
|
|
<groupId>eu.dnetlib</groupId>
|
5 |
|
|
<artifactId>dnet-parent</artifactId>
|
6 |
|
|
<version>1.0.0-SNAPSHOT</version>
|
7 |
|
|
</parent>
|
8 |
|
|
<modelVersion>4.0.0</modelVersion>
|
9 |
|
|
<groupId>eu.dnetlib</groupId>
|
10 |
|
|
<artifactId>dnet-api-http-doc</artifactId>
|
11 |
|
|
<packaging>jar</packaging>
|
12 |
|
|
<version>0.0.1-SNAPSHOT</version>
|
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 |
|
|
<executions>
|
20 |
|
|
<execution>
|
21 |
|
|
<goals>
|
22 |
27116
|
alessia.ba
|
<!-- RUN with mvn docbkx:generate-html -->
|
23 |
26607
|
alessia.ba
|
<goal>generate-html</goal>
|
24 |
|
|
</goals>
|
25 |
|
|
<phase>pre-site</phase>
|
26 |
|
|
</execution>
|
27 |
|
|
</executions>
|
28 |
|
|
<dependencies>
|
29 |
|
|
<dependency>
|
30 |
|
|
<groupId>org.docbook</groupId>
|
31 |
|
|
<artifactId>docbook-xml</artifactId>
|
32 |
|
|
<version>4.4</version>
|
33 |
|
|
<scope>runtime</scope>
|
34 |
|
|
</dependency>
|
35 |
|
|
</dependencies>
|
36 |
|
|
<configuration>
|
37 |
27116
|
alessia.ba
|
<!--<chunkedOutput>false</chunkedOutput>-->
|
38 |
26607
|
alessia.ba
|
<htmlStylesheet>openaire-api.css</htmlStylesheet>
|
39 |
27116
|
alessia.ba
|
<includes>api-doc.xml</includes>
|
40 |
26607
|
alessia.ba
|
<xincludeSupported>true</xincludeSupported>
|
41 |
|
|
<postProcess>
|
42 |
|
|
<copy todir="target/docbkx/html/">
|
43 |
|
|
<fileset dir="src/css"/>
|
44 |
|
|
</copy>
|
45 |
|
|
</postProcess>
|
46 |
|
|
</configuration>
|
47 |
|
|
</plugin>
|
48 |
|
|
</plugins>
|
49 |
|
|
</build>
|
50 |
|
|
</project>
|