Skip to content

Commit

Permalink
Add executable-jar package on the server-side
Browse files Browse the repository at this point in the history
  • Loading branch information
oleksii-yavtushenko committed Apr 11, 2021
1 parent 3362d67 commit 862d51a
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions ServerSide/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,27 @@
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
<configuration>
<classifier>spring-boot</classifier>
<mainClass>
com.letter.server.Application
</mainClass>
</configuration>
</execution>
</executions>
<configuration>
<excludes>
<exclude>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
Expand Down

0 comments on commit 862d51a

Please sign in to comment.