Project

General

Profile

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
  <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
              <goal>generate-html</goal>
23
            </goals>
24
            <phase>pre-site</phase>
25
          </execution>
26
        </executions>
27
        <dependencies>
28
          <dependency>
29
            <groupId>org.docbook</groupId>
30
            <artifactId>docbook-xml</artifactId>
31
            <version>4.4</version>
32
            <scope>runtime</scope>
33
          </dependency>
34
        </dependencies>
35
        <configuration>
36
          <htmlStylesheet>openaire-api.css</htmlStylesheet>
37
          <includes>book.xml</includes>    
38
          <xincludeSupported>true</xincludeSupported>  
39
          <postProcess>
40
          <copy todir="target/docbkx/html/">
41
          	<fileset dir="src/css"/>
42
          </copy>
43
          </postProcess>          
44
        </configuration>
45
      </plugin>
46
    </plugins>
47
  </build>
48
</project>
(2-2/2)