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>org.aspectj</groupId>
39
          <artifactId>aspectjrt</artifactId>
40
        </exclusion>
41
        <exclusion>
42
          <groupId>org.eclipse.jetty</groupId>
43
          <artifactId>jetty-security</artifactId>
44
        </exclusion>
45
        <exclusion>
46
          <groupId>org.eclipse.jetty</groupId>
47
          <artifactId>jetty-server</artifactId>
48
        </exclusion>
49
        <exclusion>
50
          <groupId>org.eclipse.jetty</groupId>
51
          <artifactId>jetty-util</artifactId>
52
        </exclusion>
53
        <exclusion>
54
          <artifactId>javax.servlet</artifactId>
55
          <groupId>org.eclipse.jetty.orbit</groupId>
56
        </exclusion>
57
        <exclusion>
58
          <groupId>net.sf.saxon</groupId>
59
          <artifactId>Saxon-HE</artifactId>
60
        </exclusion>
61
      </exclusions>
62
    </dependency>
63
    <dependency>
64
      <groupId>javax.servlet</groupId>
65
      <artifactId>javax.servlet-api</artifactId>
66
      <version>${javax.servlet.version}</version>
67
      <scope>provided</scope>
68
    </dependency>
69

    
70
    <dependency>
71
      <artifactId>exist-start</artifactId>
72
      <groupId>org.exist-db</groupId>
73
      <version>3.0.RC1</version>
74
    </dependency>
75

    
76
    <dependency>
77
      <groupId>org.aspectj</groupId>
78
      <artifactId>aspectjtools</artifactId>
79
      <version>1.8.9</version>
80
    </dependency>
81

    
82

    
83

    
84

    
85
    <!-- DB Dependencies -->
86

    
87
    <dependency>
88
      <groupId>org.springframework</groupId>
89
      <artifactId>spring-beans</artifactId>
90
      <version>${spring.version}</version>
91
    </dependency>
92
    <dependency>
93
      <groupId>org.springframework</groupId>
94
      <artifactId>spring-jdbc</artifactId>
95
      <version>${spring.version}</version>
96
    </dependency>
97
    <dependency>
98
      <groupId>org.springframework</groupId>
99
      <artifactId>spring-tx</artifactId>
100
      <version>${spring.version}</version>
101
    </dependency>
102
    <dependency>
103
      <groupId>org.springframework</groupId>
104
      <artifactId>spring-orm</artifactId>
105
      <version>${spring.version}</version>
106
    </dependency>
107
    <dependency>
108
      <groupId>org.postgresql</groupId>
109
      <artifactId>postgresql</artifactId>
110
      <version>9.4.1208.jre7</version>
111
    </dependency>
112

    
113
    <dependency>
114
      <groupId>org.xerial</groupId>
115
      <artifactId>sqlite-jdbc</artifactId>
116
      <version>3.8.11.2</version>
117
    </dependency>
118

    
119
    <dependency>
120
      <groupId>org.hibernate</groupId>
121
      <artifactId>hibernate-entitymanager</artifactId>
122
      <version>5.0.8.Final</version>
123
    </dependency>
124

    
125

    
126
    <dependency>
127
      <groupId>hsqldb</groupId>
128
      <artifactId>hsqldb</artifactId>
129
      <version>1.8.0.7</version>
130
      <scope>test</scope>
131
    </dependency>
132

    
133
    <dependency>
134
      <groupId>org.apache.commons</groupId>
135
      <artifactId>commons-dbcp2</artifactId>
136
      <version>2.1.1</version>
137
    </dependency>
138
    <dependency>
139
      <groupId>org.aspectj</groupId>
140
      <artifactId>aspectjrt</artifactId>
141
      <version>1.6.3</version>
142
      <scope>test</scope>
143
    </dependency>
144
    <dependency>
145
      <groupId>org.aspectj</groupId>
146
      <artifactId>aspectjweaver</artifactId>
147
      <version>1.6.3</version>
148
      <scope>test</scope>
149
    </dependency>
150

    
151

    
152

    
153

    
154

    
155
    <dependency>
156
      <groupId>org.springframework</groupId>
157
      <artifactId>spring-tx</artifactId>
158
      <version>${spring.version}</version>
159
    </dependency>
160

    
161

    
162

    
163
    <dependency>
164
      <groupId>junit</groupId>
165
      <artifactId>junit</artifactId>
166
      <version>${junit.version}</version>
167
      <scope>test</scope>
168
    </dependency>
169

    
170
    <dependency>
171
      <groupId>commons-beanutils</groupId>
172
      <artifactId>commons-beanutils</artifactId>
173
      <version>1.8.3</version>
174

    
175
    </dependency>
176

    
177

    
178
  </dependencies>
179

    
180
  <repositories>
181
    <repository>
182
      <id>exist</id>
183
      <url>https://raw.github.com/eXist-db/mvn-repo/master/</url>
184
    </repository>
185

    
186
  </repositories>
187

    
188

    
189

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