We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Build fails with the following error when using Gradle 7
A problem occurred evaluating root project 'AltoroJ-AltoroJ-3.3'. Could not find method compile() for arguments [directory 'WebContent/WEB-INF/lib',
A problem occurred evaluating root project 'AltoroJ-AltoroJ-3.3'.
Could not find method compile() for arguments [directory 'WebContent/WEB-INF/lib',
Cause is that the "compile" option in the build.gradle file has been depreciated since Gradle 4.10 and has been removed in Gradle 7
It has been superseded by implementation.
Changing the following line in the build.gradle file seems to resolve the issue: dependencies { compile fileTree(dir:
dependencies { implementation fileTree(dir:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Build fails with the following error when using Gradle 7
Cause is that the "compile" option in the build.gradle file has been depreciated since Gradle 4.10 and has been removed in Gradle 7
It has been superseded by implementation.
Changing the following line in the build.gradle file seems to resolve the issue:
dependencies {
compile
fileTree(dir:
dependencies {
implementation
fileTree(dir:
The text was updated successfully, but these errors were encountered: