Project

General

Profile

1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0"
3
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
    <modelVersion>4.0.0</modelVersion>
6
    <groupId>eu.dnetlib</groupId>
7
    <artifactId>dnet-openaire-stats-api</artifactId>
8
    <version>1.0.0-SNAPSHOT</version>
9
    <packaging>war</packaging>
10
    <parent>
11
        <!--
12
                <groupId>eu.dnetlib</groupId>
13
                <artifactId>dnet-parent</artifactId>
14
                <version>1.0.0</version>
15
        -->
16
        <groupId>org.springframework.boot</groupId>
17
        <artifactId>spring-boot-starter-parent</artifactId>
18
        <version>1.5.4.RELEASE</version>
19
    </parent>
20

    
21
    <dependencies>
22

    
23
        <dependency>
24
            <groupId>org.springframework.boot</groupId>
25
            <artifactId>spring-boot-starter-web</artifactId>
26
            <exclusions>
27
                <exclusion>
28
                    <groupId>org.springframework.boot</groupId>
29
                    <artifactId>spring-boot-starter-logging</artifactId>
30
                </exclusion>
31
            </exclusions>
32
        </dependency>
33

    
34
        <dependency>
35
            <groupId>org.springframework.boot</groupId>
36
            <artifactId>spring-boot-starter-data-jpa</artifactId>
37
        </dependency>
38

    
39
        <dependency>
40
            <groupId>org.springframework.boot</groupId>
41
            <artifactId>spring-boot-starter-data-redis</artifactId>
42
        </dependency>
43

    
44
        <dependency>
45
            <groupId>org.springframework.boot</groupId>
46
            <artifactId>spring-boot-starter-test</artifactId>
47
            <scope>test</scope>
48
        </dependency>
49

    
50
        <dependency>
51
            <groupId>org.springframework.boot</groupId>
52
            <artifactId>spring-boot-starter-log4j2</artifactId>
53
        </dependency>
54

    
55
        <dependency>
56
            <groupId>log4j</groupId>
57
            <artifactId>log4j</artifactId>
58
            <version>1.2.17</version>
59
        </dependency>
60

    
61
        <dependency>
62
            <groupId>org.postgresql</groupId>
63
            <artifactId>postgresql</artifactId>
64
            <scope>runtime</scope>
65
        </dependency>
66

    
67
        <dependency>
68
            <groupId>junit</groupId>
69
            <artifactId>junit</artifactId>
70
            <version>3.8.1</version>
71
            <scope>test</scope>
72
        </dependency>
73

    
74
        <dependency>
75
            <groupId>com.googlecode.json-simple</groupId>
76
            <artifactId>json-simple</artifactId>
77
            <version>1.1.1</version>
78
        </dependency>
79

    
80
        <dependency>
81
            <groupId>commons-dbutils</groupId>
82
            <artifactId>commons-dbutils</artifactId>
83
            <version>1.6</version>
84
        </dependency>
85

    
86
        <!-- https://mvnrepository.com/artifact/com.cloudera.impala/jdbc -->
87
        <dependency>
88
            <groupId>com.cloudera.impala</groupId>
89
            <artifactId>jdbc</artifactId>
90
            <version>2.5.31</version>
91
            <exclusions>
92
                <exclusion>
93
                    <groupId>org.slf4j</groupId>
94
                    <artifactId>slf4j-log4j12</artifactId>
95
                </exclusion>
96
                <exclusion>
97
                    <groupId>org.apache.derby</groupId>
98
                    <artifactId>derby</artifactId>
99
                </exclusion>
100
            </exclusions>
101
        </dependency>
102

    
103
    </dependencies>
104

    
105
    <properties>
106
        <java.version>1.8</java.version>
107
        <tomcat.version>7.0.52</tomcat.version>
108
    </properties>
109

    
110

    
111
    <build>
112
        <plugins>
113
            <plugin>
114
                <groupId>org.springframework.boot</groupId>
115
                <artifactId>spring-boot-maven-plugin</artifactId>
116
            </plugin>
117
            <plugin>
118
                <artifactId>maven-war-plugin</artifactId>
119
                <configuration>
120
                    <failOnMissingWebXml>false</failOnMissingWebXml>
121
                </configuration>
122
            </plugin>
123
        </plugins>
124
        <finalName>stats-api</finalName>
125
    </build>
126

    
127
    <repositories>
128
        <repository>
129
            <id>spring-releases</id>
130
            <url>https://repo.spring.io/libs-release</url>
131
        </repository>
132
        <repository>
133
            <id>icm</id>
134
            <url>http://maven.icm.edu.pl/artifactory/repo/</url>
135
        </repository>
136
    </repositories>
137

    
138
    <pluginRepositories>
139
        <pluginRepository>
140
            <id>spring-releases</id>
141
            <url>https://repo.spring.io/libs-release</url>
142
        </pluginRepository>
143
    </pluginRepositories>
144
</project>
    (1-1/1)