Source is encoded in UTF-8
[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/private/cql-java</connection>
11     <url>http://gitid.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.1</version>
35         <configuration>
36           <preparationGoals>clean install</preparationGoals>
37           <tagBase>https://svn.apache.org/repos/asf/maven/components/releases</tagBase>
38           <releaseProfiles>production</releaseProfiles>
39           <pushChanges>true</pushChanges>
40         </configuration>
41       </plugin>
42     </plugins>
43   </build>
44   <dependencies>
45     <dependency>
46       <groupId>junit</groupId>
47       <artifactId>junit</artifactId>
48       <version>3.8.1</version>
49       <scope>test</scope>
50     </dependency>
51   </dependencies>
52   <distributionManagement>
53     <repository>
54       <uniqueVersion>false</uniqueVersion>
55       <id>id-maven-repo</id>
56       <name>Index Data Maven Repository</name>
57       <url>scp://maven.indexdata.com:222/var/www/maven/repository</url>
58     </repository>
59   </distributionManagement>
60   <repositories>
61     <repository>
62       <id>id-maven-repo</id>
63       <url>http://maven.indexdata.com</url>
64     </repository>
65   </repositories>
66   <properties>
67     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
68   </properties>
69 </project>
70