From a1dfa699b95c8f1f5c5bac52ce3eb68e48e83227 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Sch=C3=A4rtl?= <andreas@schaertl.me> Date: Thu, 21 May 2020 10:11:23 +0200 Subject: [PATCH] uloapi: pom.xml: add exec plugin --- experimental/uloapi/pom.xml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/experimental/uloapi/pom.xml b/experimental/uloapi/pom.xml index b44f4aa..8347f86 100644 --- a/experimental/uloapi/pom.xml +++ b/experimental/uloapi/pom.xml @@ -11,10 +11,9 @@ </properties> <build> - <!-- JAR w/ dependencies: https://stackoverflow.com/questions/574594/ --> - <plugins> <plugin> + <!-- JAR w/ dependencies: https://stackoverflow.com/questions/574594/ --> <artifactId>maven-assembly-plugin</artifactId> <configuration> <archive> @@ -36,6 +35,15 @@ </execution> </executions> </plugin> + + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>exec-maven-plugin</artifactId> + <version>1.2.1</version> + <configuration> + <mainClass>info.mathhub.uloapi.Main</mainClass> + </configuration> + </plugin> </plugins> </build> -- GitLab