Project

General

Profile

1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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>dnet-parent</artifactId>
6
    <version>2.0.0-SNAPSHOT</version>
7
    <relativePath />
8
  </parent>
9
  <modelVersion>4.0.0</modelVersion>
10
  <groupId>eu.dnetlib</groupId>
11
  <artifactId>dnet-information-service</artifactId>
12
  <packaging>jar</packaging>
13
  <version>1.0.0-SNAPSHOT</version>
14
  <scm>
15
    <developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet50/modules/dnet-information-service/trunk</developerConnection>
16
  </scm>
17

    
18

    
19
  <dependencies>
20
    <!-- Dnet Dependencies -->
21

    
22
    <dependency>
23
      <groupId>eu.dnetlib</groupId>
24
      <artifactId>dnet-core-components</artifactId>
25
      <version>1.0.0-SNAPSHOT</version>
26
    </dependency>
27

    
28
    <dependency>
29
      <groupId>org.exist-db</groupId>
30
      <artifactId>exist-core</artifactId>
31
      <version>3.0.RC1</version>
32
      <exclusions>
33
        <exclusion>
34
          <groupId>asm</groupId>
35
          <artifactId>asm</artifactId>
36
        </exclusion>
37
        <exclusion>
38
          <groupId>antlr</groupId>
39
          <artifactId>antlr</artifactId>
40
        </exclusion>
41
        <exclusion>
42
          <groupId>org.aspectj</groupId>
43
          <artifactId>aspectjrt</artifactId>
44
        </exclusion>
45
        <exclusion>
46
          <groupId>org.eclipse.jetty</groupId>
47
          <artifactId>jetty-security</artifactId>
48
        </exclusion>
49
        <exclusion>
50
          <groupId>org.eclipse.jetty</groupId>
51
          <artifactId>jetty-server</artifactId>
52
        </exclusion>
53
        <exclusion>
54
          <groupId>org.eclipse.jetty</groupId>
55
          <artifactId>jetty-util</artifactId>
56
        </exclusion>
57
        <exclusion>
58
          <artifactId>javax.servlet</artifactId>
59
          <groupId>org.eclipse.jetty.orbit</groupId>
60
        </exclusion>
61
        <exclusion>
62
          <groupId>net.sf.saxon</groupId>
63
          <artifactId>Saxon-HE</artifactId>
64
        </exclusion>
65
      </exclusions>
66
    </dependency>
67
    <dependency>
68
      <groupId>javax.servlet</groupId>
69
      <artifactId>javax.servlet-api</artifactId>
70
      <version>${javax.servlet.version}</version>
71
      <scope>provided</scope>
72
    </dependency>
73

    
74
    <dependency>
75
      <artifactId>exist-start</artifactId>
76
      <groupId>org.exist-db</groupId>
77
      <version>3.0.RC1</version>
78
    </dependency>
79

    
80
    <dependency>
81
      <groupId>org.aspectj</groupId>
82
      <artifactId>aspectjtools</artifactId>
83
      <version>1.8.9</version>
84
    </dependency>
85

    
86

    
87

    
88

    
89
    <!-- DB Dependencies -->
90

    
91
    <dependency>
92
      <groupId>org.springframework</groupId>
93
      <artifactId>spring-beans</artifactId>
94
      <version>${spring.version}</version>
95
    </dependency>
96
    <dependency>
97
      <groupId>org.springframework</groupId>
98
      <artifactId>spring-jdbc</artifactId>
99
      <version>${spring.version}</version>
100
    </dependency>
101
    <dependency>
102
      <groupId>org.springframework</groupId>
103
      <artifactId>spring-tx</artifactId>
104
      <version>${spring.version}</version>
105
    </dependency>
106
    <dependency>
107
      <groupId>org.springframework</groupId>
108
      <artifactId>spring-orm</artifactId>
109
      <version>${spring.version}</version>
110
    </dependency>
111
    <dependency>
112
      <groupId>org.postgresql</groupId>
113
      <artifactId>jdbc4driver</artifactId>
114
      <version>8.3</version>
115
    </dependency>
116

    
117
    <dependency>
118
      <groupId>org.xerial</groupId>
119
      <artifactId>sqlite-jdbc</artifactId>
120
      <version>3.8.11.2</version>
121
    </dependency>
122

    
123
    <dependency>
124
      <groupId>org.hibernate</groupId>
125
      <artifactId>hibernate-entitymanager</artifactId>
126
      <version>5.0.8.Final</version>
127
      <exclusions>
128
        <exclusion>
129
          <groupId>antlr</groupId>
130
          <artifactId>antlr</artifactId>
131
        </exclusion>
132
      </exclusions>
133
    </dependency>
134

    
135

    
136
    <dependency>
137
      <groupId>hsqldb</groupId>
138
      <artifactId>hsqldb</artifactId>
139
      <version>1.8.0.7</version>
140
      <scope>test</scope>
141
    </dependency>
142

    
143
    <dependency>
144
      <groupId>org.apache.commons</groupId>
145
      <artifactId>commons-dbcp2</artifactId>
146
      <version>2.1.1</version>
147
    </dependency>
148
    <dependency>
149
      <groupId>org.aspectj</groupId>
150
      <artifactId>aspectjrt</artifactId>
151
      <version>1.6.3</version>
152
      <scope>test</scope>
153
    </dependency>
154
    <dependency>
155
      <groupId>org.aspectj</groupId>
156
      <artifactId>aspectjweaver</artifactId>
157
      <version>1.6.3</version>
158
      <scope>test</scope>
159
    </dependency>
160

    
161

    
162

    
163

    
164

    
165
    <dependency>
166
      <groupId>org.springframework</groupId>
167
      <artifactId>spring-tx</artifactId>
168
      <version>${spring.version}</version>
169
    </dependency>
170

    
171

    
172

    
173
    <dependency>
174
      <groupId>junit</groupId>
175
      <artifactId>junit</artifactId>
176
      <version>${junit.version}</version>
177
      <scope>test</scope>
178
    </dependency>
179

    
180
    <dependency>
181
      <groupId>commons-beanutils</groupId>
182
      <artifactId>commons-beanutils</artifactId>
183
      <version>1.8.3</version>
184

    
185
    </dependency>
186

    
187

    
188
  </dependencies>
189

    
190
  <repositories>
191
    <repository>
192
      <id>exist</id>
193
      <url>https://raw.github.com/eXist-db/mvn-repo/master/</url>
194
    </repository>
195

    
196
  </repositories>
197

    
198

    
199

    
200
</project>
    (1-1/1)