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
Currently the path 'META-INF/services' is hard-coded and private. The only way to configure a similar transformer while targeting a different path is to subclass the transformer (like so https://github.com/griffon/griffon/blob/development/subprojects/gradle-griffon-plugin/src/main/groovy/org/codehaus/griffon/gradle/shadow/transformers/GriffonFileTransformer.groovy).
It would be better if ServiceFileTransformer allowed its path to be configurable, like this
ServiceFileTransformer
shadowJar { transform(ServiceFileTransformer) { path = 'META-INF/griffon' } }
The current path value would be used as default though, so no additional configuration should be made if the standard location is the target path.
The text was updated successfully, but these errors were encountered:
66845d3
No branches or pull requests
Currently the path 'META-INF/services' is hard-coded and private. The only way to configure a similar transformer while targeting a different path is to subclass the transformer (like so https://github.com/griffon/griffon/blob/development/subprojects/gradle-griffon-plugin/src/main/groovy/org/codehaus/griffon/gradle/shadow/transformers/GriffonFileTransformer.groovy).
It would be better if
ServiceFileTransformer
allowed its path to be configurable, like thisThe current path value would be used as default though, so no additional configuration should be made if the standard location is the target path.
The text was updated successfully, but these errors were encountered: