Project

General

Profile

1
<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">
2
	<modelVersion>4.0.0</modelVersion>
3
	<groupId>eu.dnetlib</groupId>
4
	<artifactId>dnet-parent</artifactId>
5
	<version>2.0.0</version>
6
	<packaging>pom</packaging>
7
	<url>http://www.d-net.research-infrastructures.eu</url>
8
	<scm>
9
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet50/modules/dnet-parent/tags/dnet-parent-2.0.0</developerConnection>
10
	</scm>
11
	<licenses>
12
		<license>
13
			<name>The Apache Software License, Version 2.0</name>
14
			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
15
			<distribution>repo</distribution>
16
			<comments>A business-friendly OSS license</comments>
17
		</license>
18
	</licenses>
19
	<issueManagement>
20
		<system>Track</system>
21
		<url>http://issue.driver.research-infrastructures.eu/</url>
22
	</issueManagement>
23
	<ciManagement>
24
		<system>jenkins</system>
25
		<url>http://ci.research-infrastructures.eu/view/D-Net</url>
26
	</ciManagement>
27
	<pluginRepositories>
28
		<pluginRepository>
29
			<id>dnet5-bootstrap-snapshot</id>
30
			<url>https://nexus.d4science.org/nexus/content/repositories/dnet5-bootstrap-snapshot/</url>
31
		</pluginRepository>
32
	</pluginRepositories>
33

    
34

    
35
	<repositories>
36
		<repository>
37
			<id>dnet-deps</id>
38
			<name>dnet-dependencies</name>
39
			<url>https://nexus.d4science.org/nexus/content/repositories/dnet-deps</url>
40
			<layout>default</layout>
41
		</repository>
42

    
43
		<repository>
44
			<id>dnet5-snapshots</id>
45
			<name>D-Net 5 Snapshots</name>
46
			<url>https://nexus.d4science.org/nexus/content/repositories/dnet5-snapshots</url>
47
			<layout>default</layout>
48
			<snapshots>
49
				<enabled>true</enabled>
50
			</snapshots>
51
		</repository>
52
		<repository>
53
			<id>dnet5-releases</id>
54
			<name>D-Net 5 Releases</name>
55
			<url>https://nexus.d4science.org/nexus/content/repositories/dnet5-releases</url>
56
			<layout>default</layout>
57
			<snapshots>
58
				<enabled>false</enabled>
59
			</snapshots>
60
			<releases>
61
				<enabled>true</enabled>				
62
			</releases>
63
		</repository>
64

    
65
	</repositories>
66

    
67
	<build>
68
		<directory>target</directory>
69
		<outputDirectory>target/classes</outputDirectory>
70
		<finalName>${project.artifactId}-${project.version}</finalName>
71
		<testOutputDirectory>target/test-classes</testOutputDirectory>
72
		<plugins>
73
			<plugin>
74
				<groupId>org.apache.maven.plugins</groupId>
75
				<artifactId>maven-release-plugin</artifactId>
76
				<version>2.5</version>
77
			</plugin>
78
			<plugin>
79
				<groupId>org.apache.maven.plugins</groupId>
80
				<artifactId>maven-compiler-plugin</artifactId>
81
				<version>3.1</version>
82
				<configuration>
83
					<source>${maven.compiler.source.version}</source>
84
					<target>${maven.compiler.target.version}</target>
85
				</configuration>
86
			</plugin>
87
			<plugin>
88
				<groupId>org.apache.maven.plugins</groupId>
89
				<artifactId>maven-source-plugin</artifactId>
90
				<version>2.2.1</version>
91
				<executions>
92
					<execution>
93
						<id>attach-sources</id>
94
						<phase>verify</phase>
95
						<goals>
96
							<goal>jar-no-fork</goal>
97
						</goals>
98
					</execution>
99
				</executions>
100
			</plugin>
101
			<plugin>
102
				<groupId>org.apache.maven.plugins</groupId>
103
				<artifactId>maven-surefire-plugin</artifactId>
104
				<version>2.16</version>
105
				<configuration>
106
					<redirectTestOutputToFile>true</redirectTestOutputToFile>
107
					<includes>
108
						<include>**/*Test.java</include>
109
					</includes>
110
					<excludes>
111
						<exclude>**/AllTests.java</exclude>
112
						<exclude>**/Abstract*Test.java</exclude>
113
					</excludes>
114
				</configuration>
115
			</plugin>
116
			<plugin>
117
				<groupId>org.apache.maven.plugins</groupId>
118
				<artifactId>maven-javadoc-plugin</artifactId>
119
				<version>2.9</version>
120
				<configuration>
121
					<detectLinks>true</detectLinks>
122
				</configuration>
123
			</plugin>		
124
		</plugins>
125
		<extensions>
126
			<extension>
127
				<groupId>org.apache.maven.wagon</groupId>
128
				<artifactId>wagon-ssh</artifactId>
129
				<version>2.4</version>
130
			</extension>
131
		</extensions>
132
	</build>
133

    
134

    
135
	<distributionManagement>
136
		<snapshotRepository>
137
			<id>dnet5-snapshots</id>
138
			<name>D-Net 5 Snapshots</name>
139
			<url>https://nexus.d4science.org/nexus/content/repositories/dnet5-snapshots</url>
140
			<layout>default</layout>
141
		</snapshotRepository>
142
		<repository>
143
			<id>dnet5-releases</id>
144
			<url>https://nexus.d4science.org/nexus/content/repositories/dnet5-releases/</url>
145
		</repository>
146
	</distributionManagement>
147

    
148

    
149
	<reporting>
150
		<plugins>
151
			<plugin>
152
				<groupId>org.apache.maven.plugins</groupId>
153
				<artifactId>maven-javadoc-plugin</artifactId>
154
				<version>2.9</version>
155
				<configuration>
156
					<detectLinks>true</detectLinks>
157
				</configuration>
158
			</plugin>			
159
		</plugins>
160
	</reporting>
161
	<dependencies>
162
		<dependency>
163
			<groupId>log4j</groupId>
164
			<artifactId>log4j</artifactId>
165
			<version>[${log4j.version}]</version>
166
			<exclusions>
167
				<exclusion>
168
					<groupId>com.sun.jmx</groupId>
169
					<artifactId>jmxri</artifactId>
170
				</exclusion>
171
				<exclusion>
172
					<groupId>com.sun.jdmk</groupId>
173
					<artifactId>jmxtools</artifactId>
174
				</exclusion>
175
			</exclusions>
176
		</dependency>
177
	</dependencies>
178
	<properties>
179
		<maven.compiler.source.version>1.8</maven.compiler.source.version>
180
		<maven.compiler.target.version>1.8</maven.compiler.target.version>
181
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
182
		<dnet.container.context>app</dnet.container.context>
183
		<dnet.container.port>8280</dnet.container.port>
184
		<spring.version>[4.2.5.RELEASE]</spring.version>
185
		<cxf.version>[3.1.5]</cxf.version>
186
		<exist.version>3.0.RC1</exist.version>
187
		<akka.version>2.0.4</akka.version>
188
		<google.coll.version>1.0</google.coll.version>
189
		<google.guava.version>18.0</google.guava.version>
190
		<google.gson.version>2.6.2</google.gson.version>
191
		<mongodb.driver.version>3.4.2</mongodb.driver.version>
192
		<apache.solr.version>5.5.0</apache.solr.version>
193
		<google.protobuf.version>2.4.1</google.protobuf.version>
194
		<stringtemplate.version>[3.2]</stringtemplate.version>
195
		<saxon.version>9.1.0.8</saxon.version>
196
		<log4j.version>1.2.17</log4j.version>
197
		<quartz.version>2.2.2</quartz.version>
198
		<dom4j.version>[1.6.1]</dom4j.version>
199
		<ehcache.version>[2.6.2]</ehcache.version>
200
		<vtd.version>[2.12,3.0)</vtd.version>
201
		<mockito.version>[2.3.7]</mockito.version>
202
		<junit.version>4.12</junit.version>
203
		<javax.servlet.version>[3.1.0]</javax.servlet.version>
204
		<!-- apache commons properties -->
205
		<commons.codec.version>1.8</commons.codec.version>
206
		<commons.lang.version>3.4</commons.lang.version>
207
		<commons.io.version>2.4</commons.io.version>
208
		<commons.logging.version>1.2</commons.logging.version>
209
		<commons.collections.version>3.2.1</commons.collections.version>
210
		<httpcomponents.httpclient.version>4.4.1</httpcomponents.httpclient.version>
211
		<!-- hadoop DM cluster properties -->
212
		<hadoop.core.version>2.0.0-mr1-cdh4.3.0</hadoop.core.version>
213
		<hadoop.common.version>2.0.0-cdh4.3.0</hadoop.common.version>
214
		<hadoop.hdfs.version>2.0.0-cdh4.3.0</hadoop.hdfs.version>
215
		<apache.hbase.version>0.94.6-cdh4.3.0</apache.hbase.version>
216
		<apache.oozie.version>3.3.2-cdh4.3.0</apache.oozie.version>
217
		<!-- new cluster IIS properties -->
218
		<iis.cdh.version>cdh4.3.1</iis.cdh.version>
219
		<iis.hbase.version>0.94.6-${iis.cdh.version}</iis.hbase.version>
220
		<iis.oozie.version>3.3.2-${iis.cdh.version}</iis.oozie.version>
221
		<iis.pig.version>0.11.0-${iis.cdh.version}</iis.pig.version>
222
		<iis.hive.version>0.10.0-${iis.cdh.version}</iis.hive.version>
223
		<iis.hadoop.streaming.version>${iis.hadoop.mr1.version}</iis.hadoop.streaming.version>
224
		<iis.avro.version>1.7.4</iis.avro.version>
225
		<!-- shared IIS properties -->
226
		<iis.hadoop.version>2.0.0-${iis.cdh.version}</iis.hadoop.version>
227
		<iis.hadoop.mr1.version>2.0.0-mr1-${iis.cdh.version}</iis.hadoop.mr1.version>
228
		<iis.hadoop.common.version>${iis.hadoop.version}</iis.hadoop.common.version>
229
		<iis.hadoop.core.version>${iis.hadoop.mr1.version}</iis.hadoop.core.version>
230
		<iis.hadoop.hdfs.version>${iis.hadoop.version}</iis.hadoop.hdfs.version>
231
		<iis.hadoop.test.version>${iis.hadoop.mr1.version}</iis.hadoop.test.version>
232
	</properties>
233
</project>
(2-2/2)