Skip to content

Commit 76d5ece

Browse files
committed
Added Wildfly embedded.
1 parent a48dcdf commit 76d5ece

2 files changed

Lines changed: 10 additions & 3 deletions

File tree

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,21 @@ few instructions here: [Codenvy setup to demo applications using Docker: Java EE
2525
* You need JDK 7 or higher, Maven 3 and Wildfly 8 or Glassfish 4.1 to run the application.
2626
* Build the code using Maven with the command: `mvn clean install`.
2727

28-
### Deploy in Wildfly 8 ###
28+
### Deploy in Wildfly 10 ###
2929

3030
* Copy the file javaee7-angular.war from target directory to your Wildfly installation folder
3131
`standalone/deployments`
3232

3333
* You can also deploy the app, using Maven Wildfly Plugin with the following command: `mvn wildfly:deploy`.
3434
You need to have Wildfly running.
3535

36-
* Start Wildfly 8 and go to http://localhost:8080/javaee7-angular/ (http://localhost:8080/javaee7-angular/)
36+
* Start Wildfly and go to http://localhost:8080/javaee7-angular/ (http://localhost:8080/javaee7-angular/)
37+
38+
### Deploy in Embedded Wilffy ###
39+
40+
* Just run `mvn wildfly:run`
41+
42+
* Go to http://localhost:8080/javaee7-angular/ (http://localhost:8080/javaee7-angular/)
3743

3844
### Deploy in Glassfish 4.1 ###
3945

pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<version.plugin.war>2.4</version.plugin.war>
2424
<version.plugin.jgitflow>1.0-m3</version.plugin.jgitflow>
2525
<version.plugin.jrebel>1.1.5</version.plugin.jrebel>
26-
<version.plugin.wildfly>1.1.0.Alpha1</version.plugin.wildfly>
26+
<version.plugin.wildfly>1.1.0.Alpha8</version.plugin.wildfly>
2727
<version.plugin.glassfish>4.1.1</version.plugin.glassfish>
2828

2929
<!-- Dependencies -->
@@ -104,6 +104,7 @@
104104
<artifactId>wildfly-maven-plugin</artifactId>
105105
<version>${version.plugin.wildfly}</version>
106106
<configuration>
107+
<version>10.0.0.Final</version>
107108
<filename>javaee7-angular.war</filename>
108109
</configuration>
109110
</plugin>

0 commit comments

Comments
 (0)