Skip to content

Commit

Permalink
Explicitly mention and support WildFly as target container
Browse files Browse the repository at this point in the history
  • Loading branch information
asoldano committed Mar 14, 2016
1 parent cd53180 commit 0e8e720
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 13 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,31 +4,31 @@ JBoss Wise GUI
System requirements
-------------------

All you need to build this project is Java 6.0 (Java SDK 1.6) or better, Maven 3.0 or better.
All you need to build this project is Java 8.0 or better, Maven 3.2 or better.

The application this project produces is designed to be run on JBoss AS 7.1 or greater.
The application this project produces is designed to be run on WildFly 8 or greater.

Build and Deploy the application
--------------------------------

1. Make sure you have started the JBoss Server / WildFly server.
1. Make sure you have started the WildFly server.
2. Type this command to build and deploy the archive:

mvn clean package jboss-as:deploy (or mvn clean package wildfly:deploy)
mvn clean package wildfly:deploy

3. This will deploy `target/wise-gui.war` to the running instance of the server.


Access the application
---------------------
----------------------

The application will be running at the following URL: <http://localhost:8080/wise-gui/>.


Undeploy the Archive
--------------------

1. Make sure you have started the JBoss/ WildFly Server as described above.
1. Make sure you have started the WildFly server as described above.
2. When you are finished testing, type this command to undeploy the archive:

mvn jboss-as:undeploy (or mvn wildfly:undeploy)
mvn wildfly:undeploy
6 changes: 0 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<!-- JBoss dependency versions -->
<version.org.jboss.as.plugins.maven.plugin>7.3.Final</version.org.jboss.as.plugins.maven.plugin>
<version.org.wildfly.plugins.maven.plugin>1.0.2.Final</version.org.wildfly.plugins.maven.plugin>
<version.org.jboss.spec.jboss.javaee.6.0>3.0.0.Final</version.org.jboss.spec.jboss.javaee.6.0>

Expand Down Expand Up @@ -204,11 +203,6 @@
<!-- Set the name of the war, used as the context root when the app is deployed -->
<finalName>wise-gui</finalName>
<plugins>
<plugin>
<groupId>org.jboss.as.plugins</groupId>
<artifactId>jboss-as-maven-plugin</artifactId>
<version>${version.org.jboss.as.plugins.maven.plugin}</version>
</plugin>
<plugin>
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
Expand Down

0 comments on commit 0e8e720

Please sign in to comment.