Skip to content

Commit

Permalink
Add license to pom publication (#24)
Browse files Browse the repository at this point in the history
This allows tools such as
[licensee](https://github.com/cashapp/licensee) to work out of the box.
  • Loading branch information
erikeelde authored Sep 24, 2024
1 parent 1b88344 commit a181247
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion android-lints/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,14 @@ publishing {
release(MavenPublication) {
groupId = "com.github.kozaxinan"
artifactId = "android-lints"

pom {
licenses {
license {
name = 'Apache License, Version 2.0'
url = 'https://opensource.org/license/apache-2-0'
}
}
}
afterEvaluate {
from components.release
}
Expand Down

0 comments on commit a181247

Please sign in to comment.