Project

General

Profile

1
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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
		<dependency>
17
			<groupId>eu.dnetlib</groupId>
18
			<artifactId>dnet-msro-service</artifactId>
19
			<version>[3.0.0,4.0.0)</version>
20
		</dependency>
21
		<dependency>
22
			<groupId>org.postgresql</groupId>
23
			<artifactId>postgresql</artifactId>
24
			<version>9.3-1100-jdbc41</version>
25
		</dependency>
26

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

    
49
		<dependency>
50
			<groupId>org.apache.httpcomponents</groupId>
51
			<artifactId>httpclient</artifactId>
52
			<version>4.4.1</version>
53
		</dependency>
54

    
55

    
56
		<dependency>
57
			<groupId>junit</groupId>
58
			<artifactId>junit</artifactId>
59
			<version>${junit.version}</version>
60
			<scope>test</scope>
61
		</dependency>
62
	</dependencies>
63
	<build>
64
		<plugins>
65
			<plugin>
66
				<artifactId>maven-assembly-plugin</artifactId>
67
				<configuration>
68
					
69
					<descriptorRefs>
70
						<descriptorRef>jar-with-dependencies</descriptorRef>
71
					</descriptorRefs>
72
				</configuration>
73
				<executions>
74
					<execution>
75
						<id>make-assembly</id> <!-- this is used for inheritance merges -->
76
						<phase>package</phase> <!-- bind to the packaging phase -->
77
						<goals>
78
							<goal>single</goal>
79
						</goals>
80
					</execution>
81
				</executions>
82
			</plugin>
83

    
84
		</plugins>
85
	</build>
86

    
87

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