Project

General

Profile

1
<?xml version="1.0" ?>
2
<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">
3
	<parent>
4
		<groupId>eu.dnetlib</groupId>
5
		<artifactId>dnet45-parent</artifactId>
6
		<version>1.0.0-SNAPSHOT</version>
7
	</parent>
8
	<modelVersion>4.0.0</modelVersion>
9
	<groupId>eu.dnetlib</groupId>
10
	<artifactId>uoa-claims</artifactId>
11
	<packaging>jar</packaging>
12
	<version>2.0.1-SNAPSHOT</version>
13
	<scm>
14
                <developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/uoa-claims/trunk</developerConnection> 
15
        </scm>
16
	<dependencies>
17
		<dependency>
18
			<groupId>javax.xml.ws</groupId>
19
			<artifactId>jaxws-api</artifactId>
20
			<version>2.2.8</version>
21
		</dependency>
22
		<dependency>
23
			<groupId>junit</groupId>
24
			<artifactId>junit</artifactId>
25
			<version>${junit.version}</version>
26
		</dependency>
27
	    <!--    <dependency>
28
	            <groupId>eu.dnetlib</groupId>
29
	            <artifactId>uoa-commons</artifactId>
30
	            <version>[2.0.0, 3.0.0)</version>
31
	        </dependency>-->
32
        <dependency>
33
            <groupId>javax.servlet</groupId>
34
            <artifactId>servlet-api</artifactId>
35
            <version>2.5</version>
36
            <scope>provided</scope>
37
        </dependency>
38
		<dependency>
39
			<groupId>org.springframework</groupId>
40
			<artifactId>spring-web</artifactId>
41
			<version>${spring.version}</version>
42
		</dependency>
43
		<dependency>
44
			<groupId>commons-io</groupId>
45
			<artifactId>commons-io</artifactId>
46
			<version>2.6</version>
47
		</dependency>
48
		<dependency>
49
			<groupId>org.springframework</groupId>
50
			<artifactId>spring-test</artifactId>
51
			<version>${spring.version}</version>
52
			<scope>test</scope>
53
		</dependency>
54
		<dependency>
55
			<groupId>org.springframework</groupId>
56
			<artifactId>spring-jdbc</artifactId>
57
			<version>${spring.version}</version>
58
		</dependency>
59
		<dependency>
60
			<groupId>org.springframework</groupId>
61
			<artifactId>spring-tx</artifactId>
62
			<version>${spring.version}</version>
63
		</dependency>
64
		<dependency>
65
				<groupId>org.mockito</groupId>
66
				<artifactId>mockito-core</artifactId>
67
				<version>1.9.5</version>
68
				<scope>test</scope>
69
		</dependency>
70
<!--		<dependency>-->
71
<!--			<groupId>eu.dnetlib</groupId>-->
72
<!--			<artifactId>cnr-blackboard-common</artifactId>-->
73
<!--			<version>[2.0.0, 3.0.0)</version>-->
74
<!--		</dependency>-->
75
		<dependency>
76
			<groupId>postgresql</groupId>
77
			<artifactId>postgresql</artifactId>
78
			<version>9.1-901.jdbc4</version>
79
		</dependency>
80
		<dependency>
81
			<groupId>com.google.code.gson</groupId>
82
			<artifactId>gson</artifactId>
83
			<version>2.4</version>
84
		</dependency>
85
		<dependency>
86
			<groupId>javax.mail</groupId>
87
			<artifactId>mail</artifactId>
88
			<version>1.5.0-b01</version>
89
		</dependency>
90
		<dependency>
91
			<groupId>com.googlecode.json-simple</groupId>
92
			<artifactId>json-simple</artifactId>
93
			<version>1.1</version>
94
		</dependency>
95
	</dependencies>
96

    
97
	<!--3d answer: https://stackoverflow.com/questions/23260057/the-forked-vm-terminated-without-saying-properly-goodbye-vm-crash-or-system-exi-->
98
	<!--If you use openjdk there might be a problem with surfire plugin - uncomment following lines-->
99
	<!--<build>-->
100
		<!--<plugins>-->
101
			<!--<plugin>-->
102
				<!--<groupId>org.apache.maven.plugins</groupId>-->
103
				<!--<artifactId>maven-surefire-plugin</artifactId>-->
104
				<!--<version>2.19.1</version>-->
105
				<!--<configuration>-->
106
					<!--&lt;!&ndash;<testFailureIgnore>true</testFailureIgnore>&ndash;&gt;-->
107
					<!--<useSystemClassLoader>false</useSystemClassLoader>-->
108
				<!--</configuration>-->
109
			<!--</plugin>-->
110
		<!--</plugins>-->
111
		<!--<finalName>uoa-admin-tools</finalName>-->
112
	<!--</build>-->
113
</project>
(3-3/4)