Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
I managed to sync the project, but although CubaStudio is able to recognize again the project as a CUBA project, I am not being able to start it on the IDE’s Tomcat instance. Logs are attached app.log (43.4 KB) . Please provide guidance then I am not at all familiar with Spring architecture.
Here’s also my gradle build file build.gradle (5.9 KB)
Looks like I am missing some dependency, but before I do something inadequate I prefer to ask you guys.
UPDATE: I managed to solve it partially, by changing in build.gradle
if (!JavaVersion.current().isJava8()) {
}
compile ‘com.itextpdf:itextpdf:5.0.6’
runtime(‘javax.xml.bind:jaxb-api:2.3.1’)
runtime(‘org.glassfish.jaxb:jaxb-runtime:2.3.1’)
So basically there were two important dependencies not there anymore.
What’s most curious is that this didn’t happen with the previous repo (bintray), and the java version is the one supplied with the IDE. Does it make any sense?