use derby as default database
[gaixie.git] / poms / pom.xml
blob5f3c1ed6275b430caa7bc33c56cb82b59a504493
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"
19          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
21   <parent>
22     <groupId>org.gaixie</groupId>
23     <artifactId>gaixie-parent</artifactId>
24     <version>0.1.0-SNAPSHOT</version>
25   </parent>
27   <modelVersion>4.0.0</modelVersion>
28   <groupId>org.gaixie.build</groupId>
29   <artifactId>shared-plugin-settings</artifactId>
31   <name>Gaixie Plugin Configuration</name>
33   <packaging>pom</packaging>
35   <modules>
36     <module>wrappers</module>
37     <module>compiled</module>
38   </modules>
40   <build>
41     <pluginManagement>
42       <plugins>
43         <plugin>
44           <groupId>org.ops4j</groupId>
45           <artifactId>maven-pax-plugin</artifactId>
46           <!--
47               | enable improved OSGi compilation support for the bundle life-cycle.
48               | to switch back to the standard bundle life-cycle, move this setting
49               | down to the maven-bundle-plugin section
50             -->
51           <extensions>true</extensions>
52         </plugin>
53         <plugin>
54           <groupId>org.apache.felix</groupId>
55           <artifactId>maven-bundle-plugin</artifactId>
56           <version>1.4.0</version>
57         </plugin>
58       </plugins>
59     </pluginManagement>
60   </build>
62   <dependencies>
63     <dependency>
64       <groupId>org.mortbay.jetty</groupId>  
65       <artifactId>servlet-api</artifactId> 
66       <version>2.5-20081211</version> 
67       <scope>provided</scope>
68       <optional>true</optional>
69     </dependency>
70     <dependency>  
71       <groupId>org.slf4j</groupId>
72       <artifactId>slf4j-api</artifactId>
73       <version>1.5.10</version> 
74       <scope>provided</scope>
75       <optional>true</optional>
76     </dependency>
77     <dependency>
78       <groupId>ch.qos.logback</groupId>
79       <artifactId>logback-core</artifactId>
80       <version>0.9.18</version>
81       <scope>test</scope>
82     </dependency>
83     <dependency>
84       <groupId>ch.qos.logback</groupId>
85       <artifactId>logback-classic</artifactId>
86       <version>0.9.18</version>
87       <scope>test</scope>
88     </dependency>
89     <dependency>
90       <groupId>junit</groupId>
91       <artifactId>junit</artifactId>
92       <version>4.7</version>
93       <scope>test</scope>
94     </dependency>
95     <dependency>
96       <groupId>org.mockito</groupId>
97       <artifactId>mockito-all</artifactId>
98       <version>1.8.2</version>
99       <scope>test</scope>
100     </dependency>
101     <dependency> 
102       <groupId>commons-dbcp</groupId>
103       <artifactId>commons-dbcp</artifactId> 
104       <version>1.4</version>
105       <scope>test</scope>   
106     </dependency>
107      <dependency>
108       <groupId>commons-pool</groupId>
109       <artifactId>commons-pool</artifactId>
110       <version>1.5.4</version>
111       <scope>test</scope>
112     </dependency>
113     <dependency>  
114       <groupId>org.apache.derby</groupId>  
115       <artifactId>derby</artifactId>  
116       <version>10.5.3.0_1</version>
117       <scope>test</scope>  
118     </dependency>
119   </dependencies>
121 </project>