java - Ant task failed on GWT compilation -
i using gwt 2.5.0, on gwt compilation, build failed occurs java returned: 137.
my environment jenkins build tool.
here build code :
<target name="clientcompile" depends="servercompile" description="gwt compile javascript (production mode)" > <java classname="com.google.gwt.dev.compiler" failonerror="true" fork="true" > <classpath> <pathelement location="src" /> <path refid="project.class.path" /> <pathelement location="${gwt.sdk}\validation-api-1.0.0.ga.jar" /> <pathelement location="${gwt.sdk}\validation-api-1.0.0.ga-sources.jar" /> </classpath> <jvmarg value="-xmx512m" /> <arg line="-war" /> <arg value="war" /> <arg line="${gwt.args}" /> <arg value="com.skt.sktweb" /> </java> </target>
on running ant task getting this,
clientcompile:
[java] compiling module com.skt.sktweb
[java] validating units: [java] ignored 1 unit compilation errors in first pass. [java] compile -strict or -loglevel set trace or debug see errors.
build failed /root/.jenkins/workspace/kingstrack web application/ltswebear/build.xml:57: following error occurred while executing line: /root/.jenkins/workspace/kingstrack web application/ltsweb/build.xml:174: java returned: 137
why error occuring. system linux based system.
please help.
Comments
Post a Comment