From bb5002a7717b2a42c06ded37e77de6a28ffa56ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Annika=20Ge=C3=9Fmann?= <annika.gessmann@student.reutlingen-university.de> Date: Fri, 17 Jul 2020 12:23:35 +0200 Subject: [PATCH] =?UTF-8?q?pom.xml=20f=C3=BCr=20mvn-jar-plugin?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- groupManagement/pom.xml | 29 +++++++++++++++++++++++------ 1 file changed, 23 insertions(+), 6 deletions(-) diff --git a/groupManagement/pom.xml b/groupManagement/pom.xml index f7c37c4..e05dcbe 100644 --- a/groupManagement/pom.xml +++ b/groupManagement/pom.xml @@ -105,12 +105,29 @@ </dependencyManagement> <build> - <plugins> - <plugin> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-maven-plugin</artifactId> - </plugin> - </plugins> + + <plugins> + <!-- any other plugins --> + <plugin> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-maven-plugin</artifactId> + <artifactId></artifactId> + <executions> + <execution> + <phase>package</phase> + <goals> + <goal>single</goal> + </goals> + </execution> + </executions> + <configuration> + <descriptorRefs> + <descriptorRef>jar-with-dependencies</descriptorRef> + </descriptorRefs> + </configuration> + </plugin> + </plugins> + </build> </project> -- GitLab