blob: 5035e82fbee135756eed6152ed408d5d3287bb24 [file] [log] [blame]
Carsten Ziegelerb61fe0e2008-01-03 09:24:12 +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-->
Stefano Lenziaf45c332008-07-08 16:59:54 +000019<project>
20 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix</artifactId>
Clement Escoffier4ae86972009-04-09 12:09:09 +000023 <version>1.0.4</version>
Stefano Lenziaf45c332008-07-08 16:59:54 +000024 <relativePath>../pom/pom.xml</relativePath>
25 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <packaging>pom</packaging>
28 <name>Apache Felix UPnP: Root POM</name>
29 <artifactId>upnp</artifactId>
30 <version>1.0.0</version>
31
32 <profiles>
33 <profile>
34 <id>packaging-bundle</id>
35 <activation>
36 <property>
37 <name>packaging</name>
38 <value>bundle</value>
39 </property>
40 </activation>
41 <modules>
42 <module>extra</module>
43 <module>basedriver</module>
44 <module>tester</module>
45 <module>samples</module>
46 </modules>
47 </profile>
48 <profile>
49 <id>default</id>
50 <activation>
51 <property>
52 <name>!packaging</name>
53 </property>
54 </activation>
55 <modules>
56 <module>extra</module>
57 <module>basedriver</module>
58 <module>tester</module>
59 <module>samples</module>
60 </modules>
61 </profile>
62 </profiles>
Stefano Lenzi6ec1e282009-05-21 11:49:21 +000063
64 <build>
65 <plugins>
66 <plugin>
67 <groupId>org.ops4j</groupId>
68 <artifactId>maven-pax-plugin</artifactId>
69 <configuration>
Stefano Lenzi3872d742009-05-22 16:01:40 +000070 <noDependencies>true</noDependencies>
Stefano Lenzi6ec1e282009-05-21 11:49:21 +000071 <provision>
72 <provision>mvn:org.apache.felix/org.apache.felix.upnp.basedriver@nostart</provision>
73 <provision>mvn:org.apache.felix/org.apache.felix.upnp.tester</provision>
74 <provision>mvn:org.apache.felix/org.apache.felix.upnp.extra</provision>
75 <provision>mvn:org.apache.felix/org.apache.felix.upnp.sample.binaryLight</provision>
76 <provision>mvn:org.apache.felix/org.apache.felix.upnp.sample.clock</provision>
77 <provision>mvn:org.apache.felix/org.apache.felix.upnp.sample.tv</provision>
78 <provision>mvn:org.apache.felix/javax.servlet</provision>
79 <provision>mvn:org.apache.felix/org.apache.felix.http.jetty@nostart</provision>
80 </provision>
81 </configuration>
82 </plugin>
83 </plugins>
84 </build>
Stefano Lenziaf45c332008-07-08 16:59:54 +000085</project>