Skip to content

Commit

Permalink
When generating our custom MANIFEST.mf, include the notion of the s…
Browse files Browse the repository at this point in the history
…oftware license under which the artifact is distributed.
  • Loading branch information
armiol committed May 21, 2024
1 parent 340d54b commit b2362e4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion buildSrc/src/main/kotlin/write-manifest.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ val manifestAttributes = mapOf(
"Build-OS" to buildOs(),
IMPLEMENTATION_TITLE.toString() to implementationTitle(),
IMPLEMENTATION_VERSION.toString() to project.version,
IMPLEMENTATION_VENDOR.toString() to "TeamDev"
IMPLEMENTATION_VENDOR.toString() to "TeamDev",
"Bundle-License" to "https://www.apache.org/licenses/LICENSE-2.0.txt"
)

/**
Expand Down

0 comments on commit b2362e4

Please sign in to comment.