76f3e14cce593c59dc540498c38404ebc743e280
[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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2   <modelVersion>4.0.0</modelVersion>
3   <groupId>org.z3950.zing</groupId>
4   <artifactId>cql-java</artifactId>
5   <packaging>jar</packaging>
6   <version>1.10-SNAPSHOT</version>
7   <name>cql-java</name>
8   <url>http://maven.apache.org</url>
9   <scm>
10     <connection>scm:git:ssh://git.indexdata.com:222/home/git/pub/cql-java</connection>
11     <url>http://git.indexdata.com/?p=cql-java.git</url>
12   </scm>
13   <build>
14     <extensions>
15       <extension>
16         <groupId>org.apache.maven.wagon</groupId>
17         <artifactId>wagon-ssh</artifactId>
18         <version>1.0-beta-6</version>
19       </extension>
20     </extensions>
21     <plugins>
22       <plugin>
23         <groupId>org.apache.maven.plugins</groupId>
24         <artifactId>maven-compiler-plugin</artifactId>
25         <version>2.0.2</version>
26         <configuration>
27           <source>1.6</source>
28           <target>1.6</target>
29         </configuration>
30       </plugin>
31       <plugin>
32         <groupId>org.apache.maven.plugins</groupId>
33         <artifactId>maven-release-plugin</artifactId>
34         <version>2.2.2</version>
35         <configuration>
36           <preparationGoals>clean verify</preparationGoals>
37           <releaseProfiles>production</releaseProfiles>
38           <tagNameFormat>v@{project.version}</tagNameFormat>
39           <pushChanges>false</pushChanges>
40           <localCheckout>true</localCheckout>
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   <properties>
68     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
69   </properties>
70 </project>
71