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"
3
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4
	<parent>
5
		<groupId>eu.dnetlib</groupId>
6
		<artifactId>dnet-hadoop-parent</artifactId>
7
		<version>1.0.0-SNAPSHOT</version>
8
		<relativePath></relativePath>
9
	</parent>
10
	<modelVersion>4.0.0</modelVersion>
11
	<groupId>eu.dnetlib</groupId>
12
	<artifactId>dnet-objectstore-rmi</artifactId>
13
	<packaging>jar</packaging>
14
	<version>1.0.0-SNAPSHOT</version>
15
	<build>
16
		<plugins>
17
			<plugin>
18
				<groupId>com.agilejava.docbkx</groupId>
19
				<artifactId>docbkx-maven-plugin</artifactId>
20
				<executions>
21
					<execution>
22
						<goals>
23
							<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

    
36
				</dependencies>
37
				<configuration>
38
					<htmlStylesheet>dnet-doc.css</htmlStylesheet>
39
					<includes>*.xml</includes>
40
					<postProcess>
41
						<copy todir="target/docbkx/html/">
42
							<fileset dir="src/css" />
43
							<fileset dir="src/images" />
44
						</copy>
45
					</postProcess>
46
				</configuration>
47
			</plugin>
48
		</plugins>
49
	</build>
50

    
51
	<dependencies>
52
		<dependency>
53
			<groupId>eu.dnetlib</groupId>
54
			<artifactId>cnr-rmi-api</artifactId>
55
			<version>[2.0.0-SNAPSHOT,)</version>
56
		</dependency>
57
		<dependency>
58
			<groupId>commons-io</groupId>
59
			<artifactId>commons-io</artifactId>
60
			<version>${commons.io.version}</version>
61
			<scope>test</scope>
62
		</dependency>
63
		<dependency>
64
			<groupId>junit</groupId>
65
			<artifactId>junit</artifactId>
66
			<version>${junit.version}</version>
67
			<scope>test</scope>
68
		</dependency>
69
		<dependency>
70
			<groupId>com.google.code.gson</groupId>
71
			<artifactId>gson</artifactId>
72
			<version>${google.gson.version}</version>
73
		</dependency>
74
	</dependencies>
75

    
76

    
77
</project>
(2-2/2)