Carsten Ziegeler | b61fe0e | 2008-01-03 09:24:12 +0000 | [diff] [blame] | 1 | <!-- |
| 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 Lenzi | af45c33 | 2008-07-08 16:59:54 +0000 | [diff] [blame] | 19 | <project> |
| 20 | <parent> |
| 21 | <groupId>org.apache.felix</groupId> |
| 22 | <artifactId>felix</artifactId> |
Clement Escoffier | 4ae8697 | 2009-04-09 12:09:09 +0000 | [diff] [blame] | 23 | <version>1.0.4</version> |
Stefano Lenzi | af45c33 | 2008-07-08 16:59:54 +0000 | [diff] [blame] | 24 | <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 Lenzi | 6ec1e28 | 2009-05-21 11:49:21 +0000 | [diff] [blame] | 63 | |
| 64 | <build> |
| 65 | <plugins> |
| 66 | <plugin> |
| 67 | <groupId>org.ops4j</groupId> |
| 68 | <artifactId>maven-pax-plugin</artifactId> |
| 69 | <configuration> |
Stefano Lenzi | 3872d74 | 2009-05-22 16:01:40 +0000 | [diff] [blame] | 70 | <noDependencies>true</noDependencies> |
Stefano Lenzi | 6ec1e28 | 2009-05-21 11:49:21 +0000 | [diff] [blame] | 71 | <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 Lenzi | af45c33 | 2008-07-08 16:59:54 +0000 | [diff] [blame] | 85 | </project> |