Moved from sandbox to trunk
git-svn-id: https://svn.apache.org/repos/asf/incubator/felix/trunk@391355 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/org.apache.felix.wireadmin/pom.xml b/org.apache.felix.wireadmin/pom.xml
new file mode 100644
index 0000000..4080b91
--- /dev/null
+++ b/org.apache.felix.wireadmin/pom.xml
@@ -0,0 +1,51 @@
+<project>
+ <parent>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>felix</artifactId>
+ <version>0.8.0-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <packaging>osgi-bundle</packaging>
+ <name>Apache Felix WireAdmin</name>
+ <artifactId>org.apache.felix.wireadmin</artifactId>
+ <dependencies>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>org.osgi.core</artifactId>
+ <version>${pom.version}</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>org.osgi.compendium</artifactId>
+ <version>${pom.version}</version>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.felix.plugins</groupId>
+ <artifactId>maven-osgi-plugin</artifactId>
+ <version>${pom.version}</version>
+ <extensions>true</extensions>
+ <configuration>
+ <osgiManifest>
+ <bundleName>WireAdmin</bundleName>
+ <bundleVendor>Apache Software Foundation</bundleVendor>
+ <bundleDescription>
+ Implementation of the WireAdmin Service.
+ </bundleDescription>
+ <bundleActivator>
+ org.apache.felix.wireadmin.Activator
+ </bundleActivator>
+ <bundleSymbolicName>org.apache.felix.wireadmin</bundleSymbolicName>
+ <importPackage>
+ org.osgi.service.wireadmin; specification-version=1.0.0
+ </importPackage>
+ </osgiManifest>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>