Skip to content

Commit

Permalink
Package with all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
TSchmiedlechner committed May 8, 2020
1 parent 85b2fa9 commit 8c36bb1
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>eu.fiskaltrust</groupId>
<artifactId>middleware-demo-java</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0</version>

<properties>
<maven.compiler.source>1.10</maven.compiler.source>
Expand Down Expand Up @@ -115,6 +115,28 @@
<target>10</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>eu.fiskaltrust.middleware.demo.grpc.Main</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>full</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 8c36bb1

Please sign in to comment.