Project

General

Profile

1 22916 george.ath
<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 27063 antonis.le
        <parent>
4
                <groupId>eu.dnetlib</groupId>
5
                <artifactId>dnet-parent</artifactId>
6 27948 antonis.le
                <version>1.0.0-SNAPSHOT</version>
7 27063 antonis.le
        </parent>
8
9 22916 george.ath
  <modelVersion>4.0.0</modelVersion>
10
11 27063 antonis.le
  <groupId>eu.dnetlib</groupId>
12 22916 george.ath
  <artifactId>uoa-espas-cql</artifactId>
13 27948 antonis.le
  <version>3.0-SNAPSHOT</version>
14 22916 george.ath
  <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 27948 antonis.le
<!--
23 22944 george.ath
  <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 23674 george.ath
    <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 22944 george.ath
  </build>
52 27948 antonis.le
 -->
53 22944 george.ath
  <dependencies>
54 22916 george.ath
    <dependency>
55
      <groupId>junit</groupId>
56
      <artifactId>junit</artifactId>
57 22944 george.ath
      <version>[4.8,4.11]</version>
58 22916 george.ath
      <scope>test</scope>
59 22944 george.ath
      <type>jar</type>
60 22916 george.ath
    </dependency>
61 22944 george.ath
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 27063 antonis.le
      <version>[1.2.11, 1.2.17]</version>
71 22944 george.ath
    </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 22916 george.ath
  </dependencies>
79 22944 george.ath
80
  <repositories>
81
      <repository>
82
          <id>id-maven-repo</id>
83
          <url>http://maven.indexdata.com/</url>
84
      </repository>
85
  </repositories>
86 22916 george.ath
</project>