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
		<repository>
38
			<id>dnet4-snapshots</id>
39
			<name>D-Net 4 Snapshots</name>
40
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet4-snapshots</url>
41
			<layout>default</layout>
42
			<snapshots>
43
				<enabled>true</enabled>
44
			</snapshots>
45
		</repository>
46
		<repository>
47
			<id>dnet4-releases</id>
48
			<name>D-Net 4 Releases</name>
49
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet4-releases</url>
50
			<layout>default</layout>
51
			<snapshots>
52
				<enabled>false</enabled>
53
			</snapshots>
54
			<releases>
55
				<enabled>true</enabled>				
56
			</releases>
57
		</repository>
58
	</repositories>
59
-->
60

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

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

    
142

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