Add release plugin
[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   <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       <plugin>
29         <groupId>org.apache.maven.plugins</groupId>
30         <artifactId>maven-release-plugin</artifactId>
31         <version>2.2.1</version>
32         <configuration>
33           <preparationGoals>clean install</preparationGoals>
34           <tagBase>https://svn.apache.org/repos/asf/maven/components/releases</tagBase>
35           <releaseProfiles>production</releaseProfiles>
36           <pushChanges>true</pushChanges>
37         </configuration>
38       </plugin>
39     </plugins>
40   </build>
41   <dependencies>
42     <dependency>
43       <groupId>junit</groupId>
44       <artifactId>junit</artifactId>
45       <version>3.8.1</version>
46       <scope>test</scope>
47     </dependency>
48   </dependencies>
49   <distributionManagement>
50     <repository>
51       <uniqueVersion>false</uniqueVersion>
52       <id>id-maven-repo</id>
53       <name>Index Data Maven Repository</name>
54       <url>scp://maven.indexdata.com:222/var/www/maven/repository</url>
55     </repository>
56   </distributionManagement>
57   <repositories>
58     <repository>
59       <id>id-maven-repo</id>
60       <url>http://maven.indexdata.com</url>
61     </repository>
62   </repositories>
63 </project>
64