Project

General

Profile

« Previous | Next » 

Revision 50160

Added by Stefanos Gatsios over 6 years ago

View differences:

pom.xml
1 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" 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-container-parent</artifactId>
6
		<version>1.0.0</version>
7
	</parent>
8
	<modelVersion>4.0.0</modelVersion>
9
	<groupId>eu.dnetlib</groupId>
10
	<artifactId>dnet-openaire-users</artifactId>
11
	<packaging>war</packaging>
12
	<version>1.0.0-SNAPSHOT</version>
13
  	<scm>
14
                <developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/dnet-openaire-users/branches/redis</developerConnection>
15
        </scm>
16
	<dependencies>
17
		<dependency>
18
			<groupId>eu.dnetlib</groupId>
19
			<artifactId>uoa-user-management</artifactId>
20
			<version>[2.0.0-SNAPSHOT, 3.0.0)</version>
21
		</dependency>
22
		<dependency>
23
			<groupId>eu.dnetlib</groupId>
24
			<artifactId>dnet-runtime</artifactId>
25
			<version>[1.0.0, 2.0.0)</version>
26
		</dependency>
27
		<dependency>
28
			<groupId>org.apache.cxf</groupId>
29
			<artifactId>cxf-rt-transports-http</artifactId>
30
			<version>${cxf.version}</version>
31
		</dependency>
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-SNAPSHOT</version>
8
    </parent>
9
    <modelVersion>4.0.0</modelVersion>
10
    <groupId>eu.dnetlib</groupId>
11
    <artifactId>dnet-openaire-users</artifactId>
12
    <packaging>war</packaging>
13
    <version>1.0.0-SNAPSHOT</version>
14
    <scm>
15
        <developerConnection>
16
            scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/dnet-openaire-users/branches/redis
17
        </developerConnection>
18
    </scm>
19
    <dependencies>
32 20
        <dependency>
21
            <groupId>eu.dnetlib</groupId>
22
            <artifactId>uoa-user-management</artifactId>
23
            <version>[2.0.0-SNAPSHOT, 3.0.0)</version>
24
        </dependency>
25
        <dependency>
26
            <groupId>org.slf4j</groupId>
27
            <artifactId>slf4j-api</artifactId>
28
            <version>1.7.5</version>
29
        </dependency>
30
        <dependency>
31
            <groupId>org.slf4j</groupId>
32
            <artifactId>slf4j-log4j12</artifactId>
33
            <version>1.7.5</version>
34
        </dependency>
35
        <dependency>
36
            <groupId>eu.dnetlib</groupId>
37
            <artifactId>dnet-runtime</artifactId>
38
            <version>[1.0.0, 2.0.0)</version>
39
        </dependency>
40
        <dependency>
41
            <groupId>org.apache.cxf</groupId>
42
            <artifactId>cxf-rt-transports-http</artifactId>
43
            <version>${cxf.version}</version>
44
        </dependency>
45
        <dependency>
33 46
            <groupId>jstl</groupId>
34 47
            <artifactId>jstl</artifactId>
35 48
            <version>1.2</version>
36 49
        </dependency>
37
		<dependency>
38
			<groupId>javax.servlet</groupId>
39
			<artifactId>javax.servlet-api</artifactId>
40
			<version>3.0.1</version>
41
		</dependency>
42
		<dependency>
43
			<groupId>eu.dnetlib</groupId>
44
			<artifactId>uoa-user-management</artifactId>
45
			<version>2.0.0-SNAPSHOT</version>
46
		</dependency>
47
	<dependency>
48
		<groupId>org.springframework.security</groupId>
49
		<artifactId>spring-security-core</artifactId>
50
		<version>4.2.1.RELEASE</version>
51
	</dependency>
52
	<dependency>
53
		<groupId>org.springframework.security</groupId>
54
		<artifactId>spring-security-config</artifactId>
55
		<version>4.2.1.RELEASE</version>
56
	</dependency>
57
		<dependency>
