From 9d45a506b1026bdf9a3c76f97c9d4ec52dc92345 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Fri, 18 Sep 2020 01:00:24 +0200 Subject: [build] eclipse test target for Javac8 fixed javac8 has a bizarre dependency situation: we need the stubs in src/stubs there to compile, but if they are there at runtime during a test run of javac8, they take precedence over the JDK's javac (because we include this as a separate cp entry, and thus it is not a bootclasspath item), and messes everything up. The fix is to tell eclipse to compile various src/X folders to different 'bin' targets, which required an update to ivyplusplus as well. also it was just broken in general, fixed that too :) --- buildScripts/create-eclipse-project.ant.xml | 12 +++++++++--- buildScripts/setup.ant.xml | 2 +- buildScripts/vm-finder.ant.xml | 2 +- 3 files changed, 11 insertions(+), 5 deletions(-) (limited to 'buildScripts') diff --git a/buildScripts/create-eclipse-project.ant.xml b/buildScripts/create-eclipse-project.ant.xml index 513ffe8f..da91964f 100644 --- a/buildScripts/create-eclipse-project.ant.xml +++ b/buildScripts/create-eclipse-project.ant.xml @@ -27,7 +27,7 @@ This buildfile is part of projectlombok.org. It creates the infrastructure neede - + @@ -35,7 +35,7 @@ This buildfile is part of projectlombok.org. It creates the infrastructure neede - + @@ -116,7 +116,7 @@ This buildfile is part of projectlombok.org. It creates the infrastructure neede - + @@ -127,6 +127,12 @@ This buildfile is part of projectlombok.org. It creates the infrastructure neede + + + + + + diff --git a/buildScripts/setup.ant.xml b/buildScripts/setup.ant.xml index 9b96240d..ed835960 100644 --- a/buildScripts/setup.ant.xml +++ b/buildScripts/setup.ant.xml @@ -106,7 +106,7 @@ This buildfile is part of projectlombok.org. It sets up the build itself. - + diff --git a/buildScripts/vm-finder.ant.xml b/buildScripts/vm-finder.ant.xml index 2b2c4c4c..a15d8ed0 100644 --- a/buildScripts/vm-finder.ant.xml +++ b/buildScripts/vm-finder.ant.xml @@ -38,7 +38,7 @@ This buildfile is part of projectlombok.org. It contains platform specific code - + -- cgit