增加 welcome-file 以支持 Tomcat 7 下根路径可以被 map 到 LoginServlet。
[jibu.git] / pom.xml
blobe0eccbe4bb8414d976f6ab2e1a06d58d67bc71f1
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</groupId>
22     <artifactId>gaixie</artifactId>
23     <version>1</version>
24   </parent>
26   <groupId>org.gaixie.jibu</groupId>
27   <artifactId>jibu-parent</artifactId>
28   <version>1.0.0-SNAPSHOT</version>
29   <packaging>pom</packaging>
31   <name>Jibu</name>
32   <description>稳定、高效、简洁的 Java 应用开发模板。</description>
33   <inceptionYear>2010</inceptionYear>
35   <url>http://www.gaixie.org/</url>
37   <scm>
38     <connection>scm:git:git://github.com/bitorb/jibu.git</connection>
39     <developerConnection>scm:git:git://github.com/bitorb/jibu.git</developerConnection>
40     <url>scm:git:git://github.com/bitorb/jibu.git</url>
41   </scm>
43   <developers>
44     <developer>
45       <name>Tommy Wang</name>
46       <id>tommy</id>
47       <email>bitorb@gmail.com</email>
48       <organization />
49       <roles>
50         <role>Owner</role>
51       </roles>
52     </developer>
53   </developers>
55   <properties>
56     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
57     <derby.version>10.6.1.0</derby.version>
58     <guice.version>2.0</guice.version>
59     <dbutils.version>1.3</dbutils.version>
60     <dbcp.version>1.4</dbcp.version>
61     <slf4j.version>1.6.1</slf4j.version>
62     <logback.version>0.9.24</logback.version>
63     <jetty.version>7.1.5.v20100705</jetty.version>
64   </properties>
66   <modules>
67     <module>jibu-core</module>
68     <module>jibu-web</module>
69     <module>plugins</module>
70     <module>assemblies</module>
71     <module>itest</module>
72   </modules>
74   <build>
75     <pluginManagement>
76       <plugins>
77         <plugin>
78           <groupId>org.apache.maven.plugins</groupId>
79           <artifactId>maven-compiler-plugin</artifactId>
80           <version>2.3.2</version>
81           <configuration>
82             <!--  DBCP 1.4 compiles and runs under JDK 1.6 only (JDBC 4) -->
83             <source>1.6</source>
84             <target>1.6</target>
85             <encoding>utf-8</encoding>
86           </configuration>
87         </plugin>
88         <plugin>
89           <groupId>org.apache.maven.plugins</groupId>
90           <artifactId>maven-jar-plugin</artifactId>
91           <version>2.3.1</version>
92         </plugin>
93         <plugin>
94           <groupId>org.apache.maven.plugins</groupId>
95           <artifactId>maven-release-plugin</artifactId>
96           <version>2.1</version>
97         </plugin>
98         <plugin>
99           <groupId>org.apache.maven.plugins</groupId>
100           <artifactId>maven-javadoc-plugin</artifactId>
101           <version>2.7</version>
102           <configuration>
103             <links>
104               <link>http://download.oracle.com/javase/6/docs/api/</link>
105               <link>http://download.oracle.com/javaee/5/api/</link>
106               <link>http://google-guice.googlecode.com/svn/tags/2.0/javadoc/</link>
107             </links>
108           </configuration>
109         </plugin>
110       </plugins>
111     </pluginManagement>
112   </build>
114   <dependencyManagement>
115     <dependencies>
116       <dependency>
117         <groupId>junit</groupId>
118         <artifactId>junit</artifactId>
119         <version>4.8.1</version>
120         <scope>test</scope>
121       </dependency>
122       <dependency>
123         <groupId>com.google.inject</groupId>
124         <artifactId>guice</artifactId>
125         <version>${guice.version}</version>
126       </dependency>
127       <dependency>
128         <groupId>org.slf4j</groupId>
129         <artifactId>slf4j-api</artifactId>
130         <version>${slf4j.version}</version>
131       </dependency>
132       <dependency>
133         <groupId>ch.qos.logback</groupId>
134         <artifactId>logback-core</artifactId>
135         <version>${logback.version}</version>
136       </dependency>
137       <dependency>
138         <groupId>ch.qos.logback</groupId>
139         <artifactId>logback-classic</artifactId>
140         <version>${logback.version}</version>
141       </dependency>
142       <dependency>
143         <groupId>org.gaixie.jibu</groupId>
144         <artifactId>jibu-core</artifactId>
145         <version>1.0.0-SNAPSHOT </version>
146       </dependency>
147     </dependencies>
148   </dependencyManagement>
149 </project>