1 |
30214
|
sandro.lab
|
<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 |
26600
|
sandro.lab
|
<modelVersion>4.0.0</modelVersion>
|
3 |
|
|
<groupId>eu.dnetlib</groupId>
|
4 |
45095
|
claudio.at
|
<artifactId>dnet45-parent</artifactId>
|
5 |
30247
|
sandro.lab
|
<version>1.0.0-SNAPSHOT</version>
|
6 |
26600
|
sandro.lab
|
<packaging>pom</packaging>
|
7 |
|
|
<url>http://www.d-net.research-infrastructures.eu</url>
|
8 |
|
|
<scm>
|
9 |
45095
|
claudio.at
|
<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/dnet-parent/trunk</developerConnection>
|
10 |
26600
|
sandro.lab
|
</scm>
|
11 |
|
|
<licenses>
|
12 |
26612
|
sandro.lab
|
<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 |
26600
|
sandro.lab
|
</licenses>
|
19 |
|
|
<issueManagement>
|
20 |
48488
|
alessia.ba
|
<system>redmine</system>
|
21 |
|
|
<url>https://issue.openaire.research-infrastructures.eu/projects/dnet</url>
|
22 |
26600
|
sandro.lab
|
</issueManagement>
|
23 |
|
|
<ciManagement>
|
24 |
26612
|
sandro.lab
|
<system>jenkins</system>
|
25 |
48488
|
alessia.ba
|
<url>https://jenkins-dnet.d4science.org/view/DNet45/job/DSL45_dnet-openaire-exporter/</url>
|
26 |
26600
|
sandro.lab
|
</ciManagement>
|
27 |
30208
|
sandro.lab
|
<pluginRepositories> </pluginRepositories>
|
28 |
26600
|
sandro.lab
|
<repositories>
|
29 |
26612
|
sandro.lab
|
<repository>
|
30 |
|
|
<id>dnet-deps</id>
|
31 |
|
|
<name>dnet-dependencies</name>
|
32 |
|
|
<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet-deps</url>
|
33 |
|
|
<layout>default</layout>
|
34 |
|
|
</repository>
|
35 |
|
|
<repository>
|
36 |
45095
|
claudio.at
|
<id>dnet45-snapshots</id>
|
37 |
|
|
<name>D-Net 45 Snapshots</name>
|
38 |
|
|
<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet45-snapshots</url>
|
39 |
26612
|
sandro.lab
|
<layout>default</layout>
|
40 |
|
|
<snapshots>
|
41 |
|
|
<enabled>true</enabled>
|
42 |
|
|
</snapshots>
|
43 |
|
|
</repository>
|
44 |
30208
|
sandro.lab
|
</repositories>
|
45 |
47665
|
claudio.at
|
<profiles>
|
46 |
|
|
<profile>
|
47 |
|
|
<id>java8-doclint-disabled</id>
|
48 |
|
|
<activation>
|
49 |
|
|
<jdk>[1.8,)</jdk>
|
50 |
|
|
</activation>
|
51 |
|
|
<properties>
|
52 |
|
|
<javadoc.opts>-Xdoclint:none</javadoc.opts>
|
53 |
|
|
</properties>
|
54 |
|
|
</profile>
|
55 |
|
|
</profiles>
|
56 |
26600
|
sandro.lab
|
<build>
|
57 |
26612
|
sandro.lab
|
<directory>target</directory>
|
58 |
|
|
<outputDirectory>target/classes</outputDirectory>
|
59 |
|
|
<finalName>${project.artifactId}-${project.version}</finalName>
|
60 |
|
|
<testOutputDirectory>target/test-classes</testOutputDirectory>
|
61 |
|
|
<plugins>
|
62 |
|
|
<plugin>
|
63 |
|
|
<groupId>org.apache.maven.plugins</groupId>
|
64 |
30247
|
sandro.lab
|
<artifactId>maven-release-plugin</artifactId>
|
65 |
|
|
<version>2.5</version>
|
66 |
|
|
</plugin>
|
67 |
|
|
<plugin>
|
68 |
|
|
<groupId>org.apache.maven.plugins</groupId>
|
69 |
26612
|
sandro.lab
|
<artifactId>maven-compiler-plugin</artifactId>
|
70 |
|
|
<version>3.1</version>
|
71 |
|
|
<configuration>
|
72 |
|
|
<source>${maven.compiler.source.version}</source>
|
73 |
|
|
<target>${maven.compiler.target.version}</target>
|
74 |
|
|
</configuration>
|
75 |
|
|
</plugin>
|
76 |
|
|
<plugin>
|
77 |
|
|
<groupId>org.apache.maven.plugins</groupId>
|
78 |
|
|
<artifactId>maven-source-plugin</artifactId>
|
79 |
|
|
<version>2.2.1</version>
|
80 |
|
|
<executions>
|
81 |
|
|
<execution>
|
82 |
|
|
<id>attach-sources</id>
|
83 |
|
|
<phase>verify</phase>
|
84 |
|
|
<goals>
|
85 |
|
|
<goal>jar-no-fork</goal>
|
86 |
|
|
</goals>
|
87 |
|
|
</execution>
|
88 |
|
|
</executions>
|
89 |
|
|
</plugin>
|
90 |
|
|
<plugin>
|
91 |
|
|
<groupId>org.apache.maven.plugins</groupId>
|
92 |
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
93 |
|
|
<version>2.16</version>
|
94 |
|
|
<configuration>
|
95 |
|
|
<redirectTestOutputToFile>true</redirectTestOutputToFile>
|
96 |
|
|
<includes>
|
97 |
|
|
<include>**/*Test.java</include>
|
98 |
|
|
</includes>
|
99 |
|
|
<excludes>
|
100 |
|
|
<exclude>**/AllTests.java</exclude>
|
101 |
|
|
<exclude>**/Abstract*Test.java</exclude>
|
102 |
|
|
</excludes>
|
103 |
|
|
</configuration>
|
104 |
|
|
</plugin>
|
105 |
47665
|
claudio.at
|
<plugin>
|
106 |
|
|
<groupId>org.apache.maven.plugins</groupId>
|
107 |
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
108 |
|
|
<version>${maven-javadoc-plugin.version}</version>
|
109 |
|
|
<configuration>
|
110 |
|
|
<detectLinks>true</detectLinks>
|
111 |
|
|
</configuration>
|
112 |
|
|
<executions>
|
113 |
|
|
<execution>
|
114 |
|
|
<id>attach-javadocs</id>
|
115 |
|
|
<goals>
|
116 |
|
|
<goal>jar</goal>
|
117 |
|
|
</goals>
|
118 |
|
|
<configuration>
|
119 |
|
|
<additionalparam>${javadoc.opts}</additionalparam>
|
120 |
|
|
</configuration>
|
121 |
|
|
</execution>
|
122 |
|
|
</executions>
|
123 |
|
|
</plugin>
|
124 |
26612
|
sandro.lab
|
<plugin>
|
125 |
|
|
<groupId>org.apache.maven.plugins</groupId>
|
126 |
45382
|
claudio.at
|
<artifactId>maven-dependency-plugin</artifactId>
|
127 |
|
|
<version>3.0.0</version>
|
128 |
|
|
</plugin>
|
129 |
26612
|
sandro.lab
|
</plugins>
|
130 |
26619
|
sandro.lab
|
<extensions>
|
131 |
|
|
<extension>
|
132 |
|
|
<groupId>org.apache.maven.wagon</groupId>
|
133 |
|
|
<artifactId>wagon-ssh</artifactId>
|
134 |
|
|
<version>2.4</version>
|
135 |
|
|
</extension>
|
136 |
|
|
</extensions>
|
137 |
26600
|
sandro.lab
|
</build>
|
138 |
26620
|
sandro.lab
|
<distributionManagement>
|
139 |
|
|
<snapshotRepository>
|
140 |
45095
|
claudio.at
|
<id>dnet45-snapshots</id>
|
141 |
|
|
<name>D-Net 45 Snapshots</name>
|
142 |
|
|
<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet45-snapshots</url>
|
143 |
30208
|
sandro.lab
|
<layout>default</layout>
|
144 |
|
|
</snapshotRepository>
|
145 |
26620
|
sandro.lab
|
</distributionManagement>
|
146 |
26600
|
sandro.lab
|
<reporting>
|
147 |
26612
|
sandro.lab
|
<plugins>
|
148 |
|
|
<plugin>
|
149 |
|
|
<groupId>org.apache.maven.plugins</groupId>
|
150 |
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
151 |
47665
|
claudio.at
|
<version>${maven-javadoc-plugin.version}</version>
|
152 |
26612
|
sandro.lab
|
<configuration>
|
153 |
|
|
<detectLinks>true</detectLinks>
|
154 |
|
|
</configuration>
|
155 |
30208
|
sandro.lab
|
</plugin>
|
156 |
26612
|
sandro.lab
|
</plugins>
|
157 |
26600
|
sandro.lab
|
</reporting>
|
158 |
|
|
<dependencies>
|
159 |
26612
|
sandro.lab
|
<dependency>
|
160 |
|
|
<groupId>log4j</groupId>
|
161 |
|
|
<artifactId>log4j</artifactId>
|
162 |
|
|
<version>[${log4j.version}]</version>
|
163 |
|
|
<exclusions>
|
164 |
|
|
<exclusion>
|
165 |
|
|
<groupId>com.sun.jmx</groupId>
|
166 |
|
|
<artifactId>jmxri</artifactId>
|
167 |
|
|
</exclusion>
|
168 |
|
|
<exclusion>
|
169 |
|
|
<groupId>com.sun.jdmk</groupId>
|
170 |
|
|
<artifactId>jmxtools</artifactId>
|
171 |
|
|
</exclusion>
|
172 |
|
|
</exclusions>
|
173 |
|
|
</dependency>
|
174 |
26600
|
sandro.lab
|
</dependencies>
|
175 |
|
|
<properties>
|
176 |
45095
|
claudio.at
|
<maven.compiler.source.version>1.8</maven.compiler.source.version>
|
177 |
|
|
<maven.compiler.target.version>1.8</maven.compiler.target.version>
|
178 |
47665
|
claudio.at
|
<maven-javadoc-plugin.version>2.10.1</maven-javadoc-plugin.version>
|
179 |
26612
|
sandro.lab
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
180 |
|
|
<dnet.container.context>app</dnet.container.context>
|
181 |
|
|
<dnet.container.port>8280</dnet.container.port>
|
182 |
45095
|
claudio.at
|
<spring.version>[4.2.5.RELEASE]</spring.version>
|
183 |
|
|
<cxf.version>[3.1.5]</cxf.version>
|
184 |
|
|
<exist.version>3.0.RC1</exist.version>
|
185 |
26612
|
sandro.lab
|
<akka.version>2.0.4</akka.version>
|
186 |
|
|
<google.coll.version>1.0</google.coll.version>
|
187 |
49726
|
claudio.at
|
<google.guava.version>23.3-jre</google.guava.version>
|
188 |
26612
|
sandro.lab
|
<google.gson.version>2.2.2</google.gson.version>
|
189 |
47623
|
claudio.at
|
<mongodb.driver.version>3.4.2</mongodb.driver.version>
|
190 |
50479
|
claudio.at
|
<apache.solr.version>7.2.0</apache.solr.version>
|
191 |
26612
|
sandro.lab
|
<google.protobuf.version>2.4.1</google.protobuf.version>
|
192 |
|
|
<log4j.version>1.2.17</log4j.version>
|
193 |
30194
|
claudio.at
|
<dom4j.version>[1.6.1]</dom4j.version>
|
194 |
45095
|
claudio.at
|
<junit.version>4.9</junit.version>
|
195 |
26612
|
sandro.lab
|
<javax.servlet.version>[3.1.0]</javax.servlet.version>
|
196 |
45095
|
claudio.at
|
<mockito.version>2.3.7</mockito.version>
|
197 |
|
|
<quartz.version>2.2.2</quartz.version>
|
198 |
45382
|
claudio.at
|
<saxon.version>9.1.0.8</saxon.version>
|
199 |
47020
|
claudio.at
|
<ehcache.version>2.10.3</ehcache.version>
|
200 |
47623
|
claudio.at
|
<jackson.version>2.6.6</jackson.version>
|
201 |
50674
|
claudio.at
|
<postgres.jdbc.version>42.2.1</postgres.jdbc.version>
|
202 |
26612
|
sandro.lab
|
<!-- apache commons properties -->
|
203 |
|
|
<commons.lang.version>2.6</commons.lang.version>
|
204 |
|
|
<commons.io.version>2.4</commons.io.version>
|
205 |
|
|
<commons.logging.version>1.1.3</commons.logging.version>
|
206 |
|
|
<commons.collections.version>3.2.1</commons.collections.version>
|
207 |
45382
|
claudio.at
|
<commons.codec.version>1.9</commons.codec.version>
|
208 |
47020
|
claudio.at
|
<commons.net.version>3.3</commons.net.version>
|
209 |
|
|
<commons.compress.version>1.6</commons.compress.version>
|
210 |
48488
|
alessia.ba
|
<!-- hadoop DM cluster properties -->
|
211 |
|
|
<dm.cdh.version>cdh4.7.0</dm.cdh.version>
|
212 |
|
|
<hadoop.core.version>2.0.0-mr1-${dm.cdh.version}</hadoop.core.version>
|
213 |
|
|
<hadoop.common.version>2.0.0-${dm.cdh.version}</hadoop.common.version>
|
214 |
|
|
<hadoop.hdfs.version>2.0.0-${dm.cdh.version}</hadoop.hdfs.version>
|
215 |
|
|
<apache.hbase.version>0.94.15-${dm.cdh.version}</apache.hbase.version>
|
216 |
|
|
<apache.oozie.version>3.3.2-${dm.cdh.version}</apache.oozie.version>
|
217 |
26612
|
sandro.lab
|
<!-- 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 |
26600
|
sandro.lab
|
</properties>
|
233 |
26651
|
sandro.lab
|
</project>
|