blob: 253d071e5ebe338fbc42d85efe7f6e37adc661e3 [file] [log] [blame]
Karl Pauls4ebe5082006-10-30 15:00:08 +00001<!--
2 Licensed to the Apache Software Foundation (ASF) under one
3 or more contributor license agreements. See the NOTICE file
4 distributed with this work for additional information
5 regarding copyright ownership. The ASF licenses this file
6 to you under the Apache License, Version 2.0 (the
7 "License"); you may not use this file except in compliance
8 with the License. You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing,
13 software distributed under the License is distributed on an
14 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 KIND, either express or implied. See the License for the
16 specific language governing permissions and limitations
17 under the License.
18-->
Alex Karasulu07d20492006-03-06 15:35:44 +000019<project>
Alex Karasuluc15532e2006-03-06 19:42:54 +000020 <parent>
Alex Karasulu07d20492006-03-06 15:35:44 +000021 <groupId>org.apache.felix</groupId>
22 <artifactId>felix</artifactId>
Karl Pauls9903dbc2007-07-19 19:42:00 +000023 <version>1.1.0-SNAPSHOT</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000024 <relativePath>../pom/pom.xml</relativePath>
Alex Karasulu07d20492006-03-06 15:35:44 +000025 </parent>
26 <modelVersion>4.0.0</modelVersion>
Richard S. Hall1da4e542006-11-02 21:45:44 +000027 <packaging>bundle</packaging>
Alex Karasulu07d20492006-03-06 15:35:44 +000028 <name>Apache Felix Main</name>
29 <artifactId>org.apache.felix.main</artifactId>
Karl Pauls9903dbc2007-07-19 19:42:00 +000030 <version>1.1.0-SNAPSHOT</version>
Alex Karasulu07d20492006-03-06 15:35:44 +000031 <dependencies>
32 <dependency>
33 <groupId>${pom.groupId}</groupId>
34 <artifactId>org.apache.felix.framework</artifactId>
Karl Pauls9903dbc2007-07-19 19:42:00 +000035 <version>1.1.0-SNAPSHOT</version>
Richard S. Hallc2c58042006-11-28 20:50:51 +000036 <exclusions>
37 <exclusion>
38 <groupId>${pom.groupId}</groupId>
39 <artifactId>org.osgi.core</artifactId>
40 </exclusion>
Richard S. Hallb35c0382007-07-16 17:29:17 +000041 <!--exclusion>
42 For now framework doesn't have this dependency, but it
43 will once the compendium bundle is released.
Richard S. Hall487c44d2007-05-22 15:58:30 +000044 <groupId>${pom.groupId}</groupId>
45 <artifactId>org.osgi.compendium</artifactId>
Richard S. Hallb35c0382007-07-16 17:29:17 +000046 </exclusion-->
Richard S. Hallc2c58042006-11-28 20:50:51 +000047 </exclusions>
Alex Karasulu07d20492006-03-06 15:35:44 +000048 </dependency>
Karl Pauls4d82d2f2006-11-03 00:08:28 +000049 <dependency>
50 <groupId>${pom.groupId}</groupId>
51 <artifactId>org.apache.felix.shell</artifactId>
Karl Pauls9903dbc2007-07-19 19:42:00 +000052 <version>1.1.0-SNAPSHOT</version>
Richard S. Hallc2c58042006-11-28 20:50:51 +000053 <exclusions>
54 <exclusion>
55 <groupId>${pom.groupId}</groupId>
56 <artifactId>org.osgi.core</artifactId>
57 </exclusion>
58 </exclusions>
Karl Pauls4d82d2f2006-11-03 00:08:28 +000059 </dependency>
60 <dependency>
61 <groupId>${pom.groupId}</groupId>
62 <artifactId>org.apache.felix.shell.tui</artifactId>
Karl Pauls9903dbc2007-07-19 19:42:00 +000063 <version>1.1.0-SNAPSHOT</version>
Richard S. Hallc2c58042006-11-28 20:50:51 +000064 <exclusions>
65 <exclusion>
66 <groupId>${pom.groupId}</groupId>
67 <artifactId>org.osgi.core</artifactId>
68 </exclusion>
69 </exclusions>
Karl Pauls4d82d2f2006-11-03 00:08:28 +000070 </dependency>
71 <dependency>
72 <groupId>${pom.groupId}</groupId>
73 <artifactId>org.apache.felix.bundlerepository</artifactId>
Karl Pauls9903dbc2007-07-19 19:42:00 +000074 <version>1.1.0-SNAPSHOT</version>
Richard S. Hallc2c58042006-11-28 20:50:51 +000075 <exclusions>
76 <exclusion>
77 <groupId>${pom.groupId}</groupId>
78 <artifactId>org.osgi.core</artifactId>
79 </exclusion>
Richard S. Halld4d36cc2007-06-26 10:04:00 +000080 <exclusion>
81 <groupId>net.sf.kxml</groupId>
82 <artifactId>kxml2</artifactId>
83 </exclusion>
Richard S. Hallc2c58042006-11-28 20:50:51 +000084 </exclusions>
Karl Pauls4d82d2f2006-11-03 00:08:28 +000085 </dependency>
Alex Karasulu07d20492006-03-06 15:35:44 +000086 </dependencies>
Alex Karasuluc15532e2006-03-06 19:42:54 +000087 <properties>
88 <property name="install.home" value="${basedir.absolutePath}"/>
89 </properties>
Alex Karasulu07d20492006-03-06 15:35:44 +000090 <build>
91 <plugins>
92 <plugin>
Richard S. Hall1da4e542006-11-02 21:45:44 +000093 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +000094 <artifactId>maven-bundle-plugin</artifactId>
Karl Pauls39f9e542007-09-12 18:18:40 +000095 <version>1.1.0-SNAPSHOT</version>
Richard S. Hall1da4e542006-11-02 21:45:44 +000096 <extensions>true</extensions>
Alex Karasulu07d20492006-03-06 15:35:44 +000097 <configuration>
Richard S. Hall1da4e542006-11-02 21:45:44 +000098 <instructions>
Richard S. Hall27305522007-03-28 15:28:25 +000099 <_donotcopy>(CVS|.svn|config.properties)</_donotcopy>
Richard S. Hall1da4e542006-11-02 21:45:44 +0000100 <Main-Class>org.apache.felix.main.Main</Main-Class>
101 <Bundle-Name>Apache Felix</Bundle-Name>
102 <Bundle-Description>OSGi R4 framework.</Bundle-Description>
Karl Pauls39f9e542007-09-12 18:18:40 +0000103 <Private-Package>org.apache.felix.main.*,org.apache.felix.moduleloader.*,org.apache.felix.framework.*,org.osgi.framework,org.osgi.service.packageadmin,org.osgi.service.startlevel,org.osgi.service.url,org.osgi.util.tracker</Private-Package>
Richard S. Hall1da4e542006-11-02 21:45:44 +0000104 <Import-Package>!*</Import-Package>
105 <Include-Resource>{src/main/resources/}</Include-Resource>
106 </instructions>
Alex Karasulu07d20492006-03-06 15:35:44 +0000107 </configuration>
108 </plugin>
Alex Karasuluc15532e2006-03-06 19:42:54 +0000109 <plugin>
Karl Paulsaa573ad2007-07-19 19:09:54 +0000110 <groupId>org.apache.maven.plugins</groupId>
111 <artifactId>maven-dependency-plugin</artifactId>
112 <executions>
113 <execution>
Karl Pauls39f9e542007-09-12 18:18:40 +0000114 <id>unpack</id>
115 <phase>validate</phase>
116 <goals>
117 <goal>unpack</goal>
118 </goals>
119 <configuration>
120 <outputDirectory>${project.build.outputDirectory}</outputDirectory>
121 <artifactItems>
122 <artifactItem>
123 <groupId>${pom.groupId}</groupId>
124 <artifactId>org.apache.felix.framework</artifactId>
125 <version>1.1.0-SNAPSHOT</version>
126 </artifactItem>
127 </artifactItems>
128 </configuration>
129 </execution>
130 <execution>
Karl Paulsaa573ad2007-07-19 19:09:54 +0000131 <id>copy</id>
132 <phase>install</phase>
133 <goals>
134 <goal>copy</goal>
135 </goals>
136 <configuration>
137 <artifactItems>
138 <artifactItem>
139 <groupId>${pom.groupId}</groupId>
140 <artifactId>org.apache.felix.shell</artifactId>
Karl Pauls9903dbc2007-07-19 19:42:00 +0000141 <version>1.1.0-SNAPSHOT</version>
Karl Paulsaa573ad2007-07-19 19:09:54 +0000142 <type>jar</type>
143 <overWrite>true</overWrite>
144 <outputDirectory>${project.build.directory}/bundle</outputDirectory >
145 </artifactItem>
146 <artifactItem>
147 <groupId>${pom.groupId}</groupId>
148 <artifactId>org.apache.felix.shell.tui</artifactId>
Karl Pauls9903dbc2007-07-19 19:42:00 +0000149 <version>1.1.0-SNAPSHOT</version>
Karl Paulsaa573ad2007-07-19 19:09:54 +0000150 <type>jar</type>
151 <overWrite>true</overWrite>
152 <outputDirectory>${project.build.directory}/bundle</outputDirectory >
153 </artifactItem>
154 <artifactItem>
155 <groupId>${pom.groupId}</groupId>
156 <artifactId>org.apache.felix.bundlerepository</artifactId>
Karl Pauls9903dbc2007-07-19 19:42:00 +0000157 <version>1.1.0-SNAPSHOT</version>
Karl Paulsaa573ad2007-07-19 19:09:54 +0000158 <type>jar</type>
159 <overWrite>true</overWrite>
160 <outputDirectory>${project.build.directory}/bundle</outputDirectory >
161 </artifactItem>
162 </artifactItems>
163 </configuration>
164 </execution>
165 </executions>
166 </plugin>
167 <plugin>
Alex Karasuluc15532e2006-03-06 19:42:54 +0000168 <artifactId>maven-antrun-plugin</artifactId>
169 <executions>
170 <execution>
171 <phase>install</phase>
172 <configuration>
173 <tasks>
174 <delete dir="${basedir}/bin"/>
175 <mkdir dir="${basedir}/bin"/>
Alex Karasuluc15532e2006-03-06 19:42:54 +0000176 <delete dir="${basedir}/conf"/>
177 <mkdir dir="${basedir}/conf"/>
178 <delete dir="${basedir}/bundle"/>
Karl Paulsaa573ad2007-07-19 19:09:54 +0000179 <copy file="${basedir}/target/org.apache.felix.main-${pom.version}.jar"
180 tofile="${basedir}/bin/felix.jar"/>
181 <copy file="${basedir}/target/classes/config.properties"
182 todir="${basedir}/conf"/>
183 <move file="${basedir}/target/bundle"
184 todir="${basedir}"/>
Alex Karasuluc15532e2006-03-06 19:42:54 +0000185 </tasks>
186 </configuration>
187 <goals>
188 <goal>run</goal>
189 </goals>
190 </execution>
191 </executions>
192 </plugin>
Alex Karasulu07d20492006-03-06 15:35:44 +0000193 </plugins>
Alex Karasuluc15532e2006-03-06 19:42:54 +0000194 <resources>
195 <resource>
196 <directory>src/main/resources</directory>
197 <filtering>true</filtering>
198 </resource>
Richard S. Hall1da4e542006-11-02 21:45:44 +0000199 </resources>
Alex Karasulu07d20492006-03-06 15:35:44 +0000200 </build>
201</project>