blob: 4ed227f1e560b40abc6eb74d008f78e057d8facc [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-->
Karl Paulsd69e8af2006-08-12 09:51:20 +000019<project>
20 <modelVersion>4.0.0</modelVersion>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix</artifactId>
23 <packaging>pom</packaging>
Marcel Offermans0ed87292006-08-17 19:10:30 +000024 <name>Apache Felix</name>
Richard S. Hallf2be1962006-12-22 19:46:42 +000025 <version>0.9.0-incubator-SNAPSHOT</version>
Marcel Offermans0ed87292006-08-17 19:10:30 +000026 <url>http://incubator.apache.org/felix/</url>
27 <description>Apache felix is an OSGi implementation.</description>
28
29 <issueManagement>
30 <system>Jira</system>
31 <url>http://issues.apache.org/jira/browse/FELIX</url>
32 </issueManagement>
33
34 <mailingLists>
35 <mailingList>
36 <name>Felix Dev</name>
37 <subscribe>felix-dev-subscribe@incubator.apache.org</subscribe>
38 <unsubscribe>felix-dev-unsubscribe@incubator.apache.org</unsubscribe>
39 <post>-</post>
40 <archive>http://www.mail-archive.com/felix-dev%40incubator.apache.org/</archive>
41 </mailingList>
42 <mailingList>
43 <name>Felix Commits</name>
44 <subscribe>felix-commits-subscribe@incubator.apache.org</subscribe>
45 <unsubscribe>felix-commits-unsubscribe@incubator.apache.org</unsubscribe>
46 <post>-</post>
47 <archive>http://www.mail-archive.com/felix-commits%40incubator.apache.org/</archive>
48 </mailingList>
49 </mailingLists>
50
51 <licenses>
52 <license>
53 <name>The Apache Software License, Version 2.0</name>
54 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
55 <distribution>repo</distribution>
56 </license>
57 </licenses>
58
59 <scm>
60 <connection>scm:svn:http://svn.apache.org/repos/asf/incubator/felix</connection>
61 <developerConnection>scm:svn:http://svn.apache.org/repos/asf/incubator/felix</developerConnection>
62 <url>http://cvs.apache.org/viewcvs.cgi/incubator/felix/?root=Apache-SVN</url>
63 </scm>
64
Karl Paulsd69e8af2006-08-12 09:51:20 +000065 <modules>
66 <module>tools/maven2/maven-osgi-plugin</module>
Karl Paulsd69e8af2006-08-12 09:51:20 +000067 <module>shell.gui</module>
68 <module>shell.gui.plugin</module>
Karl Paulsd69e8af2006-08-12 09:51:20 +000069 <module>org.apache.felix.daemon</module>
70 <module>org.apache.felix.dependencymanager</module>
Karl Paulsd69e8af2006-08-12 09:51:20 +000071
72 <module>examples</module>
73
74 <module>servicebinder</module>
75 <module>wireadmin</module>
76 <module>upnp.extra</module>
77 <module>upnp.basedriver</module>
78 <module>upnp.tester</module>
79 <module>upnp.sample.tv</module>
80 <module>upnp.sample.clock</module>
81 <module>upnp.sample.binaryLight</module>
Richard S. Hallf2be1962006-12-22 19:46:42 +000082<!-- <module>http.jetty</module> -->
Karl Paulsd69e8af2006-08-12 09:51:20 +000083 <module>scr</module>
Stephane Frenotab672472006-08-29 13:29:31 +000084
85 <module>tools/mangen</module>
86
Karl Paulsd69e8af2006-08-12 09:51:20 +000087 <module>ipojo</module>
88 <module>ipojo.metadata</module>
Stephane Frenotab672472006-08-29 13:29:31 +000089
Karl Paulsd69e8af2006-08-12 09:51:20 +000090 </modules>
91
Stephane Frenotab672472006-08-29 13:29:31 +000092 <profiles>
93 <profile>
94 <id>jdk1.5</id>
95 <activation>
96 <jdk>1.5</jdk>
97 </activation>
98 <modules>
99 <module>mosgi.console.ifc</module>
100 <module>mosgi.console.component</module>
101 <module>mosgi.console.gui</module>
102 <module>mosgi.jmx.agent</module>
103 <module>mosgi.jmx.httpconnector</module>
104 <module>mosgi.jmx.registry</module>
105 <module>mosgi.jmx.remotelogger</module>
106 <module>mosgi.jmx.rmiconnector</module>
107 <module>mosgi.managedelements.osgiprobes</module>
108 <module>mosgi.managedelements.osgiprobes.tab</module>
Stephane Frenot0f068b62006-08-30 11:12:48 +0000109 <module>mosgi.managedelements.bundlesprobes</module>
110 <module>mosgi.managedelements.bundlesprobes.tab</module>
Stephane Frenot593bac32006-08-30 12:42:49 +0000111 <module>mosgi.managedelements.obrprobe</module>
112 <module>mosgi.managedelements.obrprobe.tab</module>
Stephane Frenot8ed309a2006-08-31 14:04:13 +0000113 <module>mosgi.managedelements.memoryprobe</module>
Stephane Frenotab672472006-08-29 13:29:31 +0000114 </modules>
115 </profile>
Stephane Frenotab672472006-08-29 13:29:31 +0000116 </profiles>
117
Stephane Frenote8c7a982006-09-28 15:46:53 +0000118 <!-- Specify a default version number for dependencies -->
119 <dependencyManagement>
120 <dependencies>
121 <dependency>
122 <groupId>org.apache.felix</groupId>
123 <artifactId>org.osgi.core</artifactId>
Richard S. Hallf2be1962006-12-22 19:46:42 +0000124 <version>0.9.0-incubator-SNAPSHOT</version>
Stephane Frenote8c7a982006-09-28 15:46:53 +0000125 </dependency>
126 <dependency>
127 <groupId>org.apache.felix</groupId>
128 <artifactId>org.osgi.compendium</artifactId>
Richard S. Hallf2be1962006-12-22 19:46:42 +0000129 <version>0.9.0-incubator-SNAPSHOT</version>
Stephane Frenote8c7a982006-09-28 15:46:53 +0000130 </dependency>
131 <dependency>
132 <groupId>org.apache.felix</groupId>
133 <artifactId>org.apache.felix.framework</artifactId>
Richard S. Hallf2be1962006-12-22 19:46:42 +0000134 <version>0.9.0-incubator-SNAPSHOT</version>
Stephane Frenote8c7a982006-09-28 15:46:53 +0000135 </dependency>
136 <dependency>
137 <groupId>org.apache.felix</groupId>
138 <artifactId>org.apache.felix.bundlerepository</artifactId>
Richard S. Hallf2be1962006-12-22 19:46:42 +0000139 <version>0.9.0-incubator-SNAPSHOT</version>
Stephane Frenote8c7a982006-09-28 15:46:53 +0000140 </dependency>
141 <dependency>
142 <groupId>org.apache.felix</groupId>
143 <artifactId>org.apache.felix.mosgi.jmx.registry</artifactId>
Richard S. Hallf2be1962006-12-22 19:46:42 +0000144 <version>0.9.0-incubator-SNAPSHOT</version>
Stephane Frenote8c7a982006-09-28 15:46:53 +0000145 </dependency>
146 <dependency>
147 <groupId>org.apache.felix</groupId>
148 <artifactId>org.apache.felix.mosgi.jmx.agent</artifactId>
Richard S. Hallf2be1962006-12-22 19:46:42 +0000149 <version>0.9.0-incubator-SNAPSHOT</version>
Stephane Frenote8c7a982006-09-28 15:46:53 +0000150 </dependency>
151 <dependency>
152 <groupId>org.apache.felix</groupId>
153 <artifactId>org.apache.felix.mosgi.console.ifc</artifactId>
Richard S. Hallf2be1962006-12-22 19:46:42 +0000154 <version>0.9.0-incubator-SNAPSHOT</version>
Stephane Frenote8c7a982006-09-28 15:46:53 +0000155 </dependency>
156 </dependencies>
157 </dependencyManagement>
158
Karl Paulsd69e8af2006-08-12 09:51:20 +0000159 <repositories>
160 <!-- For snapshots (no release jars or non-apache jars) -->
161 <repository>
162 <id>apache.snapshots</id>
163 <name>Apache Snapshot Repository</name>
Richard S. Hallf2be1962006-12-22 19:46:42 +0000164 <url>http://people.apache.org/repo/m2-snapshot-repository</url>
Karl Paulsd69e8af2006-08-12 09:51:20 +0000165 </repository>
166
167 <repository>
168 <id>safehaus</id>
169 <name>Alternate Repository for Missing Ibiblio Artifacts</name>
170 <url>http://m2.safehaus.org</url>
171 </repository>
172 </repositories>
173
174 <distributionManagement>
Marcel Offermans0ed87292006-08-17 19:10:30 +0000175 <site>
176 <id>felix website</id>
Marcel Offermansf6737032006-08-17 19:49:13 +0000177 <url>file:///${user.dir}/target/site-deployed/</url>
Marcel Offermans0ed87292006-08-17 19:10:30 +0000178 </site>
Karl Paulsd69e8af2006-08-12 09:51:20 +0000179 <snapshotRepository>
Karl Paulsd69e8af2006-08-12 09:51:20 +0000180 <id>apache.snapshots</id>
Richard S. Halle0341b22006-10-20 19:15:10 +0000181 <name>Apache Snapshot Repository</name>
Karl Paulsd69e8af2006-08-12 09:51:20 +0000182 <url>
Richard S. Halle0341b22006-10-20 19:15:10 +0000183 scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository
Karl Paulsd69e8af2006-08-12 09:51:20 +0000184 </url>
185 </snapshotRepository>
186 <repository>
187 <name>ASF Mirrored M2 Distributions</name>
188 <id>apache.distributions</id>
189 <url>
Richard S. Hallf2be1962006-12-22 19:46:42 +0000190 scp://people.apache.org/www/people.apache.org/repo/m2-incubating-repository
Karl Paulsd69e8af2006-08-12 09:51:20 +0000191 </url>
192 </repository>
193 </distributionManagement>
194
195 <pluginRepositories>
196 <pluginRepository>
197 <id>apache.snapshots</id>
198 <name>snapshot plugins</name>
199 <url>
Richard S. Hallf2be1962006-12-22 19:46:42 +0000200 http://people.apache.org/repo/m2-snapshot-repository
Karl Paulsd69e8af2006-08-12 09:51:20 +0000201 </url>
202 </pluginRepository>
203 </pluginRepositories>
204
205 <!-- definitions for testing -->
206 <dependencies>
207 <dependency>
208 <groupId>junit</groupId>
209 <artifactId>junit</artifactId>
210 <version>3.8.1</version>
211 <scope>test</scope>
212 </dependency>
213 <dependency>
214 <groupId>easymock</groupId>
215 <artifactId>easymock</artifactId>
216 <version>1.2_Java1.3</version>
217 <scope>test</scope>
218 </dependency>
219 </dependencies>
220 <build>
221 <plugins>
222 <plugin>
223 <groupId>org.apache.maven.plugins</groupId>
224 <artifactId>maven-compiler-plugin</artifactId>
225 <configuration>
226 <target>1.4</target>
227 </configuration>
228 </plugin>
229 <plugin>
230 <groupId>org.apache.maven.plugins</groupId>
231 <artifactId>maven-surefire-plugin</artifactId>
232 </plugin>
Stephane Frenotab672472006-08-29 13:29:31 +0000233 <!-- plugin>
Karl Paulsd69e8af2006-08-12 09:51:20 +0000234 <groupId>org.apache.maven.plugins</groupId>
235 <artifactId>maven-surefire-report-plugin</artifactId>
Stephane Frenotab672472006-08-29 13:29:31 +0000236 </plugin -->
Karl Paulsd69e8af2006-08-12 09:51:20 +0000237 </plugins>
238 </build>
239 <reporting>
240 <plugins>
241 <plugin>
242 <groupId>org.apache.maven.plugins</groupId>
Marcel Offermans0ed87292006-08-17 19:10:30 +0000243 <artifactId>maven-site-plugin</artifactId>
244 <configuration>
Marcel Offermans5dcb02c2006-08-17 20:58:34 +0000245 <templateDirectory>${user.dir}/src/site/</templateDirectory>
Marcel Offermans0ed87292006-08-17 19:10:30 +0000246 <template>maven-site.vm</template>
247 </configuration>
Karl Paulsd69e8af2006-08-12 09:51:20 +0000248 </plugin>
Marcel Offermans0ed87292006-08-17 19:10:30 +0000249 <plugin>
250 <groupId>org.apache.maven.plugins</groupId>
251 <artifactId>maven-surefire-plugin</artifactId>
252 </plugin>
253 <plugin>
254 <groupId>org.codehaus.mojo</groupId>
255 <artifactId>jxr-maven-plugin</artifactId>
256 </plugin>
257 <plugin>
258 <groupId>org.apache.maven.plugins</groupId>
259 <artifactId>maven-project-info-reports-plugin</artifactId>
260 <reportSets>
261 <reportSet>
262 <reports>
263 <report>index</report>
264 <report>dependencies</report>
265 <report>project-team</report>
266 <report>mailing-list</report>
267 <report>issue-tracking</report>
268 <report>license</report>
269 <report>scm</report>
270 </reports>
271 </reportSet>
272 </reportSets>
273 </plugin>
274 <!--plugin>
275 <groupId>org.apache.maven.plugins</groupId>
276 <artifactId>maven-javadoc-plugin</artifactId>
277 <configuration>
278 <aggregate>true</aggregate>
279 </configuration>
280 </plugin-->
Karl Paulsd69e8af2006-08-12 09:51:20 +0000281 </plugins>
282 </reporting>
283</project>