Refer to proper version
[yaz4j-moved-to-github.git] / examples / zgate / 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>com.indexdata</groupId>
5   <artifactId>zgate</artifactId>
6   <packaging>war</packaging>
7   <version>1.0-SNAPSHOT</version>
8   <name>HTTP-to-Z3950 gateway</name>
9   <url>http://maven.apache.org</url>
10   <dependencies>
11
12     <dependency>
13       <groupId>org.yaz4j</groupId>
14       <artifactId>yaz4j-any</artifactId>
15       <version>1.1-SNAPSHOT</version>
16       <scope>provided</scope>
17     </dependency>
18
19     <dependency>
20       <groupId>javax.servlet</groupId>
21       <artifactId>servlet-api</artifactId>
22       <version>2.5</version>
23       <scope>provided</scope>
24     </dependency>
25
26     <dependency>
27       <groupId>javax.servlet.jsp</groupId>
28       <artifactId>jsp-api</artifactId>
29       <version>2.1</version>
30       <scope>provided</scope>
31     </dependency>
32
33     <dependency>
34       <groupId>junit</groupId>
35       <artifactId>junit</artifactId>
36       <version>3.8.1</version>
37       <scope>test</scope>
38     </dependency>
39     
40   </dependencies>
41   <build>
42     <plugins>
43       <plugin>
44         <groupId>org.apache.maven.plugins</groupId>
45         <artifactId>maven-compiler-plugin</artifactId>
46         <version>2.0.2</version>
47         <configuration>
48           <source>1.5</source>
49           <target>1.5</target>
50         </configuration>
51       </plugin>
52     </plugins>
53     <finalName>zgate</finalName>
54   </build>
55 </project>