Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc-Andre Laperle2012-04-23 17:05:22 +0000
committerMarc-Andre Laperle2012-04-23 17:05:22 +0000
commit383f0d289c5d46af05fa2774f96d87f12c5938d2 (patch)
treec539c9100622651488b1865d41823b887be43093
parenteb6522badf02ad57388cf52910694769abd7f8b3 (diff)
downloadorg.eclipse.cdt-383f0d289c5d46af05fa2774f96d87f12c5938d2.tar.gz
org.eclipse.cdt-383f0d289c5d46af05fa2774f96d87f12c5938d2.tar.xz
org.eclipse.cdt-383f0d289c5d46af05fa2774f96d87f12c5938d2.zip
Fix build.properties that made testsrunner.test compile in J2SE-1.5,
remove work around.
-rw-r--r--testsrunner/org.eclipse.cdt.testsrunner.test/build.properties2
-rw-r--r--testsrunner/org.eclipse.cdt.testsrunner.test/pom.xml9
2 files changed, 1 insertions, 10 deletions
diff --git a/testsrunner/org.eclipse.cdt.testsrunner.test/build.properties b/testsrunner/org.eclipse.cdt.testsrunner.test/build.properties
index 67172946998..1a640cdd7e7 100644
--- a/testsrunner/org.eclipse.cdt.testsrunner.test/build.properties
+++ b/testsrunner/org.eclipse.cdt.testsrunner.test/build.properties
@@ -16,5 +16,5 @@ bin.includes = META-INF/,\
OSGI-INF/,\
test.xml,\
about.html
-jre.compilation.profile = J2SE-1.5
+
src.includes = about.html
diff --git a/testsrunner/org.eclipse.cdt.testsrunner.test/pom.xml b/testsrunner/org.eclipse.cdt.testsrunner.test/pom.xml
index 34faa27f7fa..53b4762eea8 100644
--- a/testsrunner/org.eclipse.cdt.testsrunner.test/pom.xml
+++ b/testsrunner/org.eclipse.cdt.testsrunner.test/pom.xml
@@ -26,15 +26,6 @@
<build>
<plugins>
- <!-- Not sure why but this is necessary since Tycho 0.14, perhaps this is a bug -->
- <plugin>
- <groupId>org.eclipse.tycho</groupId>
- <artifactId>tycho-compiler-plugin</artifactId>
- <configuration>
- <source>1.6</source>
- <target>1.6</target>
- </configuration>
- </plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-surefire-plugin</artifactId>

Back to the top