58
			<groupId>org.springframework.security</groupId>
59
			<artifactId>spring-security-web</artifactId>
60
			<version>4.2.1.RELEASE</version>
61
		</dependency>
62
	<dependency>
63
		<groupId>com.google.code.gson</groupId>
64
		<artifactId>gson</artifactId>
65
		<version>2.6.2</version>
66
	</dependency>
67
	<dependency>
68
		<groupId>javax.servlet</groupId>
69
		<artifactId>javax.servlet-api</artifactId>
70
		<version>3.0.1</version>
71
		<scope>provided</scope>
72
	</dependency>
50
        <dependency>
51
            <groupId>javax.servlet</groupId>
52
            <artifactId>javax.servlet-api</artifactId>
53
            <version>3.0.1</version>
54
        </dependency>
55
        <dependency>
56
            <groupId>eu.dnetlib</groupId>
57
            <artifactId>uoa-user-management</artifactId>
58
            <version>2.0.0-SNAPSHOT</version>
59
        </dependency>
60
        <dependency>
61
            <groupId>org.springframework.security</groupId>
62
            <artifactId>spring-security-core</artifactId>
63
            <version>4.2.1.RELEASE</version>
64
        </dependency>
65
        <dependency>
66
            <groupId>org.springframework.security</groupId>
67
            <artifactId>spring-security-config</artifactId>
68
            <version>4.2.1.RELEASE</version>
69
        </dependency>
70
        <dependency>
71
            <groupId>org.springframework.security</groupId>
72
            <artifactId>spring-security-web</artifactId>
73
            <version>4.2.1.RELEASE</version>
74
        </dependency>
75
        <dependency>
76
            <groupId>com.google.code.gson</groupId>
77
            <artifactId>gson</artifactId>
78
            <version>2.6.2</version>
79
        </dependency>
80
        <dependency>
81
            <groupId>javax.servlet</groupId>
82
            <artifactId>javax.servlet-api</artifactId>
83
            <version>3.0.1</version>
84
            <scope>provided</scope>
85
        </dependency>
73 86

  
74
	<dependency>
75
		<groupId>org.mitre</groupId>
76
		<artifactId>openid-connect-client</artifactId>
77
		<version>1.3.0</version>
78
	</dependency>
87
        <dependency>
88
            <groupId>org.mitre</groupId>
89
            <artifactId>openid-connect-client</artifactId>
90
            <version>1.3.0</version>
91
        </dependency>
79 92

  
80 93

  
81
		<!-- About redis -->
94
        <!-- About redis -->
82 95

  
83
		<dependency>
84
			<groupId>org.springframework.session</groupId>
85
			<artifactId>spring-session-data-redis</artifactId>
86
			<version>1.3.1.RELEASE</version>
87
			<type>pom</type>
88
		</dependency>
89
		<dependency>
90
			<groupId>biz.paluch.redis</groupId>
91
			<artifactId>lettuce</artifactId>
92
			<version>3.5.0.Final</version>
93
		</dependency>
94
		<dependency>
95
			<groupId>org.springframework</groupId>
96
			<artifactId>spring-web</artifactId>
97
			<version>4.3.4.RELEASE</version>
98
		</dependency>
96
        <dependency>
97
            <groupId>org.springframework.session</groupId>
98
            <artifactId>spring-session-data-redis</artifactId>
99
            <version>1.3.1.RELEASE</version>
100
            <type>pom</type>
101
        </dependency>
102
        <dependency>
103
            <groupId>biz.paluch.redis</groupId>
104
            <artifactId>lettuce</artifactId>
105
            <version>3.5.0.Final</version>
106
        </dependency>
107
        <dependency>
108
            <groupId>org.springframework</groupId>
109
            <artifactId>spring-web</artifactId>
110
            <version>4.3.4.RELEASE</version>
111
        </dependency>
99 112

  
100
	</dependencies>
113
    </dependencies>
101 114
</project>
102 115

  

Also available in: Unified diff