diff options
author | Arthur Martella <arthur.martella.1@att.com> | 2018-10-30 10:35:33 -0400 |
---|---|---|
committer | Arthur Martella <arthur.martella.1@att.com> | 2018-10-30 10:35:33 -0400 |
commit | 4136ae565a21538658929008635468f21c2cfbb8 (patch) | |
tree | db6904467f095fafe1a7404b2e5869fddab8aa24 | |
parent | 6b1bf7d48b3e0c0f775a1a13c082ee52cfda4756 (diff) |
Add maven-assembly-plugin to pom.xml
This will build mdbc-0.0.1-SNAPSHOT-jar-with-dependencies.jar to
run the server.
Change-Id: I63ee5f7d04c9bccb7f53e2f058ed28a55d21a528
Issue-ID: MUSIC-158
Signed-off-by: Arthur Martella <arthur.martella.1@att.com>
-rwxr-xr-x | pom.xml | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -132,6 +132,24 @@ <target>8</target> </configuration> </plugin> + <plugin> + <artifactId>maven-assembly-plugin</artifactId> + <version>3.1.0</version> + <configuration> + <descriptorRefs> + <descriptorRef>jar-with-dependencies</descriptorRef> + </descriptorRefs> + </configuration> + <executions> + <execution> + <id>make-assembly</id> <!-- this is used for inheritance merges --> + <phase>package</phase> <!-- bind to the packaging phase --> + <goals> + <goal>single</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </build> |