You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
plugins {
id 'java'
id 'com.github.hierynomus.license' version '0.13.1'
}
buildDir = 'generated'
When I run gradle java, I get the .class files under generated/ as expected.
When I run gradle downLic, it creates a folder named build/ and puts its reports in that.
How can I change that? I think it would be best to honor the global buildDir (like other plugins do), but I can live with a configuration option in the license-gradle-plugin as well.
The text was updated successfully, but these errors were encountered:
I have this build script:
When I run
gradle java
, I get the .class files undergenerated/
as expected.When I run
gradle downLic
, it creates a folder namedbuild/
and puts its reports in that.How can I change that? I think it would be best to honor the global
buildDir
(like other plugins do), but I can live with a configuration option in the license-gradle-plugin as well.The text was updated successfully, but these errors were encountered: