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:
- download, install and configure the lastest tomcat release;
- Sync the git repository:
2.1git clone https://github.com/axelor/abs-webapp.git
2.2cd abs-webapp
2.3 edit the .gitmodules and replace theurl
by https://github.com/axelor/axelor-business-suite.git
2.4sync 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 setdata.import.demo-data
totrue
4 executegradlew war
5 put the\build\libs\xxxxx.war
files into the webapps dir of tomcat and wait for complete deployement (see catalina.out)
Regards