CreateProcess error=206, filename or extension is too long

Hi,

If you try to compile using Windows you are facing of windows command length limitation (see A problem occurred starting process 'command 'C:\Java\jdk1.8.0_101\bin\java.exe'')

For myself, I prefered to use my self tomcat and to deploy war:

  1. download, install and configure the lastest tomcat release;
  2. Sync the git repository:
    2.1 git clone https://github.com/axelor/abs-webapp.git
    2.2 cd abs-webapp
    2.3 edit the .gitmodules and replace the url by https://github.com/axelor/axelor-business-suite.git
    2.4 sync submodules: git submodule init; git submodule update; git submodule foreach git checkout master; git submodule foreach git pull origin master
    3 edit the \abs-webapp\src\resources\main\application.properties to setup your prefs and do not forget to set data.import.demo-data to true
    4 execute gradlew war
    5 put the \build\libs\xxxxx.war files into the webapps dir of tomcat and wait for complete deployement (see catalina.out)

Regards