diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2023-12-05 21:48:46 +0100 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2023-12-05 21:48:46 +0100 |
commit | 40bd44adeab5311dd854402396a322327bec8ebe (patch) | |
tree | a4b7fe89bb94bee57a626ad0f08bf5bca5f9886a /jgvariant-tool | |
parent | 36019c82cbecbea4560a12e93853879bdbef4e53 (diff) |
jgvariant-tool: Add Maven exec plugin for direct execution.
Change-Id: I683100e55a9ba06028bc0d92af4087c5749ad4ad
Diffstat (limited to 'jgvariant-tool')
-rw-r--r-- | jgvariant-tool/pom.xml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/jgvariant-tool/pom.xml b/jgvariant-tool/pom.xml index ee2b8a8..6e01ade 100644 --- a/jgvariant-tool/pom.xml +++ b/jgvariant-tool/pom.xml @@ -234,6 +234,30 @@ SPDX-License-Identifier: GPL-3.0-or-later </plugins> </build> </profile> + + <profile> + <id>exec</id> + <build> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>exec-maven-plugin</artifactId> + <executions> + <execution> + <phase>verify</phase> + <goals> + <goal>java</goal> + </goals> + </execution> + </executions> + <configuration> + <mainClass>eu.mulk.jgvariant.tool.Main</mainClass> + <arguments/> + </configuration> + </plugin> + </plugins> + </build> + </profile> </profiles> </project> |