Skip to content

Commit

Permalink
Merge pull request #504 from matomo-org/LicenseInArtifact
Browse files Browse the repository at this point in the history
Add license to artifact
  • Loading branch information
hannesa2 authored Jun 6, 2024
2 parents d4a24e8 + a8abad6 commit f4efa91
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion tracker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,16 @@ publishing {
publications {
release(MavenPublication) {
afterEvaluate {
from components.release
from components.release {
pom {
licenses {
license {
name = 'BSD 3-Clause "New" or "Revised" License'
url = 'https://github.com/matomo-org/matomo-sdk-android/blob/master/LICENSE'
}
}
}
}
}
}
}
Expand Down

0 comments on commit f4efa91

Please sign in to comment.