1
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
3
|
<parent>
|
4
|
<groupId>eu.dnetlib</groupId>
|
5
|
<artifactId>dnet-parent</artifactId>
|
6
|
<version>1.0.0-SNAPSHOT</version>
|
7
|
</parent>
|
8
|
|
9
|
<modelVersion>4.0.0</modelVersion>
|
10
|
|
11
|
<groupId>eu.dnetlib</groupId>
|
12
|
<artifactId>uoa-espas-cql</artifactId>
|
13
|
<version>3.0-SNAPSHOT</version>
|
14
|
<packaging>jar</packaging>
|
15
|
|
16
|
<name>uoa-espas-cql</name>
|
17
|
<url>http://maven.apache.org</url>
|
18
|
|
19
|
<properties>
|
20
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
21
|
</properties>
|
22
|
<!--
|
23
|
<build>
|
24
|
<pluginManagement>
|
25
|
<plugins>
|
26
|
<plugin>
|
27
|
<groupId>org.apache.maven.plugins</groupId>
|
28
|
<artifactId>maven-surefire-plugin</artifactId>
|
29
|
<version>2.16</version>
|
30
|
<configuration>
|
31
|
<systemPropertyVariables>
|
32
|
<systemPropertyVariables>
|
33
|
<log4j.configuration>${basedir}/src/main/resources/log4j.properties</log4j.configuration>
|
34
|
</systemPropertyVariables>
|
35
|
</systemPropertyVariables>
|
36
|
</configuration>
|
37
|
</plugin>
|
38
|
</plugins>
|
39
|
</pluginManagement>
|
40
|
<plugins>
|
41
|
<plugin>
|
42
|
<groupId>org.apache.maven.plugins</groupId>
|
43
|
<artifactId>maven-compiler-plugin</artifactId>
|
44
|
<version>2.3.2</version>
|
45
|
<configuration>
|
46
|
<source>1.6</source>
|
47
|
<target>1.6</target>
|
48
|
</configuration>
|
49
|
</plugin>
|
50
|
</plugins>
|
51
|
</build>
|
52
|
-->
|
53
|
<dependencies>
|
54
|
<dependency>
|
55
|
<groupId>junit</groupId>
|
56
|
<artifactId>junit</artifactId>
|
57
|
<version>[4.8,4.11]</version>
|
58
|
<scope>test</scope>
|
59
|
<type>jar</type>
|
60
|
</dependency>
|
61
|
|
62
|
<dependency>
|
63
|
<groupId>org.z3950.zing</groupId>
|
64
|
<artifactId>cql-java</artifactId>
|
65
|
<version>1.11</version>
|
66
|
</dependency>
|
67
|
<dependency>
|
68
|
<groupId>log4j</groupId>
|
69
|
<artifactId>log4j</artifactId>
|
70
|
<version>[1.2.11, 1.2.17]</version>
|
71
|
</dependency>
|
72
|
<dependency>
|
73
|
<groupId>org.postgresql</groupId>
|
74
|
<artifactId>postgresql</artifactId>
|
75
|
<version>[9.1-901-1.jdbc4, 9.3-1100-jdbc4)</version>
|
76
|
<scope>test</scope>
|
77
|
</dependency>
|
78
|
</dependencies>
|
79
|
|
80
|
<repositories>
|
81
|
<repository>
|
82
|
<id>id-maven-repo</id>
|
83
|
<url>http://maven.indexdata.com/</url>
|
84
|
</repository>
|
85
|
</repositories>
|
86
|
</project>
|