Skip to content
Snippets Groups Projects
Commit 53481d5d authored by Robert Goldmann's avatar Robert Goldmann
Browse files

#663 - migrator: create executable jar with all dependencies

parent bc426f2f
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,8 @@
<properties>
<h2database.version>1.4.199</h2database.version>
<commons-cli.version>1.5.0</commons-cli.version>
<project.artifactName>${project.artifactId}-v${project.version}</project.artifactName>
</properties>
<dependencies>
......@@ -54,4 +56,23 @@
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<outputDirectory>${project.outputDirectory}</outputDirectory>
<finalName>${project.artifactName}</finalName>
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment