Project

General

Profile

1
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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-SNAPSHOT</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/trunk</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>Trac</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> </pluginRepositories>
28

    
29

    
30
	<repositories>
31
		<repository>
32
			<id>dnet-deps</id>
33
			<name>dnet-dependencies</name>
34
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet-deps</url>
35
			<layout>default</layout>
36
		</repository>
37
		<!-- 
38
		<repository>
39
			<id>dnet4-snapshots</id>
40
			<name>D-Net 4 Snapshots</name>
41
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet4-snapshots</url>
42
			<layout>default</layout>
43
			<snapshots>
44
				<enabled>true</enabled>
45
			</snapshots>
46
		</repository>
47
		<repository>
48
			<id>dnet4-releases</id>
49
			<name>D-Net 4 Releases</name>
50
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet4-releases</url>
51
			<layout>default</layout>
52
			<snapshots>
53
				<enabled>false</enabled>
54
			</snapshots>
55
			<releases>
56
				<enabled>true</enabled>				
57
			</releases>
58
		</repository>
59
		-->
60
	</repositories>
61

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

    
129
	<!--
130
	<distributionManagement>
131
		<snapshotRepository>
132
			<id>dnet4-snapshots</id>
133
			<name>D-Net 4 Snapshots</name>
134
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet4-snapshots</url>
135
			<layout>default</layout>
136
		</snapshotRepository>
137
		<repository>
138
			<id>dnet4-releases</id>
139
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet4-releases/</url>
140
		</repository>
141
	</distributionManagement>
142

    
143

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