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
Gradle 4 docs mention new names for dependencies in Java projects: https://docs.gradle.org/4.10.3/userguide/building_java_projects.html#sec:java_dependency_management_overview
No "compile", no "runtime", no "provided". We are using obsolete names, contradicting to modern docs.
search.maven.org also suggest new type of dependency:
However CUBA build scripts currently do not support these dependencies. Known problems:
The text was updated successfully, but these errors were encountered:
We've already replaced provided configuration before. Will support runtimeOnly / testRuntimeOnly and implementation / testImplementation.
provided
runtimeOnly
testRuntimeOnly
implementation
testImplementation
Sorry, something went wrong.
t2-cuba
No branches or pull requests
Environment
Description of the bug or enhancement
Gradle 4 docs mention new names for dependencies in Java projects:
https://docs.gradle.org/4.10.3/userguide/building_java_projects.html#sec:java_dependency_management_overview
No "compile", no "runtime", no "provided". We are using obsolete names, contradicting to modern docs.
search.maven.org also suggest new type of dependency:
![image](https://user-images.githubusercontent.com/6158807/63093405-0e642100-bf76-11e9-9cbf-e69e35eec0fa.png)
However CUBA build scripts currently do not support these dependencies.
Known problems:
The text was updated successfully, but these errors were encountered: