Add toString
[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.11-SNAPSHOT</version>
7   <name>cql-java</name>
8   <url>http://www.indexdata.com/cql-java</url>
9   <licenses>
10     <license>
11       <name>LGPL</name>
12       <url>http://www.indexdata.com/licences/lgpl</url>
13       <distribution>repo</distribution>
14     </license>
15   </licenses>
16   <inceptionYear>2008</inceptionYear>
17   <organization>
18     <name>Index Data</name>
19     <url>http://www.indexdata.com</url>
20   </organization>
21   <developers>
22     <developer>
23       <name>Mike Taylor</name>      
24       <id>mike</id>
25       <email>mike@indexdata.com</email>
26       <organization>Index Data</organization>
27       <organizationUrl>http://www.indexdata.com/</organizationUrl>
28       <roles />
29       <timezone />
30     </developer>
31     <developer>
32       <name>Jakub Skoczen</name>
33       <id>jakub</id>
34       <email>jakub@indexdata.dk</email>
35       <organization>Index Data</organization>
36       <organizationUrl>http://www.indexdata.com/</organizationUrl>
37       <roles />
38       <timezone />
39     </developer>
40   </developers>
41   <scm>
42     <connection>scm:git:ssh://git.indexdata.com:222/home/git/pub/cql-java</connection>
43     <url>http://git.indexdata.com/?p=cql-java.git</url>
44   </scm>
45   <issueManagement>
46     <system>Bugzilla</system>
47     <url>http://bugzilla.indexdata.dk/</url>
48   </issueManagement>
49   <ciManagement>
50     <system>hudson</system>
51     <url>http://hudson.indexdata.com/</url>
52   </ciManagement>
53   <reporting>
54     <plugins>
55       <plugin>
56         <groupId>org.apache.maven.plugins</groupId>
57         <artifactId>maven-javadoc-plugin</artifactId>
58         <version>2.8.1</version>
59         <configuration>
60           <chartset>UTF-8</chartset>
61         </configuration>
62       </plugin>
63     </plugins>
64   </reporting>
65   <build>
66     <extensions>
67       <extension>
68         <groupId>org.apache.maven.wagon</groupId>
69         <artifactId>wagon-ssh</artifactId>
70         <version>2.2</version>
71       </extension>
72       <extension>
73         <groupId>org.apache.maven.wagon</groupId>
74         <artifactId>wagon-ssh-external</artifactId>
75         <version>2.2</version>
76       </extension>
77     </extensions>
78     <plugins>
79       <plugin>
80         <groupId>org.apache.maven.plugins</groupId>
81         <artifactId>maven-compiler-plugin</artifactId>
82         <version>2.0.2</version>
83         <configuration>
84           <source>1.6</source>
85           <target>1.6</target>
86         </configuration>
87       </plugin>
88       <plugin>
89         <groupId>org.apache.maven.plugins</groupId>
90         <artifactId>maven-release-plugin</artifactId>
91         <version>2.2.2</version>
92         <configuration>
93           <preparationGoals>clean verify</preparationGoals>
94           <releaseProfiles>production</releaseProfiles>
95           <tagNameFormat>v@{project.version}</tagNameFormat>
96           <pushChanges>false</pushChanges>
97           <localCheckout>true</localCheckout>
98         </configuration>
99       </plugin>
100     </plugins>
101   </build>
102   <dependencies>
103     <dependency>
104       <groupId>junit</groupId>
105       <artifactId>junit</artifactId>
106       <version>3.8.1</version>
107       <scope>test</scope>
108     </dependency>
109   </dependencies>
110   <distributionManagement>
111     <repository>
112       <uniqueVersion>false</uniqueVersion>
113       <id>id-maven-repo</id>
114       <name>Index Data Maven Repository</name>
115       <url>scp://maven.indexdata.com:222/var/www/maven/repository</url>
116     </repository>
117     <site>
118       <id>id-website</id>
119       <url>scpexe://www.indexdata.com/var/www/software/cql-java/</url>
120     </site>
121   </distributionManagement>
122   <repositories>
123     <repository>
124       <id>id-maven-repo</id>
125       <url>http://maven.indexdata.com</url>
126     </repository>
127   </repositories>
128   <properties>
129     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
130   </properties>
131   <profiles>
132         <profile>
133       <id>maven-3</id>
134       <activation>
135         <file>
136           <!--  This employs that the basedir expression is only recognized by Maven 3.x (see MNG-2363) -->
137           <exists>${basedir}</exists>
138         </file>
139       </activation>
140       <build>
141         <pluginManagement>
142           <plugins>
143             <plugin>
144               <groupId>org.apache.maven.plugins</groupId>
145               <artifactId>maven-site-plugin</artifactId>
146               <version>3.0</version>
147             </plugin>
148           </plugins>
149         </pluginManagement>
150         <plugins>
151           <plugin>
152             <artifactId>maven-site-plugin</artifactId>
153             <executions>
154               <execution>
155                 <id>attach-descriptor</id>
156                 <goals>
157                   <goal>attach-descriptor</goal>
158                 </goals>
159               </execution>
160             </executions>
161           </plugin>
162         </plugins>
163       </build>
164     </profile>
165   </profiles>
166 </project>
167