use derby as default database
[gaixie.git] / pom.xml
blobabc5f54d6a85113e7f11b760d388386995b6b1bf
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" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
21   <organization>
22     <name>Gaixie.ORG</name>
23     <url>http://www.gaixie.org/</url>
24   </organization>
26   <licenses>
27     <license>
28       <name>The Apache Software License, Version 2.0</name>
29       <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
30     </license>
31   </licenses>
33   <modelVersion>4.0.0</modelVersion>
34   <groupId>org.gaixie</groupId>
35   <artifactId>gaixie-parent</artifactId>
36   <version>0.1.0-SNAPSHOT</version>
38   <name>Gaixie</name>
40   <!--
41       | describe your project here
42     -->
44   <description>Modular web application based on OSGi</description>
46   <properties>
47     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 
48     <!--
49         | some example OSGi runtime properties
50       -->
51     <org.osgi.service.http.port>8080</org.osgi.service.http.port>
52     <org.osgi.service.http.port.secure>8443</org.osgi.service.http.port.secure>
53   </properties>
55   <packaging>pom</packaging>
57   <modules>
58     <module>poms</module>
59     <module>provision</module>
60     <module>bundles</module>
61     <module>assemblies</module> 
62   </modules>
64   <build>
65     <plugins>
66       <plugin>
67         <groupId>org.ops4j</groupId>
68         <artifactId>maven-pax-plugin</artifactId>
69         <version>1.4</version>
70         <configuration>
71           <!--
72               | some example Pax-Runner settings
73             -->
74           <provision>
75             <param>--platform=felix</param>
76           </provision>
77         </configuration>
78         <executions>
79           <!--
80               | uncomment to auto-generate IDE files
81               <execution>
82                 <id>ide-support</id>
83                 <goals>
84                   <goal>eclipse</goal>
85                 </goals>
86               </execution>
87               -->
88         </executions>
89       </plugin>
90     </plugins>
91     <pluginManagement>
92       <plugins>
93         <plugin>
94           <groupId>org.apache.maven.plugins</groupId>
95           <artifactId>maven-compiler-plugin</artifactId>
96           <version>2.0.2</version>
97           <configuration>
98             <source>1.5</source>
99             <target>1.5</target>
100             <encoding>utf-8</encoding>                        
101           </configuration>
102         </plugin>
103         <plugin>
104           <groupId>org.apache.maven.plugins</groupId>
105           <artifactId>maven-assembly-plugin</artifactId>
106           <version>2.2-beta-1</version>
107         </plugin>
108         <plugin>
109           <groupId>org.apache.maven.plugins</groupId>
110           <artifactId>maven-dependency-plugin</artifactId>
111           <version>2.1</version>
112         </plugin>
113       </plugins>
114     </pluginManagement>
115   </build>
116   <dependencyManagement>
117     <dependencies>
118       <dependency>
119         <groupId>org.osgi</groupId>
120         <artifactId>osgi_R4_core</artifactId>
121         <version>1.0</version>
122       </dependency>
123       <dependency>
124         <groupId>org.osgi</groupId>
125         <artifactId>osgi_R4_compendium</artifactId>
126         <version>1.0</version>
127       </dependency>
128       <dependency>
129         <groupId>org.apache.felix</groupId>
130         <artifactId>org.osgi.compendium</artifactId>
131         <version>1.4.0</version>
132       </dependency>
133       <dependency>
134         <groupId>org.apache.felix</groupId>
135         <artifactId>org.apache.felix.main</artifactId>
136         <version>2.0.2</version>
137       </dependency>
138       <dependency>
139         <groupId>org.apache.felix</groupId>
140         <artifactId>org.apache.felix.scr</artifactId>
141         <version>1.4.0</version>
142       </dependency>
143       <dependency>
144         <groupId>org.apache.felix</groupId>
145         <artifactId>org.apache.felix.log</artifactId>
146         <version>1.0.0</version>
147       </dependency>
148       <dependency> 
149         <groupId>commons-dbcp</groupId>
150         <artifactId>commons-dbcp</artifactId> 
151         <version>1.4</version>   
152       </dependency>
153       <dependency>
154         <groupId>commons-pool</groupId>
155         <artifactId>commons-pool</artifactId>
156         <version>1.5.4</version>
157       </dependency>
158       <dependency>
159         <groupId>commons-dbutils</groupId>
160         <artifactId>commons-dbutils</artifactId>
161         <version>1.3</version>
162       </dependency>
163       <dependency>  
164         <groupId>org.apache.derby</groupId>  
165         <artifactId>derby</artifactId>  
166         <version>10.5.3.0_1</version> 
167       </dependency>
168       <dependency>
169         <groupId>org.mortbay.jetty</groupId>
170         <artifactId>jetty</artifactId>
171         <version>6.1.22</version>
172       </dependency>
173       <dependency>
174         <groupId>org.mortbay.jetty</groupId>
175         <artifactId>jetty-util</artifactId>
176         <version>6.1.22</version>
177       </dependency>
178       <dependency>  
179         <groupId>org.mortbay.jetty</groupId>  
180         <artifactId>servlet-api</artifactId> 
181         <version>2.5-20081211</version> 
182       </dependency>
183       <dependency>  
184         <groupId>org.slf4j</groupId>
185         <artifactId>slf4j-api</artifactId>
186         <version>1.5.10</version> 
187       </dependency>
188       <dependency>
189         <groupId>ch.qos.logback</groupId>
190         <artifactId>logback-core</artifactId>
191         <version>0.9.18</version>
192       </dependency>
193       <dependency>
194         <groupId>ch.qos.logback</groupId>
195         <artifactId>logback-classic</artifactId>
196         <version>0.9.18</version>
197       </dependency>
198     </dependencies>
199   </dependencyManagement>
200 </project>