f803ff8cad5b57523ac8b85db588a698311fe407
[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.9-SNAPSHOT</version>
8   <name>cql-java</name>
9   <url>http://maven.apache.org</url>
10   <scm>
11     <connection>scm:git:ssh://git.indexdata.com:222/home/git/private/cql-java</connection>
12     <url>http://gitid.indexdata.com/?p=cql-java.git</url>
13   </scm>
14   <build>
15     <extensions>
16       <extension>
17         <groupId>org.apache.maven.wagon</groupId>
18         <artifactId>wagon-ssh</artifactId>
19         <version>1.0-beta-6</version>
20       </extension>
21     </extensions>
22     <plugins>
23       <plugin>
24         <groupId>org.apache.maven.plugins</groupId>
25         <artifactId>maven-compiler-plugin</artifactId>
26         <version>2.0.2</version>
27         <configuration>
28           <source>1.6</source>
29           <target>1.6</target>
30         </configuration>
31       </plugin>
32       <plugin>
33         <groupId>org.apache.maven.plugins</groupId>
34         <artifactId>maven-release-plugin</artifactId>
35         <version>2.2.1</version>
36         <configuration>
37           <preparationGoals>clean install</preparationGoals>
38           <tagBase>https://svn.apache.org/repos/asf/maven/components/releases</tagBase>
39           <releaseProfiles>production</releaseProfiles>
40           <pushChanges>true</pushChanges>
41         </configuration>
42       </plugin>
43     </plugins>
44   </build>
45   <dependencies>
46     <dependency>
47       <groupId>junit</groupId>
48       <artifactId>junit</artifactId>
49       <version>3.8.1</version>
50       <scope>test</scope>
51     </dependency>
52   </dependencies>
53   <distributionManagement>
54     <repository>
55       <uniqueVersion>false</uniqueVersion>
56       <id>id-maven-repo</id>
57       <name>Index Data Maven Repository</name>
58       <url>scp://maven.indexdata.com:222/var/www/maven/repository</url>
59     </repository>
60   </distributionManagement>
61   <repositories>
62     <repository>
63       <id>id-maven-repo</id>
64       <url>http://maven.indexdata.com</url>
65     </repository>
66   </repositories>
67 </project>
68