### Build and Run SASSA with Gradle Source: https://github.com/zodsmar/seedsearcherstandalonetool/blob/master/README.md These Bash commands demonstrate how to compile the SASSA project and execute the application using Gradle. The `gradle build` command compiles all components, and `gradle run` starts the application. Developers can use either their system's Gradle installation or the local Gradle wrapper. ```Bash # build the project gradle build # run Sassa gradle run ``` -------------------------------- ### Example Gradle Build Failure Output Source: https://github.com/zodsmar/seedsearcherstandalonetool/blob/master/README.md This snippet displays a common error message encountered when building the project with an incompatible or older version of Gradle. It highlights the 'FAILURE: Build failed with an exception' and suggests options for debugging, such as using --stacktrace, --info, --debug, or --scan. ```Gradle FAILURE: Build failed with an exception. * What went wrong: 'org.gradle.api.Task org.gradle.api.tasks.TaskContainer.create(java.lang.String, java.lang.Class, java.lang.Object[])' * 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. * Get more help at https://help.gradle.org ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.