Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 1 | <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 Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 6 | <version>1.1.0-SNAPSHOT</version> |
Stefano Lenzi | 476013d | 2007-09-21 23:59:54 +0000 | [diff] [blame] | 7 | <relativePath>../../pom/pom.xml</relativePath> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 8 | </parent> |
| 9 | <modelVersion>4.0.0</modelVersion> |
Stefano Lenzi | c72e584 | 2007-08-23 22:05:21 +0000 | [diff] [blame] | 10 | <packaging>bundle</packaging> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 11 | <groupId>org.apache.felix</groupId> |
| 12 | <name>Apache Felix UPnP Extra </name> |
| 13 | <artifactId>org.apache.felix.upnp.extra</artifactId> |
Stefano Lenzi | 8ace4a3 | 2007-12-20 20:39:17 +0000 | [diff] [blame^] | 14 | <version>0.3.0-SNAPSHOT</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 15 | <!-- <url>http://maven.apache.org</url> --> |
| 16 | <dependencies> |
| 17 | <dependency> |
| 18 | <groupId>${pom.groupId}</groupId> |
| 19 | <artifactId>org.osgi.compendium</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 20 | <version>0.9.0-SNAPSHOT</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 21 | <scope>provided</scope> |
| 22 | </dependency> |
| 23 | </dependencies> |
| 24 | <build> |
| 25 | <plugins> |
| 26 | <plugin> |
Stefano Lenzi | c72e584 | 2007-08-23 22:05:21 +0000 | [diff] [blame] | 27 | <groupId>org.apache.felix</groupId> |
| 28 | <artifactId>maven-bundle-plugin</artifactId> |
| 29 | <version>1.1.0-SNAPSHOT</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 30 | <extensions>true</extensions> |
| 31 | <configuration> |
Stefano Lenzi | c72e584 | 2007-08-23 22:05:21 +0000 | [diff] [blame] | 32 | <instructions> |
| 33 | <Bundle-Name>${pom.name}</Bundle-Name> |
| 34 | <Bundle-Vendor>Apache Software Foundation</Bundle-Vendor> |
Stefano Lenzi | c72e584 | 2007-08-23 22:05:21 +0000 | [diff] [blame] | 35 | <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 Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 37 | 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 Lenzi | c72e584 | 2007-08-23 22:05:21 +0000 | [diff] [blame] | 38 | </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 Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 43 | </configuration> |
| 44 | </plugin> |
| 45 | </plugins> |
| 46 | </build> |
| 47 | </project> |