Created
July 5, 2017 15:04
-
-
Save roneigebert/8306aa830c406b0e8f4466e726ce285b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<profiles> | |
<profile> | |
<id>run-app</id> | |
<properties> | |
<config.skip.tests>true</config.skip.tests> | |
</properties> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>io.skullabs.kikaha</groupId> | |
<artifactId>kikaha-maven-plugin</artifactId> | |
<executions> | |
<execution> | |
<goals><goal>run</goal></goals> | |
<phase>install</phase> | |
<configuration> | |
<jvmArgs> | |
-Dserver.http.port=8989 | |
</jvmArgs> | |
</configuration> | |
</execution> | |
</executions> | |
</plugin> | |
</plugins> | |
</build> | |
</profile> | |
</profiles> | |
mvn clean install -P run-app |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment