diff options
| author | Paul-Christian Volkmer | 2023-04-07 22:41:55 +0200 |
|---|---|---|
| committer | Paul-Christian Volkmer | 2023-04-07 22:41:55 +0200 |
| commit | 08082f9a7d787c813ce32301412e41ad0137e253 (patch) | |
| tree | 006a6c726ed9e65f1b0728b7a1835655ac013151 /pom.xml | |
| parent | 68125cd20c40e8fc24bf38d8a94b773146bf82ff (diff) | |
Füge Maven-Jar-Plugin mit Angabe zu Output-Directory hinzu
Diffstat (limited to 'pom.xml')
| -rw-r--r-- | pom.xml | 18 |
1 files changed, 17 insertions, 1 deletions
@@ -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> |
