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 Clock</name>
|
| 12 | <artifactId>org.apache.felix.upnp.sample.clock</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>
|
| 28 | </dependencies>
|
| 29 | <build>
|
| 30 | <plugins>
|
| 31 | <plugin>
|
| 32 | <groupId>org.apache.felix.plugins</groupId>
|
| 33 | <artifactId>maven-osgi-plugin</artifactId>
|
| 34 | <!-- <version>${pom.version}</version> -->
|
| 35 | <extensions>true</extensions>
|
| 36 | <configuration>
|
| 37 | <osgiManifest>
|
| 38 | <bundleName>UPnPClock</bundleName>
|
| 39 | <bundleVendor>Apache Software Foundation</bundleVendor>
|
| 40 | <bundleVersion>0.1.0</bundleVersion>
|
| 41 | <bundleDescription>
|
| 42 | CyberLink Clock clone to test UPnPBase driver
|
| 43 | </bundleDescription>
|
| 44 | <bundleSymbolicName>org.apache.felix.upnp.sample.clock</bundleSymbolicName>
|
| 45 | <bundleActivator>org.apache.felix.upnp.sample.clock.Activator</bundleActivator>
|
Francesco Furfari | d1072b5 | 2006-05-03 07:44:48 +0000 | [diff] [blame] | 46 | </osgiManifest>
|
| 47 | <manifestFile>src/main/resources/META-INF/Manifest.mf</manifestFile>
|
| 48 | </configuration>
|
| 49 | </plugin>
|
| 50 | </plugins>
|
| 51 | <resources>
|
| 52 | <resource>
|
| 53 | <directory>src/main/resources</directory>
|
| 54 | </resource>
|
| 55 | </resources>
|
| 56 | </build>
|
| 57 | </project>
|