Depend on jar
[cql-java-moved-to-github.git] / pom.xml
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/maven-v4_0_0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4   <groupId>org.z3950.zing</groupId>
5   <artifactId>cql-java</artifactId>
6   <packaging>jar</packaging>
7   <version>1.8</version>
8   <name>cql-java</name>
9   <url>http://maven.apache.org</url>
10     <build>
11         <plugins>
12             <plugin>
13                 <groupId>org.apache.maven.plugins</groupId>
14                 <artifactId>maven-compiler-plugin</artifactId>
15                 <version>2.0.2</version>
16                 <configuration>
17                     <source>1.6</source>
18                     <target>1.6</target>
19                 </configuration>
20             </plugin>
21         </plugins>
22     </build>
23     <dependencies>
24     <dependency>
25       <groupId>junit</groupId>
26       <artifactId>junit</artifactId>
27       <version>3.8.1</version>
28       <scope>test</scope>
29     </dependency>
30   </dependencies>
31   <distributionManagement>
32     <repository>
33       <uniqueVersion>false</uniqueVersion>
34       <id>id-maven-repo</id>
35       <name>Index Data Maven Repository</name>
36       <url>scp://maven.indexdata.com/var/www/maven/repository</url>
37     </repository>
38   </distributionManagement>
39   <repositories>
40     <repository>
41       <id>id-maven-repo</id>
42       <url>http://maven.indexdata.com</url>
43     </repository>
44   </repositories>
45 </project>
46