Skip to content

Commit

Permalink
chore(pom.xml): update liquibase-parent-pom version from 0.2.1-SNAPSH…
Browse files Browse the repository at this point in the history
…OT to 0.2.2-SNAPSHOT for bug fixes and improvements

feat(pom.xml): add maven-assembly-plugin version 3.6.0 to enable creating an assembly with dependencies for the S3 Remote Accessor Extension
  • Loading branch information
jandroav committed Oct 11, 2023
1 parent ea4c42f commit 9b6a4f4
Showing 1 changed file with 30 additions and 1 deletion.
31 changes: 30 additions & 1 deletion 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.2.1-SNAPSHOT</version>
<version>0.2.2-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 @@ -68,6 +68,7 @@
<h2.version>2.2.224</h2.version>
<liquibase-test-harness.version>1.0.9</liquibase-test-harness.version>
<lombok.version>1.18.28</lombok.version>
<maven-assembly-plugin.version>3.6.0</maven-assembly-plugin.version>
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
<maven-failsafe-plugin.version>3.1.2</maven-failsafe-plugin.version>
<maven-release-plugin.version>3.0.1</maven-release-plugin.version>
Expand Down Expand Up @@ -664,6 +665,34 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>${maven-assembly-plugin.version}</version>
<configuration>
<archive>
<manifestEntries>
<Implementation-Title>S3 Remote Accessor Extension</Implementation-Title>
<Bundle-Vendor>Liquibase</Bundle-Vendor>
<Bundle-Version>${project.version}</Bundle-Version>
</manifestEntries>
</archive>
<appendAssemblyId>false</appendAssemblyId>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<finalName>${project.name}-${project.version}</finalName>
</configuration>
<executions>
<execution>
<id>assemble-all</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
Expand Down

0 comments on commit 9b6a4f4

Please sign in to comment.