Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -719,8 +719,11 @@ limitations under the License.
<archive>
<manifestEntries>
<Build-Date>${project.build.outputTimestamp}</Build-Date>
<Build-Version>${project.version}</Build-Version>
<Build-Jdk>${java.version}</Build-Jdk>
<Build-Version>${project.version}</Build-Version>
<Build-Jdk>${java.version}</Build-Jdk>
<Specification-Title>Apache Baremaps CSV (incubating)</Specification-Title>
Copy link
Member

@bchapuis bchapuis Jan 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@rohitYaduvanshi Thanks for this PR. I guess we should probably add a <name> tag in all sub modules (e.g baremaps-csv/pom.xml) and use it to generate the Specification-Title dynamically. From what I understand, with the current solution, all the generated jars will have the same specification title.

<name>baremaps-csv</name>

...

<Specification-Title>${project.name}</Specification-Title>

<Specification-Vendor>Apache Software Foundation</Specification-Vendor>
<Implementation-Vendor>Apache Software Foundation</Implementation-Vendor>
</manifestEntries>
</archive>
</configuration>
Expand Down
Loading