summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pom.xml18
1 files changed, 17 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index cd7d802..0f8662b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -174,7 +174,23 @@
</execution>
</executions>
</plugin>
-
+ <plugin>
+ <artifactId>maven-jar-plugin</artifactId>
+ <version>3.3.0</version>
+ <configuration>
+ <!-- Optional output directory. Defaults to './target' -->
+ <outputDirectory>target</outputDirectory>
+ </configuration>
+ <executions>
+ <execution>
+ <id>default-jar</id>
+ <phase>package</phase>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>