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>dnet45-parent</artifactId>
|
6
|
<version>1.0.0-SNAPSHOT</version>
|
7
|
<relativePath />
|
8
|
</parent>
|
9
|
<modelVersion>4.0.0</modelVersion>
|
10
|
<groupId>eu.dnetlib</groupId>
|
11
|
<artifactId>dnet-objectstore-rmi</artifactId>
|
12
|
<packaging>jar</packaging>
|
13
|
<version>2.0.9-SNAPSHOT</version>
|
14
|
<scm>
|
15
|
<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/dnet-objectstore-rmi/trunk</developerConnection>
|
16
|
</scm>
|
17
|
<build>
|
18
|
<plugins>
|
19
|
<plugin>
|
20
|
<groupId>com.agilejava.docbkx</groupId>
|
21
|
<artifactId>docbkx-maven-plugin</artifactId>
|
22
|
<executions>
|
23
|
<execution>
|
24
|
<goals>
|
25
|
<goal>generate-html</goal>
|
26
|
</goals>
|
27
|
<phase>pre-site</phase>
|
28
|
</execution>
|
29
|
</executions>
|
30
|
<dependencies>
|
31
|
<dependency>
|
32
|
<groupId>org.docbook</groupId>
|
33
|
<artifactId>docbook-xml</artifactId>
|
34
|
<version>4.4</version>
|
35
|
<scope>runtime</scope>
|
36
|
</dependency>
|
37
|
|
38
|
</dependencies>
|
39
|
<configuration>
|
40
|
<htmlStylesheet>dnet-doc.css</htmlStylesheet>
|
41
|
<includes>*.xml</includes>
|
42
|
<postProcess>
|
43
|
<copy todir="target/docbkx/html/">
|
44
|
<fileset dir="src/css" />
|
45
|
<fileset dir="src/images" />
|
46
|
</copy>
|
47
|
</postProcess>
|
48
|
</configuration>
|
49
|
</plugin>
|
50
|
</plugins>
|
51
|
</build>
|
52
|
|
53
|
<dependencies>
|
54
|
<dependency>
|
55
|
<groupId>eu.dnetlib</groupId>
|
56
|
<artifactId>cnr-rmi-api</artifactId>
|
57
|
<version>[2.0.0,3.0.0)</version>
|
58
|
</dependency>
|
59
|
<dependency>
|
60
|
<groupId>commons-io</groupId>
|
61
|
<artifactId>commons-io</artifactId>
|
62
|
<version>${commons.io.version}</version>
|
63
|
<scope>test</scope>
|
64
|
</dependency>
|
65
|
<dependency>
|
66
|
<groupId>junit</groupId>
|
67
|
<artifactId>junit</artifactId>
|
68
|
<version>${junit.version}</version>
|
69
|
<scope>test</scope>
|
70
|
</dependency>
|
71
|
<dependency>
|
72
|
<groupId>com.google.code.gson</groupId>
|
73
|
<artifactId>gson</artifactId>
|
74
|
<version>${google.gson.version}</version>
|
75
|
</dependency>
|
76
|
</dependencies>
|
77
|
|
78
|
|
79
|
</project>
|