Project

General

Profile

1
<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/xsd/maven-4.0.0.xsd">
2
    <modelVersion>4.0.0</modelVersion>
3
    <parent>
4
        <groupId>eu.dnetlib</groupId>
5
        <artifactId>dnet45-parent</artifactId>
6
        <version>1.0.0</version>
7
    </parent>
8
    <groupId>eu.dnetlib</groupId>
9
    <artifactId>dnet-s3-objectStore</artifactId>
10
    <version>2.0.2-SNAPSHOT</version>
11
    <scm>
12
        <developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/dnet-s3-objectStore/trunk</developerConnection>
13
    </scm>
14
    <dependencies>
15
        <dependency>
16
            <groupId>com.amazonaws</groupId>
17
            <artifactId>aws-java-sdk-s3</artifactId>
18
            <version>1.11.592</version>
19
        </dependency>
20

    
21

    
22
        <dependency>
23
            <groupId>eu.dnetlib</groupId>
24
            <artifactId>dnet-modular-objectstore-service</artifactId>
25
            <version>[5.0.0,6.0.0)</version>
26
        </dependency>
27
        <dependency>
28
            <groupId>eu.dnetlib</groupId>
29
            <artifactId>cnr-resultset-service</artifactId>
30
            <version>[2.0.0,3.0.0)</version>
31
        </dependency>
32
        <dependency>
33
            <groupId>eu.dnetlib</groupId>
34
            <artifactId>cnr-resultset-client</artifactId>
35
            <version>[2.0.0,3.0.0)</version>
36
        </dependency>
37
        <dependency>
38
            <groupId>junit</groupId>
39
            <artifactId>junit</artifactId>
40
            <version>${junit.version}</version>
41
            <scope>test</scope>
42
        </dependency>
43
        <dependency>
44
            <groupId>org.mongodb</groupId>
45
            <artifactId>mongo-java-driver</artifactId>
46
            <version>${mongodb.driver.version}</version>
47
        </dependency>
48
        <dependency>
49
            <groupId>javax.servlet</groupId>
50
            <artifactId>javax.servlet-api</artifactId>
51
            <version>${javax.servlet.version}</version>
52
            <scope>provided</scope>
53
        </dependency>
54

    
55
    </dependencies>
56
</project>
(2-2/2)