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
To generate a license report for a non-Android project, the java plugin has to be applied even for Kotlin projects. Thus, the following does not work:
java
plugins { id("com.jaredsburrows.license") kotlin("jvm") }
However, non-Android projects that use Kotlin are 100% Java-compatible. The workaround is:
plugins { id("com.jaredsburrows.license") kotlin("jvm") java // For `license` plugin only }
The text was updated successfully, but these errors were encountered:
Support plain-Kotlin Gradle projects
2f8683e
Resolves jaredsburrows#241
3064bc4
Support plain-Kotlin Gradle projects (#242)
7e8a7ae
Resolves #241
Successfully merging a pull request may close this issue.
To generate a license report for a non-Android project, the
java
plugin has to be applied even for Kotlin projects. Thus, the following does not work:However, non-Android projects that use Kotlin are 100% Java-compatible. The workaround is:
The text was updated successfully, but these errors were encountered: