Skip to content

Commit

Permalink
Setup wildfly auto deploy. Bump pom
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrei-Straut committed Aug 17, 2017
1 parent 523d825 commit 453cc06
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,17 @@

<groupId>com.andreistraut</groupId>
<artifactId>gaps</artifactId>
<version>1.1</version>
<version>1.2</version>
<packaging>war</packaging>

<name>GAPS</name>
<description>Genetic Algorithm Path Search</description>
<url>https://www.andreistraut.info/gaps</url>

<properties>
<deploymentName>gaps</deploymentName>
<wildfly-maven-plugin-version>1.1.0.Final</wildfly-maven-plugin-version>

<endorsed.dir>${project.build.directory}/endorsed</endorsed.dir>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<netbeans.hint.deploy.server>gfv3ee6</netbeans.hint.deploy.server>
Expand Down Expand Up @@ -184,6 +187,19 @@
<configuration>
</configuration>
</plugin>
<plugin>
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
<version>${wildfly-maven-plugin-version}</version>
<configuration>
<id>andrei-straut-wildfly</id>
<name>${deploymentName}.war</name>
<runtimeName>${deploymentName}.war</runtimeName>
<force>true</force>
<port>9993</port>
<protocol>https-remoting</protocol>
</configuration>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 453cc06

Please sign in to comment.