Skip to content

Commit

Permalink
chore(pom.xml): remove maven-assembly-plugin configuration and execut…
Browse files Browse the repository at this point in the history
…ion (#65)

The maven-assembly-plugin configuration and execution were removed from the pom.xml file. This plugin was previously used to create an assembly with dependencies, but it is no longer needed for the project. Removing this configuration simplifies the build process and reduces unnecessary complexity.
  • Loading branch information
jandroav authored Oct 11, 2023
1 parent 1975a37 commit 8fce6f4
Showing 1 changed file with 0 additions and 28 deletions.
28 changes: 0 additions & 28 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -693,34 +693,6 @@
</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>${project.name}</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 8fce6f4

Please sign in to comment.