Skip to content

Commit

Permalink
chore(pom.xml): update liquibase-parent-pom version from 0.3.0-SNAPSH…
Browse files Browse the repository at this point in the history
…OT to 0.2.5-SNAPSHOT for compatibility (#68)

chore(pom.xml): update Implementation-Title in manifestEntries to ${project.artifactId}-${project.version} for accurate identification
chore(pom.xml): update finalName in jar-with-dependencies configuration to ${project.artifactId}-${project.version} for correct naming
chore(pom.xml): update Implementation-Title in manifestEntries to ${project.artifactId}-${project.version} for accurate identification in shade plugin
  • Loading branch information
jandroav authored Oct 13, 2023
1 parent 12745fd commit c6b677a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>org.liquibase</groupId>
<artifactId>liquibase-parent-pom</artifactId>
<name>Liquibase Parent POM</name>
<version>0.3.0-SNAPSHOT</version>
<version>0.2.5-SNAPSHOT</version>
<description>Liquibase Parent POM for all Extensions</description>
<url>https://github.com/liquibase/liquibase-parent-pom</url>
<packaging>pom</packaging>
Expand Down Expand Up @@ -311,7 +311,7 @@
<configuration>
<archive>
<manifestEntries>
<Implementation-Title>${project.name}</Implementation-Title>
<Implementation-Title>${project.artifactId}-${project.version}</Implementation-Title>
<Bundle-Vendor>Liquibase</Bundle-Vendor>
<Bundle-Version>${project.version}</Bundle-Version>
</manifestEntries>
Expand All @@ -320,7 +320,7 @@
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<finalName>${project.name}-${project.version}</finalName>
<finalName>${project.artifactId}-${project.version}</finalName>
</configuration>
<executions>
<execution>
Expand Down Expand Up @@ -410,7 +410,7 @@
<Specification-Title>Liquibase</Specification-Title>
<Specification-Version>${liquibase.version}</Specification-Version>
<Specification-Vendor>Liquibase.org</Specification-Vendor>
<Implementation-Title>${project.name}</Implementation-Title>
<Implementation-Title>${project.artifactId}-${project.version}</Implementation-Title>
<Implementation-Version>${project.version}</Implementation-Version>
<Implementation-Vendor>Liquibase</Implementation-Vendor>
</manifestEntries>
Expand Down Expand Up @@ -484,7 +484,7 @@
</transformer>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<manifestEntries>
<Implementation-Title>${project.name}</Implementation-Title>
<Implementation-Title>${project.artifactId}-${project.version}</Implementation-Title>
<Bundle-Vendor>Liquibase</Bundle-Vendor>
<Bundle-Version>${project.version}</Bundle-Version>
</manifestEntries>
Expand Down

0 comments on commit c6b677a

Please sign in to comment.