Make the jar work

This commit is contained in:
Norbi Peti 2020-04-28 00:47:28 +02:00
parent 1be4f92b1b
commit 5192999143
No known key found for this signature in database
GPG key ID: DBA4C4549A927E56
2 changed files with 13 additions and 0 deletions

1
.gitignore vendored
View file

@ -1,3 +1,4 @@
/src/main/resources/application.properties
.idea
/target/
/dependency-reduced-pom.xml

12
pom.xml
View file

@ -27,6 +27,18 @@
<target>11</target>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.2.6.RELEASE</version>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>