Skip to content

Commit 8def6f7

Browse files
committed
Added Maven
1 parent 1f707fc commit 8def6f7

2 files changed

Lines changed: 16 additions & 2 deletions

File tree

attendees/readme.adoc

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,19 @@ docker-machine ssh lab "echo $'EXTRA_ARGS=\"--insecure-registry <INSTRUCTOR_IP>:
7474
eval "$(docker-machine env lab)"
7575
----
7676

77+
## Install Maven
78+
Download apache-maven-3.3.3-bin[.zip|tar.gz] from the instructor PC.
79+
[source, text]
80+
----
81+
curl http://<INSTRUCTOR_IP:8082>/apache-maven-3.3.3-bin[.zip|tar.gz]
82+
----
83+
84+
unzip to a folder of your choice and add the folder to your PATH environment variable.
85+
86+
[source, text]
87+
----
88+
set PATH=%PATH%;c:/apache-maven-3.3.3
89+
----
7790

7891
## Setup JBoss Developer Studio
7992

readme.adoc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,18 +184,19 @@ The administration site is centered around CRUD use cases, so instead of writing
184184
Monitoring sales requires staying in touch with the latest changes on the server side, so this part of the application will be developed in HTML5 and JavaScript using a polling solution.
185185

186186
### Build Ticket Monster
187-
First thing, you're going to do is to build the application from source. Create a folder for the source
187+
First thing, you're going to do is to build the application from source. Create a folder for the source and change to it
188188
[source, text]
189189
----
190190
mkdir /docker-java/
191+
cd /docker-java/
191192
----
192193
And checkout the sources from the instructor git repository.
193194
[source, text]
194195
----
195196
git clone -b WFLY8.1 http://root:dockeradmin@<INSTRUCTOR_IP>:10080/root/ticket-monster.git
196197
----
197198

198-
199+
From here, you're free to explore the application a bit. Open it with JBDS and
199200

200201
### Deploy Ticket Monster
201202

0 commit comments

Comments
 (0)