From CopyDependenciesTask.groovy, the line (#191)
rename "classes.jar", "${dependency.group.toLowerCase()}-${dependency.name.toLowerCase()}-${dependency.version}.jar"
will crash if the dependency object's group or version methods return null.
According to the gradle documentation for the Dependency these methods are annotated as @Nullable (i.e. returning null is a possibility).
Thanks,
Jon
PS Cheers for developing this plugin, it's very much appreciated!
Hello!
From CopyDependenciesTask.groovy, the line (#191)
rename "classes.jar", "${dependency.group.toLowerCase()}-${dependency.name.toLowerCase()}-${dependency.version}.jar"
will crash if the dependency object'sgroup
orversion
methods returnnull
.According to the gradle documentation for the Dependency these methods are annotated as @Nullable (i.e. returning
null
is a possibility).Thanks, Jon
PS Cheers for developing this plugin, it's very much appreciated!