1
0
Fork 0
mirror of https://github.com/ACINQ/eclair.git synced 2025-02-22 14:22:39 +01:00

using capsule to produce a fat-jar

This commit is contained in:
pm47 2016-02-15 19:19:08 +01:00
parent be306cd197
commit af94f5ee5e

View file

@ -13,6 +13,40 @@
<name>${project.artifactId}</name>
<build>
<plugins>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<version>2.1.13</version>
<executions>
<execution>
<goals>
<goal>revision</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.github.chrischristo</groupId>
<artifactId>capsule-maven-plugin</artifactId>
<version>1.0.3</version>
<executions>
<execution>
<goals>
<goal>build</goal>
</goals>
<configuration>
<types>fat</types>
<appClass>fr.acinq.eclair.Boot</appClass>
<customDescriptorFat>-${git.commit.id.abbrev}-capsule-fat</customDescriptorFat>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.typesafe.akka</groupId>