Add export batik plugin

Change-Id: I69a073eac220c5c41fc1303cd9c3ef5cda43eb99
diff --git a/parent/pom.xml b/parent/pom.xml
index 84d370f..f1a84a4 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -88,6 +88,7 @@
 		<module>../plugins/org.eclipse.graphiti.ui</module>

 		<module>../plugins/org.eclipse.graphiti.pattern</module>

 		<module>../plugins/org.eclipse.graphiti.tools.newprojectwizard</module>

+		<module>../plugins/org.eclipse.graphiti.export.batik</module>

 	</modules>

 

 	<build>

diff --git a/plugins/org.eclipse.graphiti.export.batik/.classpath b/plugins/org.eclipse.graphiti.export.batik/.classpath
index ad32c83..c72d35a 100644
--- a/plugins/org.eclipse.graphiti.export.batik/.classpath
+++ b/plugins/org.eclipse.graphiti.export.batik/.classpath
@@ -3,5 +3,5 @@
 	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
 	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
 	<classpathentry kind="src" path="src"/>
-	<classpathentry kind="output" path="bin"/>
+	<classpathentry kind="output" path="target/classes"/>
 </classpath>
diff --git a/plugins/org.eclipse.graphiti.export.batik/.gitignore b/plugins/org.eclipse.graphiti.export.batik/.gitignore
index 5e56e04..06ba672 100644
--- a/plugins/org.eclipse.graphiti.export.batik/.gitignore
+++ b/plugins/org.eclipse.graphiti.export.batik/.gitignore
@@ -1 +1,2 @@
 /bin
+/target/
diff --git a/plugins/org.eclipse.graphiti.export.batik/.project b/plugins/org.eclipse.graphiti.export.batik/.project
index 8533b84..7b93ccb 100644
--- a/plugins/org.eclipse.graphiti.export.batik/.project
+++ b/plugins/org.eclipse.graphiti.export.batik/.project
@@ -25,8 +25,14 @@
 			<arguments>
 			</arguments>
 		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.m2e.core.maven2Builder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
 	</buildSpec>
 	<natures>
+		<nature>org.eclipse.m2e.core.maven2Nature</nature>
 		<nature>org.eclipse.pde.PluginNature</nature>
 		<nature>org.eclipse.jdt.core.javanature</nature>
 		<nature>org.eclipse.pde.api.tools.apiAnalysisNature</nature>
diff --git a/plugins/org.eclipse.graphiti.export.batik/.settings/org.eclipse.core.resources.prefs b/plugins/org.eclipse.graphiti.export.batik/.settings/org.eclipse.core.resources.prefs
deleted file mode 100644
index 99f26c0..0000000
--- a/plugins/org.eclipse.graphiti.export.batik/.settings/org.eclipse.core.resources.prefs
+++ /dev/null
@@ -1,2 +0,0 @@
-eclipse.preferences.version=1
-encoding/<project>=UTF-8
diff --git a/plugins/org.eclipse.graphiti.export.batik/.settings/org.eclipse.m2e.core.prefs b/plugins/org.eclipse.graphiti.export.batik/.settings/org.eclipse.m2e.core.prefs
new file mode 100644
index 0000000..f897a7f
--- /dev/null
+++ b/plugins/org.eclipse.graphiti.export.batik/.settings/org.eclipse.m2e.core.prefs
@@ -0,0 +1,4 @@
+activeProfiles=
+eclipse.preferences.version=1
+resolveWorkspaceProjects=true
+version=1
diff --git a/plugins/org.eclipse.graphiti.export.batik/pom.xml b/plugins/org.eclipse.graphiti.export.batik/pom.xml
new file mode 100644
index 0000000..2a6acd5
--- /dev/null
+++ b/plugins/org.eclipse.graphiti.export.batik/pom.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>

+<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/maven-v4_0_0.xsd">

+	<modelVersion>4.0.0</modelVersion>

+

+	<parent>

+		<groupId>org.eclipse.graphiti</groupId>

+		<artifactId>parent</artifactId>

+		<version>0.12.0-SNAPSHOT</version>

+		<relativePath>../../parent</relativePath>

+	</parent>

+

+	<name>Graphiti SVG Export</name>

+	<artifactId>org.eclipse.graphiti.export.batik</artifactId>

+	<packaging>eclipse-plugin</packaging>

+</project>
\ No newline at end of file