Project

General

Profile

« Previous | Next » 

Revision 63205

Added by Alessia Bardi 4 months ago

preparing for the updated release of dnet-parent 2.0.0 with https and new hostname for the maven repository URLs

View differences:

modules/dnet-parent/tags/dnet-parent-2.0.0/deploy.info
1
{
2
		"type_source": "SVN",
3
		"goal": "package -U source:jar",
4
		"url": "http://svn-public.driver.research-infrastructures.eu/driver/dnet50/modules/dnet-parent/tags/dnet-parent-2.0.0",
5
		"deploy_repository": "dnet5-bootstrap-release",
6
		"version": "5",
7
		"mail": "sandro.labruzzo@isti.cnr.it,michele.artini@isti.cnr.it, claudio.atzori@isti.cnr.it, alessia.bardi@isti.cnr.it",
8
		"deploy_repository_url": "http://maven.research-infrastructures.eu/nexus/content/repositories/dnet5-bootstrap-release/",
9
		"name": "dnet-parent"
10
}
modules/dnet-parent/tags/dnet-parent-2.0.0/pom.xml
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</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-release</id>
30
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet5-bootstrap-release/</url>
31
		</pluginRepository>
32
	</pluginRepositories>
33

  
34

  
35
	<repositories>
36
		<repository>
37
			<id>dnet-deps</id>
38
			<name>dnet-dependencies</name>
39
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet-deps</url>
40
			<layout>default</layout>
41
		</repository>
42
		<repository>
43
			<id>dnet5-releases</id>
44
			<name>D-Net 5 Releases</name>
45
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet5-releases</url>
46
			<layout>default</layout>
47
			<snapshots>
48
				<enabled>false</enabled>
49
			</snapshots>
50
			<releases>
51
				<enabled>true</enabled>				
52
			</releases>
53
		</repository>
54

  
55
	</repositories>
56

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

  
124

  
125
	<distributionManagement>
126
		<repository>
127
			<id>dnet5-releases</id>
128
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet5-releases/</url>
129
		</repository>
130
	</distributionManagement>
131

  
132

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

  
220
	<profiles>
221
		<profile>
222
			<id>java8-doclint-disabled</id>
223
			<activation>
224
				<jdk>[1.8,)</jdk>
225
			</activation>
226
			<properties>
227
				<javadoc.opts>-Xdoclint:none</javadoc.opts>
228
			</properties>
229
		</profile>
230
	</profiles>
231
</project>

Also available in: Unified diff