[maven-release-plugin] prepare release v1.0.0-m1
[jibu.git] / itest / war-itest-suite / pom.xml
blobf3db8415c3b7b72f837a18b547623805522089fa
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3    Licensed to the Apache Software Foundation (ASF) under one or more
4    contributor license agreements.  See the NOTICE file distributed with
5    this work for additional information regarding copyright ownership.
6    The ASF licenses this file to You under the Apache License, Version 2.0
7    (the "License"); you may not use this file except in compliance with
8    the License.  You may obtain a copy of the License at
10    http://www.apache.org/licenses/LICENSE-2.0
12    Unless required by applicable law or agreed to in writing, software
13    distributed under the License is distributed on an "AS IS" BASIS,
14    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15    See the License for the specific language governing permissions and
16    limitations under the License.
17   -->
18 <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">
19   <modelVersion>4.0.0</modelVersion>
20   <parent>
21     <groupId>org.gaixie.jibu.itest</groupId>
22     <artifactId>itest</artifactId>
23     <version>1.0.0-M1</version>
24   </parent>
26   <groupId>org.gaixie.jibu.itest</groupId>
27   <artifactId>war-itest-suite</artifactId>
28   <name>ITest :: War ITest Suite</name>
30   <build>
31     <plugins>
32       <plugin>
33         <artifactId>maven-compiler-plugin</artifactId>
34       </plugin>
35       <plugin>
36         <artifactId>maven-surefire-plugin</artifactId>
37         <configuration>
38           <skipTests>true</skipTests>
39         </configuration>
40       </plugin>
41       <plugin>
42         <artifactId>maven-failsafe-plugin</artifactId>
43         <configuration>
44           <encoding>utf-8</encoding>
45           <systemPropertyVariables>
46             <warPath>../../assemblies/jibu/target/jibu-${project.version}.war</warPath>
47           </systemPropertyVariables>
48         </configuration>
49         <executions>
50           <execution>
51             <goals>
52               <goal>integration-test</goal>
53               <goal>verify</goal>
54             </goals>
55           </execution>
56         </executions>
57       </plugin>
58     </plugins>
59   </build>
60   <dependencies>
61     <dependency>
62       <groupId>junit</groupId>
63       <artifactId>junit</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>httpunit</groupId>
67       <artifactId>httpunit</artifactId>
68       <version>1.7</version> 
69       <scope>test</scope>
70     </dependency>
71     <dependency>
72       <groupId>rhino</groupId>
73       <artifactId>js</artifactId>
74       <version>1.7R2</version> 
75       <scope>test</scope>
76     </dependency>
77     <dependency>
78       <groupId>org.gaixie.jibu.plugins</groupId>
79       <artifactId>jibu-json</artifactId>
80       <scope>test</scope>
81     </dependency>
82     <dependency>
83       <groupId>org.eclipse.jetty</groupId>
84       <artifactId>jetty-server</artifactId>
85       <version>${jetty.version}</version> 
86     </dependency>
87     <dependency>
88       <groupId>org.eclipse.jetty</groupId>
89       <artifactId>jetty-webapp</artifactId>
90       <version>${jetty.version}</version> 
91     </dependency>
92     <dependency>
93       <groupId>org.eclipse.jetty</groupId>
94       <artifactId>jetty-util</artifactId>
95       <version>${jetty.version}</version> 
96     </dependency>
97     <dependency>
98       <groupId>org.mortbay.jetty</groupId>  
99       <artifactId>servlet-api</artifactId> 
100       <version>2.5-20081211</version> 
101       <scope>test</scope>
102     </dependency> 
103   </dependencies>
104 </project>