Adding maven build for the Gemini Management
Bug 347545
diff --git a/org.eclipse.gemini.mgmt/build.properties b/org.eclipse.gemini.mgmt/build.properties
index 41eb6ad..e7608c4 100644
--- a/org.eclipse.gemini.mgmt/build.properties
+++ b/org.eclipse.gemini.mgmt/build.properties
@@ -1,4 +1,6 @@
source.. = src/
output.. = bin/
-bin.includes = META-INF/,\
- .
+bin.includes = .,\
+jars.compile.order = .,\
+ ../osgi.enterprise/osgi.enterprise.jar
+source.osgi.enterprise.jar =
diff --git a/org.eclipse.gemini.mgmt/pom.xml b/org.eclipse.gemini.mgmt/pom.xml
new file mode 100644
index 0000000..4e8b976
--- /dev/null
+++ b/org.eclipse.gemini.mgmt/pom.xml
@@ -0,0 +1,40 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.eclipse.gemini.mgmt</groupId>
+ <artifactId>org.eclipse.gemini.mgmt_parent</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <relativePath>../gemini.mgmt.releng/pom.xml</relativePath>
+ </parent>
+
+ <artifactId>org.eclipse.gemini.mgmt</artifactId>
+ <packaging>eclipse-plugin</packaging>
+ <name>Gemini Management Bundle</name>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.osgi</groupId>
+ <artifactId>org.osgi.enterprise</artifactId>
+ <version>4.2.0</version>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.sonatype.tycho</groupId>
+ <artifactId>maven-osgi-source-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>findbugs-maven-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-pmd-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </build>
+</project>
diff --git a/osgi.enterprise/pom.xml b/osgi.enterprise/pom.xml
new file mode 100644
index 0000000..27b99b4
--- /dev/null
+++ b/osgi.enterprise/pom.xml
@@ -0,0 +1,25 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.eclipse.gemini.mgmt</groupId>
+ <artifactId>org.eclipse.gemini.mgmt_parent</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <relativePath>../gemini.mgmt.releng/pom.xml</relativePath>
+ </parent>
+
+ <artifactId>osgi.enterprise</artifactId>
+ <version>4.2.0.201003190513</version>
+ <packaging>eclipse-plugin</packaging>
+ <name>OSGi Enterprise Bundle</name>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-pmd-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </build>
+</project>