Francesco Furfari | fed35de | 2007-08-28 18:10:40 +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>
|
| 6 | <version>1.1.0-SNAPSHOT</version>
|
| 7 | <relativePath>../pom/pom.xml</relativePath>
|
| 8 | </parent>
|
| 9 | <modelVersion>4.0.0</modelVersion>
|
| 10 | <packaging>bundle</packaging>
|
| 11 | <groupId>org.apache.felix</groupId>
|
| 12 | <name>Apache Felix UPnP Tester</name>
|
| 13 | <artifactId>org.apache.felix.upnp.tester</artifactId>
|
| 14 | <version>0.2.0-SNAPSHOT</version>
|
| 15 | <!-- <url>http://maven.apache.org</url> -->
|
| 16 | <dependencies>
|
| 17 | <dependency>
|
| 18 | <groupId>${pom.groupId}</groupId>
|
| 19 | <artifactId>org.osgi.core</artifactId>
|
| 20 | <version>1.1.0-SNAPSHOT</version>
|
| 21 | <scope>provided</scope>
|
| 22 | </dependency>
|
| 23 | <dependency>
|
| 24 | <groupId>${pom.groupId}</groupId>
|
| 25 | <artifactId>org.osgi.compendium</artifactId>
|
| 26 | <version>0.9.0-SNAPSHOT</version>
|
| 27 | <scope>provided</scope>
|
| 28 | </dependency>
|
| 29 | <dependency>
|
| 30 | <groupId>org.apache.felix</groupId>
|
| 31 | <artifactId>org.apache.felix.upnp.extra</artifactId>
|
| 32 | <version>0.2.0-SNAPSHOT</version>
|
| 33 | <scope>provided</scope>
|
| 34 | </dependency>
|
| 35 | </dependencies>
|
| 36 | <build>
|
| 37 | <plugins>
|
| 38 | <plugin>
|
| 39 | <groupId>org.apache.felix</groupId>
|
| 40 | <artifactId>maven-bundle-plugin</artifactId>
|
| 41 | <version>1.1.0-SNAPSHOT</version>
|
| 42 | <extensions>true</extensions>
|
| 43 | <configuration>
|
| 44 | <instructions>
|
| 45 | <Bundle-Name>${pom.name}</Bundle-Name>
|
| 46 | <Bundle-Vendor>Apache Software Foundation</Bundle-Vendor>
|
| 47 | <Bundle-Author><![CDATA[Matteo Demuru <demuru@apache.org>,Francesco Furfari <furfari@apache.org>,Stefano "Kismet" Lenzi <lenzi@apache.org>]]></Bundle-Author>
|
| 48 | <Bundle-Description>
|
| 49 | OSGi Generic Control Point to control UPnPDevice services
|
| 50 | </Bundle-Description>
|
| 51 | <Bundle-SymbolicName>org.apache.felix.upnp.tester</Bundle-SymbolicName>
|
| 52 | <Bundle-Activator>org.apache.felix.upnp.tester.Activator</Bundle-Activator>
|
| 53 | <Private-Package>org.apache.felix.upnp.tester.*</Private-Package>
|
| 54 | <Import-Package>*</Import-Package>
|
| 55 | </instructions>
|
| 56 | </configuration>
|
| 57 | </plugin>
|
| 58 | </plugins>
|
| 59 | </build>
|
| 60 | </project>
|