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>1.0.0-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</artifactId>
18
            <version>1.11.478</version>
19
        </dependency>
20

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

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