Commit 4aa77b3ef583a535a8b74f4fb40e6adf57cdc941
1 parent
bea8da28
Exists in
master
pom.xml: Add maven-assembly-plugin in order to add dependencies to the compiled jar.
Showing
1 changed file
with
13 additions
and
0 deletions
Show diff stats
pom.xml
@@ -86,6 +86,19 @@ | @@ -86,6 +86,19 @@ | ||
86 | 86 | ||
87 | <plugins> | 87 | <plugins> |
88 | <plugin> | 88 | <plugin> |
89 | + <artifactId>maven-assembly-plugin</artifactId> | ||
90 | + <configuration> | ||
91 | + <archive> | ||
92 | + <manifest> | ||
93 | + <mainClass>eu.omp.irap.vespa.epntapclient.EpnTapMainApp</mainClass> | ||
94 | + </manifest> | ||
95 | + </archive> | ||
96 | + <descriptorRefs> | ||
97 | + <descriptorRef>jar-with-dependencies</descriptorRef> | ||
98 | + </descriptorRefs> | ||
99 | + </configuration> | ||
100 | + </plugin> | ||
101 | + <plugin> | ||
89 | <groupId>org.apache.maven.plugins</groupId> | 102 | <groupId>org.apache.maven.plugins</groupId> |
90 | <artifactId>maven-site-plugin</artifactId> | 103 | <artifactId>maven-site-plugin</artifactId> |
91 | <version>3.3</version> | 104 | <version>3.3</version> |