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>2.0.0-SNAPSHOT</version>
7
		<relativePath />
8
	</parent>
9
	<modelVersion>4.0.0</modelVersion>
10
	<groupId>eu.dnetlib</groupId>
11
	<artifactId>dnet-graph-domain</artifactId>
12
	<packaging>jar</packaging>
13
	<version>1.0.0-SNAPSHOT</version>
14
	<scm>
15
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet50/modules/dnet-graph-domain/trunk</developerConnection>
16
	</scm>
17

    
18
	<properties>
19
		<!-- defined also in dnet-parent, here in case we need to override -->
20
		<google.protobuf.version>2.4.1</google.protobuf.version>
21
	</properties>
22

    
23
	<build>
24
		<plugins>
25
			<plugin>
26
				<groupId>eu.dnetlib</groupId>
27
				<artifactId>protoc-jar-maven-plugin</artifactId>
28
				<version>1.0.0-SNAPSHOT</version>
29
				<executions>
30
					<execution>
31
						<phase>generate-sources</phase>
32
						<goals>
33
							<goal>run</goal>
34
						</goals>
35
						<configuration>
36
							<protocVersion>${google.protobuf.version}</protocVersion>
37
							<inputDirectories>
38
								<include>src/main/resources</include>
39
							</inputDirectories>
40
							<outputDirectory>src/gen/java</outputDirectory>
41
						</configuration>
42
					</execution>
43
				</executions>
44
			</plugin>
45
		</plugins>
46
	</build>
47

    
48
	<pluginRepositories>
49
		<pluginRepository>
50
			<id>dnet5-bootstrap-snapshot</id>
51
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet5-bootstrap-snapshot/</url>
52
		</pluginRepository>
53
	</pluginRepositories>
54

    
55
	<dependencies>
56

    
57
		<dependency>
58
			<groupId>eu.dnetlib</groupId>
59
			<artifactId>dnet-pace-core</artifactId>
60
			<version>2.5.0-SNAPSHOT</version>
61
		</dependency>
62

    
63
		<dependency>
64
			<groupId>eu.dnetlib</groupId>
65
			<artifactId>dnet-core-components</artifactId>
66
			<version>1.0.0-SNAPSHOT</version>
67
		</dependency>
68

    
69
		<dependency>
70
			<groupId>org.apache.solr</groupId>
71
			<artifactId>solr-solrj</artifactId>
72
			<version>${apache.solr.version}</version>
73
			<exclusions>
74
				<exclusion>
75
					<artifactId>wstx-asl</artifactId>
76
					<groupId>org.codehaus.woodstox</groupId>
77
				</exclusion>
78
				<exclusion>
79
					<artifactId>jcl-over-slf4j</artifactId>
80
					<groupId>org.slf4j</groupId>
81
				</exclusion>
82
				<exclusion>
83
					<artifactId>slf4j-api</artifactId>
84
					<groupId>org.slf4j</groupId>
85
				</exclusion>
86
			</exclusions>
87
		</dependency>
88
		<dependency>
89
			<groupId>dom4j</groupId>
90
			<artifactId>dom4j</artifactId>
91
			<version>${dom4j.version}</version>
92
			<exclusions>
93
				<exclusion>
94
					<artifactId>xml-apis</artifactId>
95
					<groupId>xml-apis</groupId>
96
				</exclusion>
97
			</exclusions>
98
		</dependency>
99
		<dependency>
100
			<groupId>jaxen</groupId>
101
			<artifactId>jaxen</artifactId>
102
			<version>1.1.6</version>
103
		</dependency>
104
		<dependency>
105
			<groupId>org.apache.commons</groupId>
106
			<artifactId>commons-lang3</artifactId>
107
			<version>${commons.lang.version}</version>
108
		</dependency>
109
		<dependency>
110
			<groupId>commons-codec</groupId>
111
			<artifactId>commons-codec</artifactId>
112
			<version>1.8</version>
113
		</dependency>
114
		<dependency>
115
			<groupId>com.google.protobuf</groupId>
116
			<artifactId>protobuf-java</artifactId>
117
			<version>${google.protobuf.version}</version>
118
		</dependency>
119
		<dependency>
120
			<groupId>org.springframework</groupId>
121
			<artifactId>spring-test</artifactId>
122
			<version>${spring.version}</version>
123
			<scope>test</scope>
124
		</dependency>
125
		<dependency>
126
			<groupId>org.springframework</groupId>
127
			<artifactId>spring-context</artifactId>
128
			<version>${spring.version}</version>
129
			<scope>test</scope>
130
		</dependency>
131
		<dependency>
132
			<groupId>junit</groupId>
133
			<artifactId>junit</artifactId>
134
			<version>${junit.version}</version>
135
			<scope>test</scope>
136
		</dependency>
137
	</dependencies>
138
</project>
    (1-1/1)