Hello everyone, I was following the official guide to build airavata from source <https://airavata.apache.org/development/build.html> . The distribution built successfully without running tests (*mvn clean install -Dmaven.test.skip=true*).
However,on building without skipping tests (*mvn clean install*) , I encountered the following error- [ERROR] *Failed to execute goal org.apache.maven.plugins:maven-failsafe-plugin:2.5:verify*(default) on project integration-tests: There are test failures. [ERROR] [ERROR] Please refer to /home/priyanshu-sekhar/airavata/modules/integration-tests/target/failsafe-reports for the individual test results. [ERROR] -> [Help 1] [ERROR] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. [ERROR] Re-run Maven using the -X switch to enable full debug logging. [ERROR] [ERROR] For more information about the errors and possible solutions, please read the following articles: [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException [ERROR] [ERROR] After correcting the problems, you can resume the build with the command [ERROR] mvn <goals> -rf :integration-tests I guessed it is because of missing *Maven Failsafe plugin *configuration, hence I added the following lines to "pom.xml" - <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId> maven-failsafe-plugin</artifactId> <version>2.5</version> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> However, the error stills remains.I'm not sure exactly where the problem lies. Any suggestions would be of immense help! Regards, Priyanshu Sekhar Patra
