add webdefault.xml to resolved file locked in windows when mvn jetty run
[jibu.git] / pom.xml
blobb33f362afa3c09dfc806dcaf2aa0fdccb62619c1
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:xsi="http://www.w3.org/2001/XMLSchema-instance" 
19          xmlns="http://maven.apache.org/POM/4.0.0" 
20          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
21   <modelVersion>4.0.0</modelVersion>
23   <groupId>org.gaixie.jibu</groupId>
24   <artifactId>jibu-parent</artifactId>
25   <version>1.0.0-SNAPSHOT</version>
26   <packaging>pom</packaging>
28   <name>Jibu</name>
29   <description>稳定、高效、简洁的Web开发框架。</description>
30   <inceptionYear>2010</inceptionYear>
32   <organization>
33     <name>Gaixie.ORG</name>
34     <url>http://www.gaixie.org/</url>
35   </organization>
37   <licenses>
38     <license>
39       <name>The Apache Software License, Version 2.0</name>
40       <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
41     </license>
42   </licenses>
44   <properties>
45     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
46     <derby.version>10.6.1.0</derby.version>
47     <dbutils.version>1.3</dbutils.version>
48     <dbcp.version>1.4</dbcp.version>
49     <slf4j.version>1.6.1</slf4j.version>
50     <logback.version>0.9.24</logback.version>
51   </properties>
53   <modules>
54     <module>jibu-core</module>
55     <module>jibu-web</module>
56   </modules>
58   <build>
59     <pluginManagement>
60       <plugins>
61         <plugin>
62           <groupId>org.apache.maven.plugins</groupId>
63           <artifactId>maven-compiler-plugin</artifactId>
64           <configuration>
65             <!--  DBCP 1.4 compiles and runs under JDK 1.6 only (JDBC 4) -->
66             <source>1.6</source>
67             <target>1.6</target>
68             <encoding>utf-8</encoding>                        
69           </configuration>
70         </plugin>
71         <plugin>
72           <groupId>org.apache.maven.plugins</groupId>
73           <artifactId>maven-assembly-plugin</artifactId>
74         </plugin>
75         <plugin>
76           <groupId>org.apache.maven.plugins</groupId>
77           <artifactId>maven-war-plugin</artifactId>
78         </plugin>
79         <plugin>
80           <groupId>org.apache.maven.plugins</groupId>
81           <artifactId>maven-jar-plugin</artifactId>
82         </plugin>
83         <plugin>
84           <groupId>org.mortbay.jetty</groupId>
85           <artifactId>jetty-maven-plugin</artifactId>
86           <version>7.1.5.v20100705</version>
87           <configuration>
88             <webAppConfig>
89               <contextPath>/</contextPath>
90             </webAppConfig>
91           </configuration>
92         </plugin>
93       </plugins>
94     </pluginManagement>
95   </build>
97   <dependencyManagement>
98     <dependencies>
99       <dependency>
100         <groupId>junit</groupId>
101         <artifactId>junit</artifactId>
102         <version>4.8.1</version>
103         <scope>test</scope>
104       </dependency>
105       <dependency>
106         <groupId>org.dbunit</groupId>
107         <artifactId>dbunit</artifactId>
108         <version>2.4.7</version>
109         <scope>test</scope>
110       </dependency>
111       <dependency>
112         <groupId>org.easymock</groupId>
113         <artifactId>easymock</artifactId>
114         <version>3.0</version>
115         <scope>test</scope>
116       </dependency>
117       <dependency>
118         <groupId>org.mortbay.jetty</groupId>  
119         <artifactId>servlet-api</artifactId> 
120         <version>2.5-20081211</version> 
121         <scope>provided</scope>
122       </dependency> 
123       <dependency>  
124         <groupId>org.apache.derby</groupId>  
125         <artifactId>derby</artifactId>  
126         <version>${derby.version}</version> 
127       </dependency>
128       <dependency>
129         <groupId>commons-dbutils</groupId>
130         <artifactId>commons-dbutils</artifactId>
131         <version>${dbutils.version}</version>
132       </dependency>
133       <dependency>
134         <groupId>commons-dbcp</groupId>
135         <artifactId>commons-dbcp</artifactId>
136         <version>${dbcp.version}</version>
137       </dependency>
138       <dependency>  
139         <groupId>org.slf4j</groupId>
140         <artifactId>slf4j-api</artifactId>
141         <version>${slf4j.version}</version> 
142       </dependency>
143       <dependency>
144         <groupId>ch.qos.logback</groupId>
145         <artifactId>logback-core</artifactId>
146         <version>${logback.version}</version>
147       </dependency>
148       <dependency>
149         <groupId>ch.qos.logback</groupId>
150         <artifactId>logback-classic</artifactId>
151         <version>${logback.version}</version>
152       </dependency>
153       <dependency>
154         <groupId>org.gaixie.jibu</groupId>
155         <artifactId>jibu-core</artifactId>
156         <version>1.0.0-SNAPSHOT</version>
157       </dependency>
158       <dependency>
159         <groupId>org.gaixie.jibu.web</groupId>
160         <artifactId>extjs-wrapped</artifactId>
161         <version>3.2.1</version>
162         <type>zip</type>
163         <scope>runtime</scope>
164       </dependency>
165     </dependencies>
166   </dependencyManagement>
167 </project>