wise SVN: r601 - webgui/trunk.
by wise-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2015-02-12 12:40:04 -0500 (Thu, 12 Feb 2015)
New Revision: 601
Modified:
webgui/trunk/README.md
Log:
[WISE-212] Fix readme
Modified: webgui/trunk/README.md
===================================================================
--- webgui/trunk/README.md 2015-02-12 17:37:46 UTC (rev 600)
+++ webgui/trunk/README.md 2015-02-12 17:40:04 UTC (rev 601)
@@ -11,10 +11,10 @@
Build and Deploy the application
--------------------------------
-1. Make sure you have started the JBoss Server.
+1. Make sure you have started the JBoss Server / WildFly server.
2. Type this command to build and deploy the archive:
- mvn clean package jboss-as:deploy
+ mvn clean package jboss-as:deploy (or mvn clean package wildfly:deploy)
3. This will deploy `target/wise-gui.war` to the running instance of the server.
@@ -28,7 +28,7 @@
Undeploy the Archive
--------------------
-1. Make sure you have started the JBoss Server as described above.
+1. Make sure you have started the JBoss/ WildFly Server as described above.
2. When you are finished testing, type this command to undeploy the archive:
- mvn jboss-as:undeploy
+ mvn jboss-as:undeploy (or mvn wildfly:undeploy)
9 years, 10 months
wise SVN: r600 - webgui/trunk.
by wise-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2015-02-12 12:37:46 -0500 (Thu, 12 Feb 2015)
New Revision: 600
Modified:
webgui/trunk/pom.xml
Log:
[WISE-212] Move to RF 4.5.2 to allow running on WFLY 9
Modified: webgui/trunk/pom.xml
===================================================================
--- webgui/trunk/pom.xml 2014-02-20 18:30:34 UTC (rev 599)
+++ webgui/trunk/pom.xml 2015-02-12 17:37:46 UTC (rev 600)
@@ -49,9 +49,10 @@
<!-- 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>
- <version.org.richfaces>4.3.2.Final</version.org.richfaces>
+ <version.org.richfaces>4.5.2.Final</version.org.richfaces>
<version.wise.core>2.1.0-SNAPSHOT</version.wise.core>
<!-- other plugin versions -->
@@ -81,14 +82,10 @@
<type>pom</type>
<scope>import</scope>
</dependency>
- <!-- Similarly to the JBoss Java EE 6 BOM above, the RichFaces BOM specifies the
- versions of artifacts required for using RichFaces in your project. -->
<dependency>
<groupId>org.richfaces</groupId>
- <artifactId>richfaces-bom</artifactId>
+ <artifactId>richfaces</artifactId>
<version>${version.org.richfaces}</version>
- <type>pom</type>
- <scope>import</scope>
</dependency>
<dependency>
@@ -183,16 +180,10 @@
<scope>provided</scope>
</dependency>
- <!-- Import the RichFaces core library -->
<dependency>
- <groupId>org.richfaces.core</groupId>
- <artifactId>richfaces-core-impl</artifactId>
+ <groupId>org.richfaces</groupId>
+ <artifactId>richfaces</artifactId>
</dependency>
- <!-- Import the RichFaces components -->
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>richfaces-components-ui</artifactId>
- </dependency>
<!-- TODO replace with org.jboss.wise:wise-core -->
<dependency>
@@ -218,6 +209,11 @@
<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>
+ <version>${version.org.wildfly.plugins.maven.plugin}</version>
+ </plugin>
<!-- Compiler plugin enforces Java 1.6 compatibility and activates annotation processors -->
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
9 years, 10 months