Move JavaDocs around
[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     <extensions>
12       <extension>
13         <groupId>org.apache.maven.wagon</groupId>
14         <artifactId>wagon-ssh</artifactId>
15         <version>1.0-beta-6</version>
16       </extension>
17     </extensions>
18         <plugins>
19             <plugin>
20                 <groupId>org.apache.maven.plugins</groupId>
21                 <artifactId>maven-compiler-plugin</artifactId>
22                 <version>2.0.2</version>
23                 <configuration>
24                     <source>1.6</source>
25                     <target>1.6</target>
26                 </configuration>
27             </plugin>
28         </plugins>
29     </build>
30     <dependencies>
31     <dependency>
32       <groupId>junit</groupId>
33       <artifactId>junit</artifactId>
34       <version>3.8.1</version>
35       <scope>test</scope>
36     </dependency>
37   </dependencies>
38   <distributionManagement>
39     <repository>
40       <uniqueVersion>false</uniqueVersion>
41       <id>id-maven-repo</id>
42       <name>Index Data Maven Repository</name>
43       <url>scp://maven.indexdata.com:222/var/www/maven/repository</url>
44     </repository>
45   </distributionManagement>
46   <repositories>
47     <repository>
48       <id>id-maven-repo</id>
49       <url>http://maven.indexdata.com</url>
50     </repository>
51   </repositories>
52 </project>
53