Trying to get org.eclipse.ajdt.core.ant.AJDT_AjcCompilerAdapter to work [message #1359675] |
Fri, 16 May 2014 08:52  |
Eclipse User |
|
|
|
I notice very few posts to this forum get answered. I used CDO and Teneo were the developers are heros in their support. It is not like we have a choice using PDE if we want to build plugins...
I follow the PDE documentation, which is extensive, but still do not get the expected result, so short of asking here I will have to trace through the PDE code to find the problem.
We have a single build.xml that builds several products based on target selection. One of these uses AspectJ, so needs org.eclipse.ajdt.core.ant.AJDT_AjcCompilerAdapter. I reproduce the relevant parts of the build.xml
<pde run="-buildfile ${eclipse.pdebuild.scripts}/productBuild/productBuild.xml
-Dproduct=/com.yambina.edm.ui/EDMUI.product -DcompilerAdapter=org.eclipse.ajdt.core.ant.AJDT_AjcCompilerAdapter -DsourceFileExtensions=*.java, *.aj " name="EDMUI" />
The macro
<macrodef name="pde">
<attribute name="run" />
<attribute name="name" />
<sequential>
<java classname="org.eclipse.equinox.launcher.Main" fork="true" failonerror="true">
<classpath>
<fileset dir="${eclipse.home}/plugins/">
<include name="org.eclipse.equinox.launcher_*.jar" />
</fileset>
</classpath>
<arg line="-application org.eclipse.ant.core.antRunner" />
<arg line="@{run}" />
<arg line="-DarchivePrefix=@{name}" />
<arg line="-DarchiveNamePrefix=@{name}" />
<arg line="-Dconfigs=${configs}" />
<arg line="-Dbuilder=${builder}" />
<arg line="-DbuildDirectory=${buildDirectory}" />
<arg line="-DbaseLocation=${baseLocation}" />
<arg line="-DpluginPath=${pluginPath}" />
<arg line="-DskipBase=true" />
<arg line="-DskipMaps=true" />
<arg line="-DskipFetch=true" />
<arg line="-DbuildLabel=@{name}" />
<arg line="-DcollectingFolder=@{name}" />
<arg line="-DjavacSource=${javacSource}" />
<arg line="-DjavacTarget=${javacTarget}" />
<arg line="-DjavacFailOnError=true" />
<arg line="-DallowBinaryCycles=true" />
<arg line="-DrunPackager=true" />
</java>
</sequential>
</macrodef>
I read this http://contraptionsforprogramming.blogspot.co.uk/2010/03/ajdt-pde-builds-redux.html and this http://help.eclipse.org/kepler/index.jsp?topic=%2Forg.eclipse.pde.doc.user%2Ftasks%2Fpde_compiler_options.htm
The .aj files are in the same directory as the java files so assume I do not need to specify an aspectpath. The output I get from ant is
build.EDMUI:
[java] Starting Groovy-Eclipse compiler resolver. Specified compiler level: 2.0
[java] Unknown target: *.aj
[java] BUILD SUCCESSFUL
[java] Total time: 0 seconds
[java] No known target specified.
Note the "Unknown target: *.aj" which suggests the "-DcompilerAdapter=org.eclipse.ajdt.core.ant.AJDT_AjcCompilerAdapter -DsourceFileExtensions=*.java, *.aj" are not getting picked up?
Thank you.
David
[Updated on: Fri, 16 May 2014 09:11] by Moderator
|
|
|
Re: Trying to get org.eclipse.ajdt.core.ant.AJDT_AjcCompilerAdapter to work [message #1359975 is a reply to message #1359675] |
Fri, 16 May 2014 11:49   |
Eclipse User |
|
|
|
Thought I'd test with cmd line first, using this
java -cp /Users/david/eclipse/plugins/org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar org.eclipse.equinox.launcher.Main -Dbuildfile=/Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/productBuild/productBuild.xml -DarchivePrefix=EDMUI -DarchiveNamePrefix=EDMUI -Dproduct=/com.yambina.edm.ui/EDMUI.product -DcompilerAdapter=org.eclipse.ajdt.core.ant.AJDT_AjcCompilerAdapter -DsourceFileExtensions="*.java, *.aj" -Dconfigs=macosx,cocoa,x86_64 -Dbuilder=/Users/david/workspace/edmbuild/builds -DbuildDirectory=/Users/david/workspace/edmbuild/build -DbaseLocation=/Users/david/eclipse -DpluginPath=/Users/david/eclipse/deltapack/eclipse -DskipBase=true -DskipMaps=true -DskipFetch=true -DbuildLabel=EDMUI -DcollectingFolder=EDMUI -DjavacSource=1.7 -DjavacTarget=1.7 -DjavacFailOnError=true -DallowBinaryCycles=true -DrunPackager=true
I get this
!SESSION 2014-05-16 15:23:28.160 -----------------------------------------------
eclipse.buildId=4.3.2.M20140221-1700
java.version=1.7.0_25
java.vendor=Oracle Corporation
BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US
Framework arguments: -Dbuildfile=/Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/productBuild/productBuild.xml -DarchivePrefix=EDMUI -DarchiveNamePrefix=EDMUI -Dproduct=/com.yambina.edm.ui/EDMUI.product -DcompilerAdapter=org.eclipse.ajdt.core.ant.AJDT_AjcCompilerAdapter -DsourceFileExtensions=*.java, *.aj -Dconfigs=macosx,cocoa,x86_64 -Dbuilder=/Users/david/workspace/edmbuild/builds -DbuildDirectory=/Users/david/workspace/edmbuild/build -DbaseLocation=/Users/david/eclipse -DpluginPath=/Users/david/eclipse/deltapack/eclipse -DskipBase=true -DskipMaps=true -DskipFetch=true -DbuildLabel=EDMUI -DcollectingFolder=EDMUI -DjavacSource=1.7 -DjavacTarget=1.7 -DjavacFailOnError=true -DallowBinaryCycles=true -DrunPackager=true
Command-line arguments: -Dbuildfile=/Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/productBuild/productBuild.xml -DarchivePrefix=EDMUI -DarchiveNamePrefix=EDMUI -Dproduct=/com.yambina.edm.ui/EDMUI.product -DcompilerAdapter=org.eclipse.ajdt.core.ant.AJDT_AjcCompilerAdapter -DsourceFileExtensions=*.java, *.aj -Dconfigs=macosx,cocoa,x86_64 -Dbuilder=/Users/david/workspace/edmbuild/builds -DbuildDirectory=/Users/david/workspace/edmbuild/build -DbaseLocation=/Users/david/eclipse -DpluginPath=/Users/david/eclipse/deltapack/eclipse -DskipBase=true -DskipMaps=true -DskipFetch=true -DbuildLabel=EDMUI -DcollectingFolder=EDMUI -DjavacSource=1.7 -DjavacTarget=1.7 -DjavacFailOnError=true -DallowBinaryCycles=true -DrunPackager=true
!ENTRY org.eclipse.osgi 2 0 2014-05-16 15:23:34.201
!MESSAGE The following is a complete list of bundles which are not resolved, see the prior log entry for the root cause if it exists:
!SUBENTRY 1 org.eclipse.osgi 2 0 2014-05-16 15:23:34.201
!MESSAGE Bundle org.eclipse.equinox.weaving.hook_1.0.200.v20120524-1707 [653] was not resolved.
!SUBENTRY 1 org.eclipse.osgi 2 0 2014-05-16 15:23:34.201
!MESSAGE Bundle org.eclipse.equinox.weaving.hook_1.0.200.I20130319-1000 [654] was not resolved.
!ENTRY org.eclipse.osgi 4 0 2014-05-16 15:23:34.202
!MESSAGE Application error
!STACK 1
org.eclipse.swt.SWTException: Invalid thread access
at org.eclipse.swt.SWT.error(SWT.java:4397)
...
Plenty of info on this error, put the weaving hook fragments into the same directory as the osgi - the last point here - http://www.eclipse.org/forums/index.php/t/202705/
should do it, but not clear were my workspace is in the context of the above command line? Any pointers?
Thx.
David
[Updated on: Fri, 16 May 2014 11:49] by Moderator
|
|
|
|
|
Re: Trying to get org.eclipse.ajdt.core.ant.AJDT_AjcCompilerAdapter to work [message #1369502 is a reply to message #1369458] |
Tue, 20 May 2014 12:14   |
Eclipse User |
|
|
|
Tried that too. I realise these properties apply to all my target builds, but in fact did not make a difference to my Java only builds.
I get
...
[java] [javac] 1564. WARNING in /Users/david/workspace/edmbuild/plugins/org.drools.eclipse-5.2.0.Final/src/main/aspects/com/yambina/edm/edmui/drools/eclipse/aspects/ResourceTracker.java (at line 49)
[java] [javac] final IFile newFile = ResourcesPlugin.getWorkspace().getRoot().getFile(delta.getMovedToPath());
[java] [javac] ^^^^^^^
[java] [javac] The value of the local variable newFile is not used
[java] [javac] ----------
[java] [javac] 1565. ERROR in /Users/david/workspace/edmbuild/plugins/org.drools.eclipse-5.2.0.Final/src/main/aspects/com/yambina/edm/edmui/drools/eclipse/aspects/ResourceTracker.java (at line 54)
[java] [javac] ResourceTracker.this.editor.setInput(newFile);
[java] [javac] ^^^^^^^^
[java] [javac] The method setInput(IEditorInput) in the type BPMNModelEditor is not applicable for the arguments (IFile)
[java] [javac] ----------
[java] [javac] 1566. WARNING in /Users/david/workspace/edmbuild/plugins/org.drools.eclipse-5.2.0.Final/src/main/aspects/com/yambina/edm/edmui/drools/eclipse/aspects/ResourceTracker.java (at line 60)
[java] [javac] final IFile newFile = ResourcesPlugin.getWorkspace().getRoot().getFile(delta.getFullPath());
[java] [javac] ^^^^^^^
[java] [javac] The value of the local variable newFile is not used
[java] [javac] ----------
[java] [javac] 1567. ERROR in /Users/david/workspace/edmbuild/plugins/org.drools.eclipse-5.2.0.Final/src/main/aspects/com/yambina/edm/edmui/drools/eclipse/aspects/ResourceTracker.java (at line 64)
[java] [javac] ResourceTracker.this.editor.setInput(newFile);
[java] [javac] ^^^^^^^^
[java] [javac] The method setInput(IEditorInput) in the type BPMNModelEditor is not applicable for the arguments (IFile)
[java] [javac] ----------
[java] [javac] ----------
[java] [javac] 1568. WARNING in /Users/david/workspace/edmbuild/plugins/org.drools.eclipse-5.2.0.Final/src/main/aspects/com/yambina/edm/edmui/drools/eclipse/aspects/WorkItemDefinitionLoader.java (at line 54)
[java] [javac] List<Map<String, Object>> workDefinitionsMap = (List<Map<String, Object>>) MVEL.eval(content, new HashMap());
[java] [javac] ^^^^^^^
[java] [javac] HashMap is a raw type. References to generic type HashMap<K,V> should be parameterized
[java] [javac] ----------
[java] [javac] 1568 problems (2 errors, 1566 warnings)
[java] [javac] Compilation failed. Compiler errors are available in /Users/david/workspace/edmbuild/plugins/org.drools.eclipse-5.2.0.Final/@dot.log
[java] BUILD FAILED
[java] /Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/productBuild/productBuild.xml:43: The following error occurred while executing this line:
[java] /Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/build.xml:105: The following error occurred while executing this line:
[java] /Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/templates/headless-build/customTargets.xml:12: The following error occurred while executing this line:
[java] /Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/productBuild/allElements.xml:20: The following error occurred while executing this line:
[java] /Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/genericTargets.xml:118: The following error occurred while executing this line:
[java] /Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/genericTargets.xml:123: The following error occurred while executing this line:
[java] /Users/david/workspace/edmbuild/build/features/org.eclipse.pde.build.container.feature/build.xml:139: The following error occurred while executing this line:
[java] /Users/david/workspace/edmbuild/build/features/org.eclipse.pde.build.container.feature/build.xml:94: The following error occurred while executing this line:
[java] /Users/david/workspace/edmbuild/plugins/org.drools.eclipse-5.2.0.Final/build.xml:1148: The following error occurred while executing this line:
[java] /Users/david/workspace/edmbuild/plugins/org.drools.eclipse-5.2.0.Final/build.xml:1076: Compile failed; see the compiler error output for details.
[java] Total time: 33 seconds
[java] An error has occurred. See the log file
[java] /Users/david/Documents/workspace/.metadata/.log.
Now I see this error when I start Eclipse and try to build the same project using the IDE, it occurs in the plugin that uses AspectJ. I solve it in the IDE builds simply by doing a clean project for just that plugin that uses AspectJ each time, then it seems to "see" ajdt and builds fine.
[Updated on: Tue, 20 May 2014 12:14] by Moderator
|
|
|
|
|
|
Re: Trying to get org.eclipse.ajdt.core.ant.AJDT_AjcCompilerAdapter to work [message #1384686 is a reply to message #1384628] |
Fri, 30 May 2014 07:13   |
Eclipse User |
|
|
|
Andrew,
There is a directory called "/Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/@dot" but no file by the name of "/Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/@dot.log" created.
here is .log
!SESSION 2014-05-30 12:07:24.918 -----------------------------------------------
eclipse.buildId=4.3.2.M20140221-1700
java.version=1.7.0_25
java.vendor=Oracle Corporation
BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US
Framework arguments: -application org.eclipse.ant.core.antRunner -buildfile /Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts///productBuild/productBuild.xml -Dproduct=/com.yambina.edm.ui/EDMUI.product -DarchivePrefix=EDMUI -DarchiveNamePrefix=EDMUI -Dconfigs=macosx,cocoa,x86_64 -Dbuilder=/Users/david/git/EDM/builds/../builds -DbuildDirectory=/Users/david/workspace/edmbuild/build -DbaseLocation=/Users/david/eclipse -DpluginPath=/Users/david/workspace/edmbuild:/Users/david/eclipse/deltapack/eclipse -DskipBase=true -DskipMaps=true -DskipFetch=true -DbuildLabel=EDMUI -DcollectingFolder=EDMUI -DjavacSource=1.7 -DjavacTarget=1.7 -DjavacFailOnError=true -DallowBinaryCycles=true -DrunPackager=true
Command-line arguments: -application org.eclipse.ant.core.antRunner -buildfile /Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts///productBuild/productBuild.xml -Dproduct=/com.yambina.edm.ui/EDMUI.product -DarchivePrefix=EDMUI -DarchiveNamePrefix=EDMUI -Dconfigs=macosx,cocoa,x86_64 -Dbuilder=/Users/david/git/EDM/builds/../builds -DbuildDirectory=/Users/david/workspace/edmbuild/build -DbaseLocation=/Users/david/eclipse -DpluginPath=/Users/david/workspace/edmbuild:/Users/david/eclipse/deltapack/eclipse -DskipBase=true -DskipMaps=true -DskipFetch=true -DbuildLabel=EDMUI -DcollectingFolder=EDMUI -DjavacSource=1.7 -DjavacTarget=1.7 -DjavacFailOnError=true -DallowBinaryCycles=true -DrunPackager=true
!ENTRY org.eclipse.osgi 2 0 2014-05-30 12:07:46.833
!MESSAGE The following is a complete list of bundles which are not resolved, see the prior log entry for the root cause if it exists:
!SUBENTRY 1 org.eclipse.osgi 2 0 2014-05-30 12:07:46.833
!MESSAGE Bundle org.eclipse.equinox.weaving.hook_1.0.200.v20120524-1707 [653] was not resolved.
!SUBENTRY 1 org.eclipse.osgi 2 0 2014-05-30 12:07:46.833
!MESSAGE Bundle org.eclipse.equinox.weaving.hook_1.0.200.I20130319-1000 [654] was not resolved.
!ENTRY org.eclipse.osgi 4 0 2014-05-30 12:07:46.834
!MESSAGE Application error
!STACK 1
java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.eclipse.ant.core.AntRunner.run(AntRunner.java:513)
at org.eclipse.ant.core.AntRunner.start(AntRunner.java:600)
at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:354)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:181)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:636)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:591)
at org.eclipse.equinox.launcher.Main.run(Main.java:1450)
at org.eclipse.equinox.launcher.Main.main(Main.java:1426)
Caused by: /Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/productBuild/productBuild.xml:43: The following error occurred while executing this line:
/Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/build.xml:105: The following error occurred while executing this line:
/Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/templates/headless-build/customTargets.xml:12: The following error occurred while executing this line:
/Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/productBuild/allElements.xml:20: The following error occurred while executing this line:
/Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/genericTargets.xml:118: The following error occurred while executing this line:
/Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/genericTargets.xml:123: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/build/features/org.eclipse.pde.build.container.feature/build.xml:139: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/build/features/org.eclipse.pde.build.container.feature/build.xml:19: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:152: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:113: Compile failed; see the compiler error output for details.
at org.apache.tools.ant.ProjectHelper.addLocationToBuildException(ProjectHelper.java:551)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:444)
at org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:105)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
at sun.reflect.GeneratedMethodAccessor8.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.Target.execute(Target.java:392)
at org.apache.tools.ant.Target.performTasks(Target.java:413)
at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
at org.apache.tools.ant.Project.executeTarget(Project.java:1368)
at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
at org.eclipse.ant.internal.core.ant.EclipseDefaultExecutor.executeTargets(EclipseDefaultExecutor.java:32)
at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
at org.eclipse.ant.internal.core.ant.InternalAntRunner.run(InternalAntRunner.java:672)
at org.eclipse.ant.internal.core.ant.InternalAntRunner.run(InternalAntRunner.java:537)
... 19 more
Caused by: /Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/build.xml:105: The following error occurred while executing this line:
/Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/templates/headless-build/customTargets.xml:12: The following error occurred while executing this line:
/Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/productBuild/allElements.xml:20: The following error occurred while executing this line:
/Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/genericTargets.xml:118: The following error occurred while executing this line:
/Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/genericTargets.xml:123: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/build/features/org.eclipse.pde.build.container.feature/build.xml:139: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/build/features/org.eclipse.pde.build.container.feature/build.xml:19: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:152: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:113: Compile failed; see the compiler error output for details.
at org.apache.tools.ant.ProjectHelper.addLocationToBuildException(ProjectHelper.java:551)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:444)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
at sun.reflect.GeneratedMethodAccessor8.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.Target.execute(Target.java:392)
at org.apache.tools.ant.Target.performTasks(Target.java:413)
at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:38)
at org.eclipse.ant.internal.core.ant.EclipseSingleCheckExecutor.executeTargets(EclipseSingleCheckExecutor.java:30)
at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:442)
... 35 more
Caused by: /Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/templates/headless-build/customTargets.xml:12: The following error occurred while executing this line:
/Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/productBuild/allElements.xml:20: The following error occurred while executing this line:
/Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/genericTargets.xml:118: The following error occurred while executing this line:
/Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/genericTargets.xml:123: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/build/features/org.eclipse.pde.build.container.feature/build.xml:139: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/build/features/org.eclipse.pde.build.container.feature/build.xml:19: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:152: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:113: Compile failed; see the compiler error output for details.
at org.apache.tools.ant.ProjectHelper.addLocationToBuildException(ProjectHelper.java:551)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:444)
at org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:105)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
at sun.reflect.GeneratedMethodAccessor8.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.Target.execute(Target.java:392)
at org.apache.tools.ant.Target.performTasks(Target.java:413)
at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:38)
at org.eclipse.ant.internal.core.ant.EclipseSingleCheckExecutor.executeTargets(EclipseSingleCheckExecutor.java:30)
at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:442)
... 48 more
Caused by: /Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/productBuild/allElements.xml:20: The following error occurred while executing this line:
/Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/genericTargets.xml:118: The following error occurred while executing this line:
/Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/genericTargets.xml:123: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/build/features/org.eclipse.pde.build.container.feature/build.xml:139: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/build/features/org.eclipse.pde.build.container.feature/build.xml:19: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:152: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:113: Compile failed; see the compiler error output for details.
at org.apache.tools.ant.ProjectHelper.addLocationToBuildException(ProjectHelper.java:551)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:444)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
at sun.reflect.GeneratedMethodAccessor8.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.Target.execute(Target.java:392)
at org.apache.tools.ant.Target.performTasks(Target.java:413)
at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:38)
at org.eclipse.ant.internal.core.ant.EclipseSingleCheckExecutor.executeTargets(EclipseSingleCheckExecutor.java:30)
at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:442)
... 62 more
Caused by: /Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/genericTargets.xml:118: The following error occurred while executing this line:
/Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/genericTargets.xml:123: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/build/features/org.eclipse.pde.build.container.feature/build.xml:139: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/build/features/org.eclipse.pde.build.container.feature/build.xml:19: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:152: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:113: Compile failed; see the compiler error output for details.
at org.apache.tools.ant.ProjectHelper.addLocationToBuildException(ProjectHelper.java:551)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:444)
at org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:105)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
at sun.reflect.GeneratedMethodAccessor8.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.Target.execute(Target.java:392)
at org.apache.tools.ant.Target.performTasks(Target.java:413)
at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:38)
at org.eclipse.ant.internal.core.ant.EclipseSingleCheckExecutor.executeTargets(EclipseSingleCheckExecutor.java:30)
at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:442)
... 75 more
Caused by: /Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/genericTargets.xml:123: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/build/features/org.eclipse.pde.build.container.feature/build.xml:139: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/build/features/org.eclipse.pde.build.container.feature/build.xml:19: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:152: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:113: Compile failed; see the compiler error output for details.
at org.apache.tools.ant.ProjectHelper.addLocationToBuildException(ProjectHelper.java:551)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:444)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
at sun.reflect.GeneratedMethodAccessor8.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.Target.execute(Target.java:392)
at org.apache.tools.ant.Target.performTasks(Target.java:413)
at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:38)
at org.eclipse.ant.internal.core.ant.EclipseSingleCheckExecutor.executeTargets(EclipseSingleCheckExecutor.java:30)
at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:442)
... 89 more
Caused by: /Users/david/workspace/edmbuild/build/features/org.eclipse.pde.build.container.feature/build.xml:139: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/build/features/org.eclipse.pde.build.container.feature/build.xml:19: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:152: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:113: Compile failed; see the compiler error output for details.
at org.apache.tools.ant.ProjectHelper.addLocationToBuildException(ProjectHelper.java:551)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:444)
at org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:105)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
at sun.reflect.GeneratedMethodAccessor8.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.Target.execute(Target.java:392)
at org.apache.tools.ant.Target.performTasks(Target.java:413)
at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:38)
at org.eclipse.ant.internal.core.ant.EclipseSingleCheckExecutor.executeTargets(EclipseSingleCheckExecutor.java:30)
at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:442)
... 102 more
Caused by: /Users/david/workspace/edmbuild/build/features/org.eclipse.pde.build.container.feature/build.xml:19: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:152: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:113: Compile failed; see the compiler error output for details.
at org.apache.tools.ant.ProjectHelper.addLocationToBuildException(ProjectHelper.java:551)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:444)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
at sun.reflect.GeneratedMethodAccessor8.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.Target.execute(Target.java:392)
at org.apache.tools.ant.Target.performTasks(Target.java:413)
at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:38)
at org.eclipse.ant.internal.core.ant.EclipseSingleCheckExecutor.executeTargets(EclipseSingleCheckExecutor.java:30)
at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:442)
... 116 more
Caused by: /Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:152: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:113: Compile failed; see the compiler error output for details.
at org.apache.tools.ant.ProjectHelper.addLocationToBuildException(ProjectHelper.java:551)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:444)
at org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:105)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
at sun.reflect.GeneratedMethodAccessor8.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.Target.execute(Target.java:392)
at org.apache.tools.ant.Target.performTasks(Target.java:413)
at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:38)
at org.eclipse.ant.internal.core.ant.EclipseSingleCheckExecutor.executeTargets(EclipseSingleCheckExecutor.java:30)
at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:442)
... 129 more
Caused by: /Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:113: Compile failed; see the compiler error output for details.
at org.apache.tools.ant.taskdefs.Javac.compile(Javac.java:1174)
at org.apache.tools.ant.taskdefs.Javac.execute(Javac.java:930)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
at sun.reflect.GeneratedMethodAccessor8.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.Target.execute(Target.java:392)
at org.apache.tools.ant.Target.performTasks(Target.java:413)
at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:38)
at org.eclipse.ant.internal.core.ant.EclipseSingleCheckExecutor.executeTargets(EclipseSingleCheckExecutor.java:30)
at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:442)
... 143 more
Root exception:
/Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/productBuild/productBuild.xml:43: The following error occurred while executing this line:
/Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/build.xml:105: The following error occurred while executing this line:
/Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/templates/headless-build/customTargets.xml:12: The following error occurred while executing this line:
/Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/productBuild/allElements.xml:20: The following error occurred while executing this line:
/Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/genericTargets.xml:118: The following error occurred while executing this line:
/Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/genericTargets.xml:123: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/build/features/org.eclipse.pde.build.container.feature/build.xml:139: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/build/features/org.eclipse.pde.build.container.feature/build.xml:19: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:152: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:113: Compile failed; see the compiler error output for details.
at org.apache.tools.ant.ProjectHelper.addLocationToBuildException(ProjectHelper.java:551)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:444)
at org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:105)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
at sun.reflect.GeneratedMethodAccessor8.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.Target.execute(Target.java:392)
at org.apache.tools.ant.Target.performTasks(Target.java:413)
at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
at org.apache.tools.ant.Project.executeTarget(Project.java:1368)
at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
at org.eclipse.ant.internal.core.ant.EclipseDefaultExecutor.executeTargets(EclipseDefaultExecutor.java:32)
at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
at org.eclipse.ant.internal.core.ant.InternalAntRunner.run(InternalAntRunner.java:672)
at org.eclipse.ant.internal.core.ant.InternalAntRunner.run(InternalAntRunner.java:537)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.eclipse.ant.core.AntRunner.run(AntRunner.java:513)
at org.eclipse.ant.core.AntRunner.start(AntRunner.java:600)
at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:354)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:181)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:636)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:591)
at org.eclipse.equinox.launcher.Main.run(Main.java:1450)
at org.eclipse.equinox.launcher.Main.main(Main.java:1426)
Caused by: /Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/build.xml:105: The following error occurred while executing this line:
/Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/templates/headless-build/customTargets.xml:12: The following error occurred while executing this line:
/Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/productBuild/allElements.xml:20: The following error occurred while executing this line:
/Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/genericTargets.xml:118: The following error occurred while executing this line:
/Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/genericTargets.xml:123: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/build/features/org.eclipse.pde.build.container.feature/build.xml:139: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/build/features/org.eclipse.pde.build.container.feature/build.xml:19: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:152: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:113: Compile failed; see the compiler error output for details.
at org.apache.tools.ant.ProjectHelper.addLocationToBuildException(ProjectHelper.java:551)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:444)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
at sun.reflect.GeneratedMethodAccessor8.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.Target.execute(Target.java:392)
at org.apache.tools.ant.Target.performTasks(Target.java:413)
at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:38)
at org.eclipse.ant.internal.core.ant.EclipseSingleCheckExecutor.executeTargets(EclipseSingleCheckExecutor.java:30)
at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:442)
... 35 more
Caused by: /Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/templates/headless-build/customTargets.xml:12: The following error occurred while executing this line:
/Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/productBuild/allElements.xml:20: The following error occurred while executing this line:
/Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/genericTargets.xml:118: The following error occurred while executing this line:
/Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/genericTargets.xml:123: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/build/features/org.eclipse.pde.build.container.feature/build.xml:139: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/build/features/org.eclipse.pde.build.container.feature/build.xml:19: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:152: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:113: Compile failed; see the compiler error output for details.
at org.apache.tools.ant.ProjectHelper.addLocationToBuildException(ProjectHelper.java:551)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:444)
at org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:105)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
at sun.reflect.GeneratedMethodAccessor8.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.Target.execute(Target.java:392)
at org.apache.tools.ant.Target.performTasks(Target.java:413)
at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:38)
at org.eclipse.ant.internal.core.ant.EclipseSingleCheckExecutor.executeTargets(EclipseSingleCheckExecutor.java:30)
at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:442)
... 48 more
Caused by: /Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/productBuild/allElements.xml:20: The following error occurred while executing this line:
/Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/genericTargets.xml:118: The following error occurred while executing this line:
/Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/genericTargets.xml:123: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/build/features/org.eclipse.pde.build.container.feature/build.xml:139: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/build/features/org.eclipse.pde.build.container.feature/build.xml:19: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:152: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:113: Compile failed; see the compiler error output for details.
at org.apache.tools.ant.ProjectHelper.addLocationToBuildException(ProjectHelper.java:551)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:444)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
at sun.reflect.GeneratedMethodAccessor8.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.Target.execute(Target.java:392)
at org.apache.tools.ant.Target.performTasks(Target.java:413)
at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:38)
at org.eclipse.ant.internal.core.ant.EclipseSingleCheckExecutor.executeTargets(EclipseSingleCheckExecutor.java:30)
at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:442)
... 62 more
Caused by: /Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/genericTargets.xml:118: The following error occurred while executing this line:
/Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/genericTargets.xml:123: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/build/features/org.eclipse.pde.build.container.feature/build.xml:139: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/build/features/org.eclipse.pde.build.container.feature/build.xml:19: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:152: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:113: Compile failed; see the compiler error output for details.
at org.apache.tools.ant.ProjectHelper.addLocationToBuildException(ProjectHelper.java:551)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:444)
at org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:105)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
at sun.reflect.GeneratedMethodAccessor8.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.Target.execute(Target.java:392)
at org.apache.tools.ant.Target.performTasks(Target.java:413)
at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:38)
at org.eclipse.ant.internal.core.ant.EclipseSingleCheckExecutor.executeTargets(EclipseSingleCheckExecutor.java:30)
at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:442)
... 75 more
Caused by: /Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/genericTargets.xml:123: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/build/features/org.eclipse.pde.build.container.feature/build.xml:139: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/build/features/org.eclipse.pde.build.container.feature/build.xml:19: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:152: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:113: Compile failed; see the compiler error output for details.
at org.apache.tools.ant.ProjectHelper.addLocationToBuildException(ProjectHelper.java:551)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:444)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
at sun.reflect.GeneratedMethodAccessor8.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.Target.execute(Target.java:392)
at org.apache.tools.ant.Target.performTasks(Target.java:413)
at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:38)
at org.eclipse.ant.internal.core.ant.EclipseSingleCheckExecutor.executeTargets(EclipseSingleCheckExecutor.java:30)
at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:442)
... 89 more
Caused by: /Users/david/workspace/edmbuild/build/features/org.eclipse.pde.build.container.feature/build.xml:139: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/build/features/org.eclipse.pde.build.container.feature/build.xml:19: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:152: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:113: Compile failed; see the compiler error output for details.
at org.apache.tools.ant.ProjectHelper.addLocationToBuildException(ProjectHelper.java:551)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:444)
at org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:105)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
at sun.reflect.GeneratedMethodAccessor8.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.Target.execute(Target.java:392)
at org.apache.tools.ant.Target.performTasks(Target.java:413)
at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:38)
at org.eclipse.ant.internal.core.ant.EclipseSingleCheckExecutor.executeTargets(EclipseSingleCheckExecutor.java:30)
at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:442)
... 102 more
Caused by: /Users/david/workspace/edmbuild/build/features/org.eclipse.pde.build.container.feature/build.xml:19: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:152: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:113: Compile failed; see the compiler error output for details.
at org.apache.tools.ant.ProjectHelper.addLocationToBuildException(ProjectHelper.java:551)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:444)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
at sun.reflect.GeneratedMethodAccessor8.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.Target.execute(Target.java:392)
at org.apache.tools.ant.Target.performTasks(Target.java:413)
at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:38)
at org.eclipse.ant.internal.core.ant.EclipseSingleCheckExecutor.executeTargets(EclipseSingleCheckExecutor.java:30)
at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:442)
... 116 more
Caused by: /Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:152: The following error occurred while executing this line:
/Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:113: Compile failed; see the compiler error output for details.
at org.apache.tools.ant.ProjectHelper.addLocationToBuildException(ProjectHelper.java:551)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:444)
at org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:105)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
at sun.reflect.GeneratedMethodAccessor8.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.Target.execute(Target.java:392)
at org.apache.tools.ant.Target.performTasks(Target.java:413)
at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:38)
at org.eclipse.ant.internal.core.ant.EclipseSingleCheckExecutor.executeTargets(EclipseSingleCheckExecutor.java:30)
at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:442)
... 129 more
Caused by: /Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:113: Compile failed; see the compiler error output for details.
at org.apache.tools.ant.taskdefs.Javac.compile(Javac.java:1174)
at org.apache.tools.ant.taskdefs.Javac.execute(Javac.java:930)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
at sun.reflect.GeneratedMethodAccessor8.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.Target.execute(Target.java:392)
at org.apache.tools.ant.Target.performTasks(Target.java:413)
at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1399)
at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:38)
at org.eclipse.ant.internal.core.ant.EclipseSingleCheckExecutor.executeTargets(EclipseSingleCheckExecutor.java:30)
at org.apache.tools.ant.Project.executeTargets(Project.java:1251)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:442)
... 143 more
But cannot see the compiler error output anywhere?
The console output looks like this:
build.EDMUI:
[java] Starting Groovy-Eclipse compiler resolver. Specified compiler level: 2.0
[java] Buildfile: /Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts///productBuild/productBuild.xml
[java] main:
[java] preBuild:
[java] preSetup:
[java] checkLocalMaps:
[java] getMapFiles:
[java] postSetup:
[java] checkLocalBase:
[java] getBaseComponents:
[java] processRepos:
[java] generateFeature:
[java] fetch:
[java] generateFeature:
[java] [eclipse.generateFeature] Some inter-plug-in dependencies have not been satisfied.
[java] [eclipse.generateFeature] Bundle org.eclipse.core.filesystem.macosx:
[java] [eclipse.generateFeature] Another singleton version selected: org.eclipse.core.filesystem.macosx_1.3.0.v20100505-2103
[java] [eclipse.generateFeature] Bundle org.eclipse.e4.ui.workbench.renderers.swt.cocoa:
[java] [eclipse.generateFeature] Another singleton version selected: org.eclipse.e4.ui.workbench.renderers.swt.cocoa_0.11.100.v20130516-1100
[java] [eclipse.generateFeature] Bundle org.eclipse.equinox.launcher.cocoa.macosx.x86_64:
[java] [eclipse.generateFeature] Another singleton version selected: org.eclipse.equinox.launcher.cocoa.macosx.x86_64_1.1.200.v20140116-2212
[java] [eclipse.generateFeature] Bundle org.eclipse.equinox.security.macosx:
[java] [eclipse.generateFeature] Another singleton version selected: org.eclipse.equinox.security.macosx_1.100.200.v20130327-1442
[java] [eclipse.generateFeature] Bundle org.eclipse.jdt.launching.macosx:
[java] [eclipse.generateFeature] Another singleton version selected: org.eclipse.jdt.launching.macosx_3.2.200.v20130514-1246
[java] [eclipse.generateFeature] Bundle org.eclipse.jdt.launching.ui.macosx:
[java] [eclipse.generateFeature] Another singleton version selected: org.eclipse.jdt.launching.ui.macosx_1.0.200.v20130402-1743
[java] [eclipse.generateFeature] Bundle org.eclipse.swt.cocoa.macosx.x86_64:
[java] [eclipse.generateFeature] Another singleton version selected: org.eclipse.swt.cocoa.macosx.x86_64_3.102.1.v20140206-1358
[java] [eclipse.generateFeature] Host plug-in null_0.0.0 has not been found.
[java] [eclipse.generateFeature] Bundle org.aspectj.ajde:
[java] [eclipse.generateFeature] Another singleton version selected: org.aspectj.ajde_1.7.3.20130613144500-a
[java] [eclipse.generateFeature] Bundle org.eclipse.ajdt.core:
[java] [eclipse.generateFeature] Another singleton version selected: org.eclipse.ajdt.core_2.2.3.e43x-RELEASE-20130627-0800
[java] [eclipse.generateFeature] Bundle org.eclipse.ajdt.ui:
[java] [eclipse.generateFeature] Another singleton version selected: org.eclipse.ajdt.ui_2.2.3.e43x-RELEASE-20130627-0800
[java] [eclipse.generateFeature] Bundle org.eclipse.aspectj:
[java] [eclipse.generateFeature] Another singleton version selected: org.eclipse.aspectj_2.2.3.e43x-RELEASE-20130627-0800
[java] [eclipse.generateFeature] Bundle org.eclipse.contribution.visualiser:
[java] [eclipse.generateFeature] Another singleton version selected: org.eclipse.contribution.visualiser_2.2.3.e43x-RELEASE-20130627-0800
[java] [eclipse.generateFeature] Bundle org.eclipse.contribution.weaving.jdt:
[java] [eclipse.generateFeature] Another singleton version selected: org.eclipse.contribution.weaving.jdt_2.2.3.e43x-RELEASE-20130627-0800
[java] [eclipse.generateFeature] Bundle org.eclipse.contribution.xref.core:
[java] [eclipse.generateFeature] Another singleton version selected: org.eclipse.contribution.xref.core_2.2.3.e43x-RELEASE-20130627-0800
[java] [eclipse.generateFeature] Bundle org.eclipse.contribution.xref.ui:
[java] [eclipse.generateFeature] Another singleton version selected: org.eclipse.contribution.xref.ui_2.2.3.e43x-RELEASE-20130627-0800
[java] [eclipse.generateFeature] Bundle org.eclipse.equinox.weaving.hook:
[java] [eclipse.generateFeature] Bundle org.eclipse.equinox.weaving.hook:
[java] [eclipse.generateFeature] Bundle org.eclipse.update.core:
[java] [eclipse.generateFeature] Another singleton version selected: org.eclipse.update.core_3.2.600.v20140203-1328
[java] [eclipse.generateFeature] Host plug-in null_0.0.0 has not been found.
[java] [eclipse.generateFeature] Bundle org.eclipse.equinox.weaving.hook:
[java] generate:
[java] preGenerate:
[java] allElements:
[java] allElementsDelegator:
[java] init:
[java] generateScript:
[java] [eclipse.buildScript] Some inter-plug-in dependencies have not been satisfied.
[java] [eclipse.buildScript] Bundle org.eclipse.core.filesystem.macosx:
[java] [eclipse.buildScript] Another singleton version selected: org.eclipse.core.filesystem.macosx_1.3.0.v20100505-2103
[java] [eclipse.buildScript] Bundle org.eclipse.e4.ui.workbench.renderers.swt.cocoa:
[java] [eclipse.buildScript] Another singleton version selected: org.eclipse.e4.ui.workbench.renderers.swt.cocoa_0.11.100.v20130516-1100
[java] [eclipse.buildScript] Bundle org.eclipse.equinox.launcher.cocoa.macosx.x86_64:
[java] [eclipse.buildScript] Another singleton version selected: org.eclipse.equinox.launcher.cocoa.macosx.x86_64_1.1.200.v20140116-2212
[java] [eclipse.buildScript] Bundle org.eclipse.equinox.security.macosx:
[java] [eclipse.buildScript] Another singleton version selected: org.eclipse.equinox.security.macosx_1.100.200.v20130327-1442
[java] [eclipse.buildScript] Bundle org.eclipse.jdt.launching.macosx:
[java] [eclipse.buildScript] Another singleton version selected: org.eclipse.jdt.launching.macosx_3.2.200.v20130514-1246
[java] [eclipse.buildScript] Bundle org.eclipse.jdt.launching.ui.macosx:
[java] [eclipse.buildScript] Another singleton version selected: org.eclipse.jdt.launching.ui.macosx_1.0.200.v20130402-1743
[java] [eclipse.buildScript] Bundle org.eclipse.swt.cocoa.macosx.x86_64:
[java] [eclipse.buildScript] Another singleton version selected: org.eclipse.swt.cocoa.macosx.x86_64_3.102.1.v20140206-1358
[java] [eclipse.buildScript] Host plug-in null_0.0.0 has not been found.
[java] [eclipse.buildScript] Bundle org.aspectj.ajde:
[java] [eclipse.buildScript] Another singleton version selected: org.aspectj.ajde_1.7.3.20130613144500-a
[java] [eclipse.buildScript] Bundle org.eclipse.ajdt.core:
[java] [eclipse.buildScript] Another singleton version selected: org.eclipse.ajdt.core_2.2.3.e43x-RELEASE-20130627-0800
[java] [eclipse.buildScript] Bundle org.eclipse.ajdt.ui:
[java] [eclipse.buildScript] Another singleton version selected: org.eclipse.ajdt.ui_2.2.3.e43x-RELEASE-20130627-0800
[java] [eclipse.buildScript] Bundle org.eclipse.aspectj:
[java] [eclipse.buildScript] Another singleton version selected: org.eclipse.aspectj_2.2.3.e43x-RELEASE-20130627-0800
[java] [eclipse.buildScript] Bundle org.eclipse.contribution.visualiser:
[java] [eclipse.buildScript] Another singleton version selected: org.eclipse.contribution.visualiser_2.2.3.e43x-RELEASE-20130627-0800
[java] [eclipse.buildScript] Bundle org.eclipse.contribution.weaving.jdt:
[java] [eclipse.buildScript] Another singleton version selected: org.eclipse.contribution.weaving.jdt_2.2.3.e43x-RELEASE-20130627-0800
[java] [eclipse.buildScript] Bundle org.eclipse.contribution.xref.core:
[java] [eclipse.buildScript] Another singleton version selected: org.eclipse.contribution.xref.core_2.2.3.e43x-RELEASE-20130627-0800
[java] [eclipse.buildScript] Bundle org.eclipse.contribution.xref.ui:
[java] [eclipse.buildScript] Another singleton version selected: org.eclipse.contribution.xref.ui_2.2.3.e43x-RELEASE-20130627-0800
[java] [eclipse.buildScript] Bundle org.eclipse.equinox.weaving.hook:
[java] [eclipse.buildScript] Bundle org.eclipse.equinox.weaving.hook:
[java] [eclipse.buildScript] Bundle org.eclipse.update.core:
[java] [eclipse.buildScript] Another singleton version selected: org.eclipse.update.core_3.2.600.v20140203-1328
[java] [eclipse.buildScript] Host plug-in null_0.0.0 has not been found.
[java] [eclipse.buildScript] Bundle org.eclipse.equinox.weaving.hook:
[java] postGenerate:
[java] clean:
[java] allElements:
[java] allElementsDelegator:
[java] init:
[java] cleanElement:
[java] [echo] /Users/david/workspace/edmbuild/build/features/org.eclipse.pde.build.container.feature
[java] init:
[java] clean:
[java] init:
[java] all.features:
[java] init:
[java] clean:
[java] all.plugins:
[java] properties:
[java] init:
[java] clean:
[java] properties:
[java] init:
[java] clean:
[java] properties:
[java] init:
[java] clean:
[java] properties:
[java] init:
[java] clean:
[java] properties:
[java] init:
[java] clean:
[java] properties:
[java] init:
[java] clean:
[java] properties:
[java] init:
[java] clean:
[java] properties:
[java] init:
[java] clean:
[java] properties:
[java] init:
[java] clean:
[java] properties:
[java] init:
[java] clean:
[java] properties:
[java] init:
[java] clean:
[java] properties:
[java] init:
[java] clean:
[java] properties:
[java] init:
[java] clean:
[java] properties:
[java] init:
[java] clean:
[java] properties:
[java] init:
[java] clean:
[java] properties:
[java] init:
[java] clean:
[java] properties:
[java] init:
[java] clean:
[java] properties:
[java] init:
[java] clean:
[java] properties:
[java] init:
[java] clean:
[java] properties:
[java] init:
[java] clean:
[java] properties:
[java] init:
[java] clean:
[java] [delete] Deleting directory /Users/david/workspace/edmbuild/plugins/com.yambina.edm.ui/@dot
[java] properties:
[java] init:
[java] clean:
[java] update.feature:
[java] all.children:
[java] process:
[java] preProcess:
[java] allElements:
[java] allElementsDelegator:
[java] init:
[java] processElement:
[java] processViaFeature:
[java] init:
[java] build.jars:
[java] init:
[java] all.features:
[java] init:
[java] build.jars:
[java] all.plugins:
[java] properties:
[java] init:
[java] build.jars:
[java] properties:
[java] init:
[java] build.jars:
[java] properties:
[java] init:
[java] @dot.nestedJars:
[java] @dot:
[java] [mkdir] Created dir: /Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/@dot
[java] [javac] Compiling 1 source file to /Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/@dot
[java] [javac] Unrecognized option : org.eclipse.ajdt.core.ant.AJDT_AjcCompilerAdapter
[java] [javac] Compilation failed. Compiler errors are available in /Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/@dot.log
[java] BUILD FAILED
[java] /Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/productBuild/productBuild.xml:43: The following error occurred while executing this line:
[java] /Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/build.xml:105: The following error occurred while executing this line:
[java] /Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/templates/headless-build/customTargets.xml:12: The following error occurred while executing this line:
[java] /Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/productBuild/allElements.xml:20: The following error occurred while executing this line:
[java] /Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/genericTargets.xml:118: The following error occurred while executing this line:
[java] /Users/david/eclipse/plugins/org.eclipse.pde.build_3.8.100.v20130514-1028/scripts/genericTargets.xml:123: The following error occurred while executing this line:
[java] /Users/david/workspace/edmbuild/build/features/org.eclipse.pde.build.container.feature/build.xml:139: The following error occurred while executing this line:
[java] /Users/david/workspace/edmbuild/build/features/org.eclipse.pde.build.container.feature/build.xml:19: The following error occurred while executing this line:
[java] /Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:152: The following error occurred while executing this line:
[java] /Users/david/workspace/edmbuild/plugins/com.yambina.log4j.cfg/build.xml:113: Compile failed; see the compiler error output for details.
[java] Total time: 14 seconds
[java] An error has occurred. See the log file
[java] /Users/david/Documents/workspace/.metadata/.log.
BUILD FAILED
/Users/david/git/EDM/builds/build.xml:117: The following error occurred while executing this line:
/Users/david/git/EDM/builds/build.xml:626: Java returned: 13
Total time: 38 seconds
[Updated on: Fri, 30 May 2014 07:15] by Moderator
|
|
|
|
|
|
|
Powered by
FUDForum. Page generated in 0.25380 seconds