Project

General

Profile

1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4
    <parent>
5
        <groupId>eu.dnetlib</groupId>
6
        <artifactId>dnet45-container-parent</artifactId>
7
        <version>1.0.0</version>
8
    </parent>
9
    <modelVersion>4.0.0</modelVersion>
10
    <artifactId>dnet-openaire-users</artifactId>
11
    <packaging>war</packaging>
12
    <version>2.0.2-BETA</version>
13
    <scm>
14
        <developerConnection>
15
            scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/dnet-openaire-users/branches/beta
16
        </developerConnection>
17
    </scm>
18
    <dependencies>
19
        <dependency>
20
            <groupId>eu.dnetlib</groupId>
21
            <artifactId>uoa-user-management</artifactId>
22
            <version>2.0.5</version>
23
        </dependency>
24
        <dependency>
25
            <groupId>eu.dnetlib</groupId>
26
            <artifactId>uoa-login-core</artifactId>
27
            <version>1.0.3</version>
28
        </dependency>
29
        <dependency>
30
            <groupId>org.slf4j</groupId>
31
            <artifactId>slf4j-api</artifactId>
32
            <version>1.7.5</version>
33
        </dependency>
34
        <dependency>
35
            <groupId>org.slf4j</groupId>
36
            <artifactId>slf4j-log4j12</artifactId>
37
            <version>1.7.5</version>
38
        </dependency>
39
        <dependency>
40
            <groupId>eu.dnetlib</groupId>
41
            <artifactId>dnet-runtime</artifactId>
42
            <version>[1.0.0, 2.0.0)</version>
43
        </dependency>
44
        <dependency>
45
            <groupId>org.apache.cxf</groupId>
46
            <artifactId>cxf-rt-transports-http</artifactId>
47
            <version>${cxf.version}</version>
48
        </dependency>
49
        <dependency>
50
            <groupId>jstl</groupId>
51
            <artifactId>jstl</artifactId>
52
            <version>1.2</version>
53
        </dependency>
54
        <dependency>
55
            <groupId>javax.servlet</groupId>
56
            <artifactId>javax.servlet-api</artifactId>
57
            <version>3.0.1</version>
58
        </dependency>
59
        <dependency>
60
            <groupId>org.springframework.security</groupId>
61
            <artifactId>spring-security-core</artifactId>
62
            <version>4.2.1.RELEASE</version>
63
        </dependency>
64
        <dependency>
65
            <groupId>org.springframework.security</groupId>
66
            <artifactId>spring-security-config</artifactId>
67
            <version>4.2.1.RELEASE</version>
68
        </dependency>
69
        <dependency>
70
            <groupId>org.springframework.security</groupId>
71
            <artifactId>spring-security-web</artifactId>
72
            <version>4.2.1.RELEASE</version>
73
        </dependency>
74
        <dependency>
75
            <groupId>com.google.code.gson</groupId>
76
            <artifactId>gson</artifactId>
77
            <version>2.6.2</version>
78
        </dependency>
79
        <dependency>
80
            <groupId>commons-io</groupId>
81
            <artifactId>commons-io</artifactId>
82
            <version>2.6</version>
83
        </dependency>
84
        <!-- https://mvnrepository.com/artifact/javax.xml.bind/jaxb-api -->
85
        <dependency>
86
            <groupId>javax.xml.bind</groupId>
87
            <artifactId>jaxb-api</artifactId>
88
            <version>2.3.1</version>
89
        </dependency>
90
        <dependency>
91
            <groupId>com.sun.jersey</groupId>
92
            <artifactId>jersey-bundle</artifactId>
93
            <version>1.19.4</version>
94
        </dependency>
95
    </dependencies>
96
</project>
97

    
(2-2/2)