Francesco Furfari | d1072b5 | 2006-05-03 07:44:48 +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>0.8.0-SNAPSHOT</version>
|
| 7 | </parent>
|
| 8 | <modelVersion>4.0.0</modelVersion>
|
| 9 | <packaging>osgi-bundle</packaging>
|
| 10 | <groupId>org.apache.felix</groupId>
|
| 11 | <name>Apache Felix UPnP Sample Binary-Light</name>
|
| 12 | <artifactId>org.apache.felix.upnp.sample.binaryLight</artifactId>
|
| 13 | <version>0.1.0-SNAPSHOT</version>
|
| 14 | <!-- <url>http://maven.apache.org</url> -->
|
| 15 | <dependencies>
|
| 16 | <dependency>
|
| 17 | <groupId>${pom.groupId}</groupId>
|
| 18 | <artifactId>org.osgi.core</artifactId>
|
| 19 | <version>0.8.0-SNAPSHOT</version>
|
| 20 | <scope>provided</scope>
|
| 21 | </dependency>
|
| 22 | <dependency>
|
| 23 | <groupId>${pom.groupId}</groupId>
|
| 24 | <artifactId>org.osgi.compendium</artifactId>
|
| 25 | <version>0.8.0-SNAPSHOT</version>
|
| 26 | <scope>provided</scope>
|
| 27 | </dependency>
|
Francesco Furfari | ec7e175 | 2006-10-02 13:37:04 +0000 | [diff] [blame] | 28 | <dependency>
|
| 29 | <groupId>${pom.groupId}</groupId>
|
| 30 | <artifactId>javax.servlet</artifactId>
|
| 31 | <version>0.8.0-SNAPSHOT</version>
|
| 32 | <scope>provided</scope>
|
| 33 | </dependency>
|
Francesco Furfari | d1072b5 | 2006-05-03 07:44:48 +0000 | [diff] [blame] | 34 | </dependencies>
|
| 35 | <build>
|
| 36 | <plugins>
|
| 37 | <plugin>
|
| 38 | <groupId>org.apache.felix.plugins</groupId>
|
| 39 | <artifactId>maven-osgi-plugin</artifactId>
|
| 40 | <!-- <version>${pom.version}</version> -->
|
| 41 | <extensions>true</extensions>
|
| 42 | <configuration>
|
| 43 | <osgiManifest>
|
| 44 | <bundleName>UPnPBinaryLight</bundleName>
|
| 45 | <bundleVendor>Apache Software Foundation</bundleVendor>
|
| 46 | <bundleVersion>0.1.0</bundleVersion>
|
| 47 | <bundleDescription>
|
| 48 | Standardized BinaryLight DCPs to test UPnP Base Driver
|
| 49 | </bundleDescription>
|
| 50 | <bundleSymbolicName>org.apache.felix.upnp.sample.binaryLight</bundleSymbolicName>
|
| 51 | <bundleActivator>org.apache.felix.upnp.sample.binaryLight.Activator</bundleActivator>
|
Francesco Furfari | d1072b5 | 2006-05-03 07:44:48 +0000 | [diff] [blame] | 52 | </osgiManifest>
|
| 53 | <manifestFile>src/main/resources/META-INF/Manifest.mf</manifestFile>
|
| 54 | </configuration>
|
| 55 | </plugin>
|
| 56 | </plugins>
|
| 57 | <resources>
|
| 58 | <resource>
|
| 59 | <directory>src/main/resources</directory>
|
| 60 | </resource>
|
| 61 | </resources>
|
| 62 | </build>
|
| 63 | </project>
|