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>uoa-global-parent</artifactId>
6
		<version>1.0.1</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>4.9</version>
26
			<scope>test</scope>
27
		</dependency>
28
	    <!--    <dependency>
29
	            <groupId>eu.dnetlib</groupId>
30
	            <artifactId>uoa-commons</artifactId>
31
	            <version>[2.0.0, 3.0.0)</version>
32
	        </dependency>-->
33
        <dependency>
34
            <groupId>javax.servlet</groupId>
35
            <artifactId>servlet-api</artifactId>
36
            <version>2.5</version>
37
            <scope>provided</scope>
38
        </dependency>
39
		<dependency>
40
			<groupId>org.springframework</groupId>
41
			<artifactId>spring-web</artifactId>
42
			<version>4.2.5.RELEASE</version>
43
		</dependency>
44
		<dependency>
45
			<groupId>commons-io</groupId>
46
			<artifactId>commons-io</artifactId>
47
			<version>2.6</version>
48
		</dependency>
49
		<dependency>
50
			<groupId>org.springframework</groupId>
51
			<artifactId>spring-test</artifactId>
52
			<version>4.2.5.RELEASE</version>
53
			<scope>test</scope>
54
		</dependency>
55
		<dependency>
56
			<groupId>org.springframework</groupId>
57
			<artifactId>spring-jdbc</artifactId>
58
			<version>4.2.5.RELEASE</version>
59
		</dependency>
60
		<dependency>
61
			<groupId>org.springframework</groupId>
62
			<artifactId>spring-tx</artifactId>
63
			<version>4.2.5.RELEASE</version>
64
		</dependency>
65
		<dependency>
66
				<groupId>org.mockito</groupId>
67
				<artifactId>mockito-core</artifactId>
68
				<version>1.9.5</version>
69
				<scope>test</scope>
70
		</dependency>
71
<!--		<dependency>-->
72
<!--			<groupId>eu.dnetlib</groupId>-->
73
<!--			<artifactId>cnr-blackboard-common</artifactId>-->
74
<!--			<version>[2.0.0, 3.0.0)</version>-->
75
<!--		</dependency>-->
76
		<dependency>
77
			<groupId>postgresql</groupId>
78
			<artifactId>postgresql</artifactId>
79
			<version>9.1-901.jdbc4</version>
80
		</dependency>
81
		<dependency>
82
			<groupId>com.google.code.gson</groupId>
83
			<artifactId>gson</artifactId>
84
			<version>2.4</version>
85
		</dependency>
86
		<dependency>
87
			<groupId>javax.mail</groupId>
88
			<artifactId>mail</artifactId>
89
			<version>1.5.0-b01</version>
90
		</dependency>
91
		<dependency>
92
			<groupId>com.googlecode.json-simple</groupId>
93
			<artifactId>json-simple</artifactId>
94
			<version>1.1</version>
95
		</dependency>
96
	</dependencies>
97

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