use derby as default database
[gaixie.git] / poms / compiled / pom.xml
blobce68dd21e20649841859279160c38623535e5278
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.build</groupId>
23     <artifactId>shared-plugin-settings</artifactId>
24     <version>0.1.0-SNAPSHOT</version>
25   </parent>
27   <modelVersion>4.0.0</modelVersion>
28   <artifactId>compiled-bundle-settings</artifactId>
30   <name>Gaixie Bundle Instructions</name>
32   <packaging>pom</packaging>
34   <build>
35     <resources>
36       <resource>
37         <directory>src/main/resources</directory>
38       </resource>
39       <!--
40           | example additional resource entries, useful when building Eclipse RCP applications
41         -->
42       <resource>
43         <directory>.</directory>
44         <includes>
45           <include>plugin.xml</include>
46           <include>plugin.properties</include>
47           <include>icons/**</include>
48         </includes>
49       </resource>
50     </resources>
51     <plugins>
52       <plugin>
53         <!--
54             | the following instructions build a simple set of public/private classes into an OSGi bundle
55           -->
56         <groupId>org.apache.felix</groupId>
57         <artifactId>maven-bundle-plugin</artifactId>
58         <configuration>
59           <instructions>
60             <Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
61             <Bundle-Version>${pom.version}</Bundle-Version>
62             <!--
63                 | assume public classes are in the top package, and private classes are under ".internal"
64               -->
65             <Export-Package>!${bundle.namespace}.internal.*,${bundle.namespace}.*;version="${pom.version}"</Export-Package>
66             <Private-Package>${bundle.namespace}.internal.*</Private-Package>
67             <!--
68                 | each module can override these defaults in their osgi.bnd file
69               -->
70             <_include>-osgi.bnd</_include>
71           </instructions>
72         </configuration>
73       </plugin>
74     </plugins>
75   </build>
77 </project>