Project

General

Profile

1
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
2
		 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3
	<modelVersion>4.0.0</modelVersion>
4
	<parent>
5
		<groupId>eu.dnetlib</groupId>
6
		<artifactId>dnet-parent</artifactId>
7
		<version>1.0.0</version>
8
	</parent>
9
	<groupId>eu.dnetlib</groupId>
10
	<artifactId>dnet-openaire_dli-workflows</artifactId>
11
	<version>1.0.5-SNAPSHOT</version>
12
	<scm>
13
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/dnet-openaire_dli-workflows/trunk</developerConnection>
14
	</scm>
15
	<dependencies>
16

    
17

    
18
		<dependency>
19
			<groupId>eu.dnetlib</groupId>
20
			<artifactId>dnet-msro-service</artifactId>
21
			<version>[3.0.0,4.0.0)</version>
22
		</dependency>
23
		<dependency>
24
			<groupId>org.postgresql</groupId>
25
			<artifactId>postgresql</artifactId>
26
			<version>9.3-1100-jdbc41</version>
27
		</dependency>
28

    
29
		<dependency>
30
			<groupId>commons-dbcp</groupId>
31
			<artifactId>commons-dbcp</artifactId>
32
			<version>1.4</version>
33
		</dependency>
34
		<dependency>
35
			<groupId>org.springframework</groupId>
36
			<artifactId>spring-jdbc</artifactId>
37
			<version>${spring.version}</version>
38
		</dependency>
39
		<dependency>
40
			<groupId>eu.dnetlib</groupId>
41
			<artifactId>dnet-modular-ui</artifactId>
42
			<version>[3.0.0,4.0.0)</version>
43
		</dependency>
44
		<dependency>
45
			<groupId>javax.servlet</groupId>
46
			<artifactId>javax.servlet-api</artifactId>
47
			<version>${javax.servlet.version}</version>
48
			<scope>provided</scope>
49
		</dependency>
50

    
51
		<dependency>
52
			<groupId>org.apache.httpcomponents</groupId>
53
			<artifactId>httpclient</artifactId>
54
			<version>4.4.1</version>
55
		</dependency>
56
		<dependency>
57
			<groupId>org.mongodb</groupId>
58
			<artifactId>mongo-java-driver</artifactId>
59
			<version>${mongodb.driver.version}</version>
60
		</dependency>
61

    
62
		<dependency>
63
			<groupId>junit</groupId>
64
			<artifactId>junit</artifactId>
65
			<version>${junit.version}</version>
66
			<scope>test</scope>
67
		</dependency>
68
		<dependency>
69
			<groupId>eu.dnetlib</groupId>
70
			<artifactId>cnr-mongo-mdstore</artifactId>
71
			<version>[4.0.0, 5.0.0)</version>
72
		</dependency>
73
		<dependency>
74
			<groupId>org.apache.commons</groupId>
75
			<artifactId>commons-math3</artifactId>
76
			<version>3.2</version>
77
			<scope>test</scope>
78
		</dependency>
79

    
80

    
81
	</dependencies>
82
	<build>
83
		<plugins>
84
			<plugin>
85
				<artifactId>maven-assembly-plugin</artifactId>
86
				<configuration>
87

    
88
					<descriptorRefs>
89
						<descriptorRef>jar-with-dependencies</descriptorRef>
90
					</descriptorRefs>
91
				</configuration>
92
				<executions>
93
					<execution>
94
						<id>make-assembly</id> <!-- this is used for inheritance merges -->
95
						<phase>package</phase> <!-- bind to the packaging phase -->
96
						<goals>
97
							<goal>single</goal>
98
						</goals>
99
					</execution>
100
				</executions>
101
			</plugin>
102

    
103
		</plugins>
104
	</build>
105

    
106

    
107
</project>
(2-2/2)