update build to Eclipse Tycho 0.16
Signed-off-by: Florian Thienel <florian@thienel.org>
diff --git a/org.eclipse.vex.dita/.classpath b/org.eclipse.vex.dita/.classpath
index c835067..7145989 100644
--- a/org.eclipse.vex.dita/.classpath
+++ b/org.eclipse.vex.dita/.classpath
@@ -1,6 +1,7 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<classpath>
- <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
- <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
- <classpathentry kind="output" path="bin"/>
-</classpath>
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+ <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
+ <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
+ <classpathentry kind="src" path="src_does_not_exist/"/>
+ <classpathentry kind="output" path="target/classes"/>
+</classpath>
diff --git a/org.eclipse.vex.dita/.gitignore b/org.eclipse.vex.dita/.gitignore
index ea8c4bf..6dff79c 100644
--- a/org.eclipse.vex.dita/.gitignore
+++ b/org.eclipse.vex.dita/.gitignore
@@ -1 +1,3 @@
-/target
+target
+
+src_does_not_exist
diff --git a/org.eclipse.vex.dita/.project b/org.eclipse.vex.dita/.project
index 970918c..b5fb921 100644
--- a/org.eclipse.vex.dita/.project
+++ b/org.eclipse.vex.dita/.project
@@ -6,6 +6,11 @@
</projects>
<buildSpec>
<buildCommand>
+ <name>org.eclipse.jdt.core.javabuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
<name>org.eclipse.pde.ManifestBuilder</name>
<arguments>
</arguments>
@@ -15,8 +20,15 @@
<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>
</natures>
</projectDescription>
diff --git a/org.eclipse.vex.dita/.settings/org.eclipse.core.resources.prefs b/org.eclipse.vex.dita/.settings/org.eclipse.core.resources.prefs
new file mode 100644
index 0000000..3d916f2
--- /dev/null
+++ b/org.eclipse.vex.dita/.settings/org.eclipse.core.resources.prefs
@@ -0,0 +1,2 @@
+eclipse.preferences.version=1
+encoding/<project>=Cp1252
diff --git a/org.eclipse.vex.dita/.settings/org.eclipse.m2e.core.prefs b/org.eclipse.vex.dita/.settings/org.eclipse.m2e.core.prefs
new file mode 100644
index 0000000..14b697b
--- /dev/null
+++ b/org.eclipse.vex.dita/.settings/org.eclipse.m2e.core.prefs
@@ -0,0 +1,4 @@
+activeProfiles=
+eclipse.preferences.version=1
+resolveWorkspaceProjects=true
+version=1
diff --git a/org.eclipse.vex.dita/build.properties b/org.eclipse.vex.dita/build.properties
index e6870c0..8fc433c 100644
--- a/org.eclipse.vex.dita/build.properties
+++ b/org.eclipse.vex.dita/build.properties
@@ -1,7 +1,7 @@
+source.. = src_does_not_exist/
bin.includes = plugin.xml,\
dita11/,\
plugin.properties,\
META-INF/,\
css/,\
dita11/
-source.. = src_does_not_exist/
diff --git a/org.eclipse.vex.dita/pom.xml b/org.eclipse.vex.dita/pom.xml
index 6c3904f..fc88c45 100644
--- a/org.eclipse.vex.dita/pom.xml
+++ b/org.eclipse.vex.dita/pom.xml
@@ -4,7 +4,6 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>org.eclipse.vex.dita</artifactId>
<packaging>eclipse-plugin</packaging>
- <version>1.1.0-SNAPSHOT</version>
<name>Vex DITA Support</name>
<parent>
@@ -14,43 +13,4 @@
<relativePath>../org.eclipse.vex.releng/pom.xml</relativePath>
</parent>
- <build>
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>findbugs-maven-plugin</artifactId>
- <version>2.3.2</version>
- <configuration>
- <findbugsXmlOutput>true</findbugsXmlOutput>
- <failOnError>false</failOnError>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>check</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-pmd-plugin</artifactId>
- <configuration>
- <sourceEncoding>utf-8</sourceEncoding>
- <minimumTokens>100</minimumTokens>
- <targetJdk>1.5</targetJdk>
- <format>xml</format>
- <failOnViolation>false</failOnViolation>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>cpd-check</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-
</project>