Posts

Showing posts with the label ant

Using Ant Javac Adaptor

Image
Clash Royale CLAN TAG #URR8PPP Using Ant Javac Adaptor I am trying to use the Eclipse compiler to perform my ant builds. Using this document http://help.eclipse.org/juno/index.jsp?topic=%2Forg.eclipse.jdt.doc.user%2Ftasks%2Ftask-using_batch_compiler.htm I am trying to make my set-up. But i face the following error Class not found: org.eclipse.jdt.core.JDTCompilerAdapter What is the issue? My aim is to run an Ant build outside of Eclipse but using the Eclipse compiler. Show us how you are trying to use this in Ant. – greg-449 May 13 '16 at 8:45 <property name="build.compiler" value="org.eclipse.jdt.core.JDTCompilerAdapter"/> – Müller May 13 '16 at 8:50 ...

Swings Issue on Java 10

Image
Clash Royale CLAN TAG #URR8PPP Swings Issue on Java 10 I am currently trying to move our application from Java 8 to Java 10 and in few months will be moving to Java 11. We have a legacy system which uses a bit of api's which are removed or will be removed I guess. We are using ant script (1.10.1) for our application compilation. Below is the same of the part that build our application: <target name="javac-setup" depends="flags, with.clover, jaxb-apply, flamingo.javac"/> <target name="javac" depends="javac-setup"> <mkdir dir="${workmanager.dir.classes}"/> <javac destdir="${workmanager.dir.classes}" deprecation="on" debug="${javac.debug}" encoding="iso-8859-1" includeantruntime="false"> <compilerarg line="-Xlint:static"/> <compilerarg line="-Xlint:unchecked"/> <compilera...