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

Popular posts from this blog

javascript - Using jquery append to add option values into a select element not working -

Android soft keyboard reverts to default keyboard on orientation change -

jquery - javascript onscroll fade same class but with different div -