Skip to content

Instantly share code, notes, and snippets.

@roneigebert
Created July 5, 2017 15:04
Show Gist options
  • Save roneigebert/8306aa830c406b0e8f4466e726ce285b to your computer and use it in GitHub Desktop.
Save roneigebert/8306aa830c406b0e8f4466e726ce285b to your computer and use it in GitHub Desktop.
<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