blob: 36f8b0738b9fa73c9aed7a6ef7a6716fee907dfa [file] [log] [blame]
Francesco Furfarid8bdb642006-04-04 23:33:40 +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>
Richard S. Hallf2be1962006-12-22 19:46:42 +00006 <version>0.9.0-incubator-SNAPSHOT</version>
Francesco Furfarid8bdb642006-04-04 23:33:40 +00007 </parent>
8 <modelVersion>4.0.0</modelVersion>
9 <packaging>osgi-bundle</packaging>
10 <groupId>org.apache.felix</groupId>
11 <name>Apache Felix UPnP Base Driver</name>
12 <artifactId>org.apache.felix.upnp.basedriver</artifactId>
Richard S. Hallf2be1962006-12-22 19:46:42 +000013 <version>0.1.0-incubator-SNAPSHOT</version>
Stefano Lenzi497d0ac2006-04-07 09:16:10 +000014 <repositories>
15 <!-- For snapshots (no release jars or non-apache jars) -->
16 <repository>
17 <id>domoware.isti.cnr.it</id>
18 <name>DomoWare Repository for Missing Artifacts</name>
19 <url>http://domoware.isti.cnr.it/maven2</url>
20 </repository>
Francesco Furfarie70248f2006-04-07 13:11:47 +000021 </repositories> <!-- <url>http://maven.apache.org</url> -->
Francesco Furfarid8bdb642006-04-04 23:33:40 +000022 <dependencies>
23 <dependency>
Richard S. Halla9ba6162006-04-24 14:52:09 +000024 <groupId>${pom.groupId}</groupId>
Francesco Furfarid8bdb642006-04-04 23:33:40 +000025 <artifactId>org.osgi.core</artifactId>
Richard S. Hallf2be1962006-12-22 19:46:42 +000026 <version>0.9.0-incubator-SNAPSHOT</version>
Francesco Furfarid8bdb642006-04-04 23:33:40 +000027 <scope>provided</scope>
28 </dependency>
29 <dependency>
Richard S. Halla9ba6162006-04-24 14:52:09 +000030 <groupId>${pom.groupId}</groupId>
Francesco Furfarid8bdb642006-04-04 23:33:40 +000031 <artifactId>org.osgi.compendium</artifactId>
Richard S. Hallf2be1962006-12-22 19:46:42 +000032 <version>0.9.0-incubator-SNAPSHOT</version>
Francesco Furfarid8bdb642006-04-04 23:33:40 +000033 <scope>provided</scope>
34 </dependency>
35 <dependency>
36 <groupId>org.apache.felix</groupId>
37 <artifactId>org.apache.felix.upnp.extra</artifactId>
Richard S. Hallf2be1962006-12-22 19:46:42 +000038 <version>0.1.0-incubator-SNAPSHOT</version>
Francesco Furfarid8bdb642006-04-04 23:33:40 +000039 <scope>provided</scope>
40 </dependency>
41 <dependency>
Stefano Lenzi497d0ac2006-04-07 09:16:10 +000042 <groupId>org-cybergarage</groupId>
43 <artifactId>cyberlink-upnp-patched</artifactId>
Francesco Furfaric9667302006-11-22 22:13:30 +000044 <version>1.7.2</version>
Francesco Furfarie70248f2006-04-07 13:11:47 +000045 <scope>provided</scope>
Francesco Furfarid8bdb642006-04-04 23:33:40 +000046 </dependency>
47 </dependencies>
48 <build>
49 <plugins>
50 <plugin>
51 <groupId>org.apache.felix.plugins</groupId>
52 <artifactId>maven-osgi-plugin</artifactId>
53 <!-- <version>${pom.version}</version> -->
54 <extensions>true</extensions>
55 <configuration>
56 <osgiManifest>
57 <bundleName>UPnPBaseDriver</bundleName>
58 <bundleVendor>Apache Software Foundation</bundleVendor>
Stefano Lenzi2f43ff82006-06-23 16:48:26 +000059 <bundleVersion>0.1.0</bundleVersion>
Francesco Furfarid8bdb642006-04-04 23:33:40 +000060 <bundleDescription>
Francesco Furfarib46aa6f2006-07-26 09:57:23 +000061 A Bundle implementation of the UPnP Service Specification R4
Francesco Furfarid8bdb642006-04-04 23:33:40 +000062 </bundleDescription>
63 <bundleSymbolicName>org.apache.felix.upnp.basedriver</bundleSymbolicName>
Francesco Furfarib46aa6f2006-07-26 09:57:23 +000064 <bundleActivator>org.apache.felix.upnp.basedriver.Activator</bundleActivator>
Francesco Furfarid8bdb642006-04-04 23:33:40 +000065 </osgiManifest>
Francesco Furfarie70248f2006-04-07 13:11:47 +000066 <manifestFile>src/main/resources/release/META-INF/Manifest.mf</manifestFile>
Francesco Furfarid8bdb642006-04-04 23:33:40 +000067 </configuration>
68 </plugin>
69 </plugins>
70 <resources>
71 <resource>
Francesco Furfarie70248f2006-04-07 13:11:47 +000072 <directory>src/main/resources/release</directory>
Francesco Furfarid8bdb642006-04-04 23:33:40 +000073 </resource>
74 </resources>
75 </build>
76</project>