<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
        <parent>
                <groupId>eu.dnetlib</groupId>
                <artifactId>dnet-parent</artifactId>
                <version>1.0.0-SNAPSHOT</version>
        </parent>

  <modelVersion>4.0.0</modelVersion>

  <groupId>eu.dnetlib</groupId>
  <artifactId>uoa-espas-cql</artifactId>
  <version>3.0-SNAPSHOT</version>
  <packaging>jar</packaging>

  <name>uoa-espas-cql</name>
  <url>http://maven.apache.org</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>
<!--
  <build>
      <pluginManagement>
          <plugins>
              <plugin>
                  <groupId>org.apache.maven.plugins</groupId>
                  <artifactId>maven-surefire-plugin</artifactId>                
                  <version>2.16</version>
                  <configuration>
                      <systemPropertyVariables>
                          <systemPropertyVariables>
                              <log4j.configuration>${basedir}/src/main/resources/log4j.properties</log4j.configuration>
                          </systemPropertyVariables>
                      </systemPropertyVariables>
                  </configuration>
              </plugin>
          </plugins>
      </pluginManagement>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.3.2</version>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
        </configuration>
      </plugin>
    </plugins>
  </build>
 -->
  <dependencies>    
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>[4.8,4.11]</version>
      <scope>test</scope>
      <type>jar</type>
    </dependency>
    
    <dependency>
        <groupId>org.z3950.zing</groupId>
        <artifactId>cql-java</artifactId>
        <version>1.11</version>
    </dependency>
    <dependency>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
      <version>[1.2.11, 1.2.17]</version>
    </dependency>
    <dependency>
      <groupId>org.postgresql</groupId>
      <artifactId>postgresql</artifactId>
      <version>[9.1-901-1.jdbc4, 9.3-1100-jdbc4)</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  
  <repositories>
      <repository>
          <id>id-maven-repo</id>
          <url>http://maven.indexdata.com/</url>
      </repository>
  </repositories>
</project>
