blob: fb209fb9898f5b3d09074c27e810646eebd4eab6 [file] [log] [blame]
Karl Pauls589e2b32007-07-11 18:29:29 +00001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <parent>
4 <groupId>org.apache.felix</groupId>
5 <artifactId>felix</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +00006 <version>1.1.0-SNAPSHOT</version>
Stefano Lenzi476013d2007-09-21 23:59:54 +00007 <relativePath>../../pom/pom.xml</relativePath>
Karl Pauls589e2b32007-07-11 18:29:29 +00008 </parent>
9 <modelVersion>4.0.0</modelVersion>
Stefano Lenzic72e5842007-08-23 22:05:21 +000010 <packaging>bundle</packaging>
Karl Pauls589e2b32007-07-11 18:29:29 +000011 <groupId>org.apache.felix</groupId>
12 <name>Apache Felix UPnP Extra </name>
13 <artifactId>org.apache.felix.upnp.extra</artifactId>
Stefano Lenzi8ace4a32007-12-20 20:39:17 +000014 <version>0.3.0-SNAPSHOT</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000015 <!-- <url>http://maven.apache.org</url> -->
16 <dependencies>
17 <dependency>
18 <groupId>${pom.groupId}</groupId>
19 <artifactId>org.osgi.compendium</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000020 <version>0.9.0-SNAPSHOT</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000021 <scope>provided</scope>
22 </dependency>
23 </dependencies>
24 <build>
25 <plugins>
26 <plugin>
Stefano Lenzic72e5842007-08-23 22:05:21 +000027 <groupId>org.apache.felix</groupId>
28 <artifactId>maven-bundle-plugin</artifactId>
29 <version>1.1.0-SNAPSHOT</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000030 <extensions>true</extensions>
31 <configuration>
Stefano Lenzic72e5842007-08-23 22:05:21 +000032 <instructions>
33 <Bundle-Name>${pom.name}</Bundle-Name>
34 <Bundle-Vendor>Apache Software Foundation</Bundle-Vendor>
Stefano Lenzic72e5842007-08-23 22:05:21 +000035 <Bundle-Author><![CDATA[Matteo Demuru <demuru@apache.org>,Francesco Furfari <furfari@apache.org>,Stefano "Kismet" Lenzi <lenzi@apache.org>]]></Bundle-Author>
36 <Bundle-Description>
Karl Pauls589e2b32007-07-11 18:29:29 +000037 A library used to extend the integration between UPnP and OSGi that is not part of the standard. Also services that allow to change the beahviour of the UPnP Base Driver
Stefano Lenzic72e5842007-08-23 22:05:21 +000038 </Bundle-Description>
39 <Bundle-SymbolicName>org.apache.felix.upnp.extra</Bundle-SymbolicName>
40 <Export-Package>org.apache.felix.upnp.extra.*</Export-Package>
41 <Private-Package>org.apache.xerces.impl.dv.util</Private-Package>
42 </instructions>
Karl Pauls589e2b32007-07-11 18:29:29 +000043 </configuration>
44 </plugin>
45 </plugins>
46 </build>
47</project>