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
For example, I want to write this:
extraJavaModuleInfo { module("commons-beanutils:commons-beanutils", "org.apache.commons.beanutils") { exports("org.apache.commons.beanutils") requires("org.apache.commons.logging") requires("java.sql") requires("java.desktop") } module("commons-cli:commons-cli", "org.apache.commons.cli") { exports("org.apache.commons.cli") } module("commons-collections:commons-collections", "org.apache.commons.collections") automaticModule("commons-logging:commons-logging", "org.apache.commons.logging") }
instead of (current approach):
extraJavaModuleInfo { module("commons-beanutils-1.9.4.jar", "org.apache.commons.beanutils", "1.9.4") { exports("org.apache.commons.beanutils") requires("org.apache.commons.logging") requires("java.sql") requires("java.desktop") } module("commons-cli-1.4.jar", "org.apache.commons.cli", "3.2.2") { exports("org.apache.commons.cli") } module("commons-collections-3.2.2.jar", "org.apache.commons.collections", "3.2.2") automaticModule("commons-logging-1.2.jar", "org.apache.commons.logging") }
This will make the plugin much easier to use.
The text was updated successfully, but these errors were encountered:
Available in 0.12 through 3292934
0.12
Sorry, something went wrong.
No branches or pull requests
For example, I want to write this:
instead of (current approach):
This will make the plugin much easier to use.
The text was updated successfully, but these errors were encountered: