!!! OpenShift
[{TableOfContents }]
%%warning a second attempt at [OpenShift3] %%
\\
After a failed attempt to [run a local cloudfoundry instance with bosh-lite|https://github.com/cloudfoundry/bosh-lite] , because my laptop only has 4 GB memory, I started to check out running OpenShift on my own box.\\
This can be done by running OpenShift origin as a VirtualBox guest.
I also want to try and get the WebSphere Liberty Profile cartridge working.
!! Resources
* [OpenShift docu index|http://www.openshift.org/documentation/#documentation]
* [OpenShift Origin User’s Guide|http://www.openshift.org/documentation/oo_user_guide.html]
* [OpenShift Administration Guide | http://www.openshift.org/documentation/oo_administration_guide.html]
* [OpenShift Origin Virtual Machine Deployment Guide|http://www.openshift.org/documentation/oo_deployment_guide_vm.html]
* [WebSphere Liberty Profile cartridge|https://github.com/WASdev/cloud.openshift.cartridge.wlp]
* [OpenShift Console|https://10.0.0.171/console]
!! Install VirtualBox and setup the openshift VM.
First install VirtualBox and then install the prebuilt openshift origin as described in the [OpenShift Origin Virtual Machine Deployment Guide|http://www.openshift.org/documentation/oo_deployment_guide_vm.html]. Make sure to set the first network interface to bridging (instead of adding a second interface as described in the doc).\\
The web console is available at [https://10.0.0.171/console], there you can upload your public SSH key, which you need when git-cloning your app.
!! Set up client tools
The next thing is installing the client tool , rhc. This can be done with {{gem install rhc}}. You do have to setup ruby: {{sudo apt-get install ruby ruby-gems}}.
Run {{rhc setup}}, this will create ~/.openshift/express.conf
For the OpenShift origin install a user demo with password changeme was created, so will use that one :
{{{
Connection to aap-origin.openshift.local closed.
metskem@athena:~/cloud/openshift/apps/aap$ rhc setup
OpenShift Client Tools (RHC) Setup Wizard
This wizard will help you upload your SSH keys, set your application namespace, and check that other programs like Git are properly installed.
If you have your own OpenShift server, you can specify it now. Just hit enter to use the server for OpenShift Online: openshift.redhat.com.
Enter the server hostname: |openshift.redhat.com| 10.0.0.171
You can add more servers later using 'rhc server'.
The server's certificate is self-signed, which means that a secure connection can't be established to '10.0.0.171'.
You may bypass this check, but any data you send to the server could be intercepted by others.
Connect without checking the certificate? (yes|no): yes
Login to 10.0.0.171: demo
Password: ********
OpenShift can create and store a token on disk which allows to you to access the server without using your password. The key is stored in your home directory and should be kept secret. You can
delete the key at any time by running 'rhc logout'.
Generate a token now? (yes|no) yes
Generating an authorization token for this client ... lasts about 1 day
Saving configuration to /home/metskem/.openshift/express.conf ... done
Checking for git ... found git version 1.9.1
Checking common problems .. done
Checking for a domain ... origin
Checking for applications ... found 1
aap http://aap-origin.openshift.local/
You are using 1 of 100 total gears
The following gear sizes are available to you: small
Your client tools are now configured.
metskem@athena:~/cloud/openshift/apps/aap$
}}}
You can also upload your public SSH key via the webconsole, this SSH key is necessary when you git-checkout your application.
!! Install the Liberty cartridge
The WebSphere Liberty Cartridge, available at [https://github.com/WASdev/cloud.openshift.cartridge.wlp] can be installed via the web-console by entering the [URL to the manifest file|https://raw.githubusercontent.com/WASdev/cloud.openshift.cartridge.wlp/master/metadata/manifest.yml].
This install will fail because the {{Source-Url}} element is required. I forked the github project and change the [manifest file to include the Source-Url|https://raw.githubusercontent.com/metskem/cloud.openshift.cartridge.wlp/master/metadata/manifest.yml]
During this install you also have to create an application, so I created an application called "aap", which is then accessible at [http://aap-origin.openshift.local/] , but this gives a 503 error. No idea why.
So further debugging, you can login to the node with the applications generated account and ssh keys :
{{{
metskem@athena:~/cloud/openshift/apps/aap$ ssh 54908968653e8a8670000013@aap-origin.openshift.local
*********************************************************************
You are accessing a service that is for use only by authorized users.
If you do not have authorization, discontinue use at once.
Any use of the services is subject to the applicable terms of the
agreement which can be found at:
https://www.openshift.com/legal
*********************************************************************
Welcome to OpenShift shell
This shell will assist you in managing OpenShift applications.
!!! IMPORTANT !!! IMPORTANT !!! IMPORTANT !!!
Shell access is quite powerful and it is possible for you to
accidentally damage your application. Proceed with care!
If worse comes to worst, destroy your application with "rhc app delete"
and recreate it
!!! IMPORTANT !!! IMPORTANT !!! IMPORTANT !!!
Type "help" for more info.
[aap-origin.openshift.local 54908968653e8a8670000013]\>
}}}
{{{
[aap-origin.openshift.local 54908968653e8a8670000013]\> help
Help menu: The following commands are available to help control your openshift
application and environment.
gear control your application (start, stop, restart, etc)
or deps with --cart (gear start --cart mysql-5.1)
tail_all tail all log files
export list available environment variables
rm remove files / directories
ls list files / directories
ps list running applications
kill kill running applications
mysql interactive MySQL shell
mongo interactive MongoDB shell
psql interactive PostgreSQL shell
quota list disk usage
Deprecated:
ctl_app control your application (start, stop, restart, etc)
ctl_all control application and deps like mysql in one command
}}}
{{{
[aap-origin.openshift.local 54908968653e8a8670000013]\> gear
NAME:
["OpenShift Gear Control"]
DESCRIPTION:
["An assortment of gear utilities"]
COMMANDS:
activate Activate a build
archive-deployment Archive the current deployment
binary-deploy Deploy a binary artifact
build Run the build steps
create-deployment-dir Create a deployment directory. Should only be used by CI builders
deploy Run the deploy steps
deployments List the gear's deployments
distribute Distribute a build
help Display global or [command] help documentation.
postreceive Run the git postreceive steps
prepare Prepare a binary deployment artifact for distribution and activation
prereceive Run the git prereceive steps
reload Reload a cart
remotedeploy Run the remotedeploy steps
restart Restart a cart
restore Restore an application
rotate-in Enables this gear to receive traffic from the proxy
rotate-out Disables this gear from receiving traffic from the proxy
snapshot Snapshot an application
start Start the gear/cart
status Get the status for a cart
stop Stop the gear/cart
GLOBAL OPTIONS:
--trace
Enable stack traces when reporting errors
-h, --help
Display help documentation
-v, --version
Display version information
-t, --trace
Display backtrace when an error occurs
[aap-origin.openshift.local 54908968653e8a8670000013]\>
}}}
And then we find the cause :
{{{
[aap-origin.openshift.local 54908968653e8a8670000013]\> gear restart
Cart to restart?
1. liberty-8.5.5
? 1
app is not running
missing Liberty license, set IBM_LIBERTY_LICENSE env var
[aap-origin.openshift.local 54908968653e8a8670000013]\>
}}}
The Liberty Profile License code is {{ L-EWOD-99YA4J }} which can be found [here|http://www14.software.ibm.com/cgi-bin/weblap/lap.pl?la_formnum=&li_formnum=L-EWOD-99YA4J&title=IBM%C2%AE+SDK%2C+Java+Technology+Edition%2C+Version+7+Release+1&l=en]
! Setting environment variables
To use the Liberty Profile, you have to set an envvar, this can be done with the rhc only:
{{{
metskem@athena:~/cloud/openshift/apps/aap$ rhc set-env IBM_LIBERTY_LICENSE=L-EWOD-99YA4J --app aap
Setting environment variable(s) ... done
}}}
And you can show the current one with :
{{{
metskem@athena:~/cloud/openshift/apps/aap$ rhc env-list aap
IBM_LIBERTY_LICENSE=L-EWOD-99YA4J
}}}
!! Miscelleaneous
! start a cartridge
{{{
metskem@athena:~/cloud/openshift/apps/aap$ rhc cartridge-start 'ibm-liberty-8.5.5' --app aap
Starting ibm-liberty-8.5.5 ...
Failed to execute: 'control start' for /var/lib/openshift/54908968653e8a8670000013/liberty
}}}
Starting with webconsole:
{{{
app is not running generated VCAP_APPLICATION={"host":"127.3.250.1"} generated VCAP_SERVICES={} Liberty for Java(TM) (WAR, liberty-8.5.5_4, ibmjdk-1.7.1_1) -----> Liberty Buildpack Version: 1a2d464 | https://github.com/cloudfoundry/ibm-websphere-liberty-buildpack.git#1a2d464
You have not accepted the IBM JVM License.
Visit the following uri: https://www14.software.ibm.com/cgi-bin/weblap/lap.pl?la_formnum=&li_formnum=L-EWOD-99YA4J&title=IBM%C2%AE+SDK%2C+Java+Technology+Edition%2C+Version+7+Release+1&l=en Extract the license number (D/N:) and place it inside your manifest file as a ENV property e.g. ENV: IBM_JVM_LICENSE: {License Number}. E, [2014-12-17T04:35:14.623818 #2375]
ERROR -- /var/lib/openshift/54908968653e8a8670000013/liberty/ibm-websphere-liberty-buildpack/lib/liberty_buildpack/buildpack.rb:49:in `rescue in drive_buildpack_with_logger': Compile failed with exception RuntimeError
Failed to execute: 'control restart' for /var/lib/openshift/54908968653e8a8670000013/liberty
}}}
! add other cartridges
Adding MySQL as an extra cartridge:
{{{
MySQL 5.5 database added. Please make note of these credentials:
Root User: adminBly53La
Root Password: 3R-GznLXkfSR
Database Name: aap
Connection URL: mysql://$OPENSHIFT_MYSQL_DB_HOST:$OPENSHIFT_MYSQL_DB_PORT/
You can manage your new MySQL database by also embedding phpmyadmin.
The phpmyadmin username and password will be the same as the MySQL credentials above.
}}}
{{{
Jenkins created successfully. Please make note of these credentials:
User: admin
Password: MgRSUwaXVm4e
Note: You can change your password at: https://jenkins-origin.openshift.local/me/configure
}}}
! destroy/delete an app
{{{
metskem@athena:~/cloud/openshift/apps$ rhc app-delete aap
This is a non-reversible action! Your application code and data will be permanently deleted if you continue!
Are you sure you want to delete the application 'aap'? (yes|no): yes
Deleting application 'aap' ... deleted
}}}
! install app with ibm-liberty-8.5.5 cartridge :
{{{
metskem@athena:~/cloud/openshift/apps$ rhc create-app aap https://raw.githubusercontent.com/metskem/cloud.openshift.cartridge.wlp/master/metadata/manifest.yml -e IBM_LIBERTY_LICENSE=L-EWOD-99YA4J
The cartridge 'https://raw.githubusercontent.com/metskem/cloud.openshift.cartridge.wlp/master/metadata/manifest.yml' will be downloaded and installed
Application Options
-------------------
Domain: origin
Cartridges: https://raw.githubusercontent.com/metskem/cloud.openshift.cartridge.wlp/master/metadata/manifest.yml
Gear Size: default
Scaling: no
Environment Variables: IBM_LIBERTY_LICENSE=L-EWOD-99YA4J
Creating application 'aap' ...
generated VCAP_APPLICATION={"host":"127.7.136.129"}
generated VCAP_SERVICES={}
Liberty for Java(TM) (WAR, liberty-8.5.5_4, ibmjdk-1.7.1_1)
-----> Liberty Buildpack Version: 1a2d464 | https://github.com/cloudfoundry/ibm-websphere-liberty-buildpack.git#1a2d464 You have not accepted the IBM JVM License. Visit the following uri:
https://www14.software.ibm.com/cgi-bin/weblap/lap.pl?la_formnum=&li_formnum=L-EWOD-99YA4J&title=IBM%C2%AE+SDK%2C+Java+Technology+Edition%2C+Version+7+Release+1&l=en Extract the license number (D/N:)
and place it inside your manifest file as a ENV property e.g. ENV: IBM_JVM_LICENSE: {License Number}. E, [2014-12-17T05:00:45.215174 #8644] ERROR --
/var/lib/openshift/54915422653e8a867000003e/liberty/ibm-websphere-liberty-buildpack/lib/liberty_buildpack/buildpack.rb:49:in `rescue in drive_buildpack_with_logger': Compile failed with exception
RuntimeError
downloading buildpack
Failed to execute: 'control start' for /var/lib/openshift/54915422653e8a867000003e/liberty
}}}
So, I also have to accept a JVM license apparently....wait...
!!! Register with OpenShift Online
After trying for a couple of hours, I could not get the Liberty cartridge working op OpenShift origin, the Liberty servers just doesn't seem to start, no logs whatsoever, so let's give a try to the [Online version at RedHat|https://www.openshift.com].
The webconsole looks very similar.
Trying to install the WebSphere Liberty cartridge here also fails beause of the missing Source-Url element, so trying [my own corrected fork of it|https://raw.githubusercontent.com/metskem/cloud.openshift.cartridge.wlp/master/metadata/manifest.yml]
Adding SSH public key again, and git-cloning the demo app to my local machine.\\
The RedHat server looks more responsive than my origin VM.
The webconsole tells me that the app is available at [http://aap-computerhok.rhcloud.com/], but that gives me a 404. Hmmmm, same thing here ?
!! Try JBOSSEWS
After creating a default app with jbossews, it works, available at [http://jbossews-computerhok.rhcloud.com/]
%%small
{{{
metskem@athena:~/cloud/openshift/apps/jbossews/src/main/webapp$ git commit -m "delete one link as a test"
[master 01ff233] delete one link as a test
1 file changed, 1 deletion(-)
metskem@athena:~/cloud/openshift/apps/jbossews/src/main/webapp$ git push
warning: push.default is unset; its implicit value is changing in
Git 2.0 from 'matching' to 'simple'. To squelch this message
and maintain the current behavior after the default changes, use:
git config --global push.default matching
To squelch this message and adopt the new behavior now, use:
git config --global push.default simple
When push.default is set to 'matching', git will push local branches
to the remote branches that already exist with the same name.
In Git 2.0, Git will default to the more conservative 'simple'
behavior, which only pushes the current branch to the corresponding
remote branch that 'git pull' uses to update the current branch.
See 'git help config' and search for 'push.default' for further information.
(the 'simple' mode was introduced in Git 1.7.11. Use the similar mode
'current' instead of 'simple' if you sometimes use older versions of Git)
Counting objects: 11, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (5/5), done.
Writing objects: 100% (6/6), 460 bytes | 0 bytes/s, done.
Total 6 (delta 4), reused 0 (delta 0)
remote: Stopping jbossews cartridge
remote: Sending SIGTERM to jboss:30379 ...
remote: Building git ref 'master', commit 01ff233
remote: Using Maven mirror /var/lib/openshift/5492ece7e0b8cd262a00009a/app-root/runtime/repo//.openshift/config/settings.rhcloud.xml
remote: Apache Maven 3.0.4 (r1232336; 2012-12-18 14:36:37-0500)
remote: Maven home: /usr/share/java/apache-maven-3.0.4
remote: Java version: 1.7.0_71, vendor: Oracle Corporation
remote: Java home: /usr/lib/jvm/java-1.7.0-openjdk-1.7.0.71/jre
remote: Default locale: en_US, platform encoding: ANSI_X3.4-1968
remote: OS name: "linux", version: "2.6.32-504.3.3.el6.x86_64", arch: "i386", family: "unix"
remote: Found pom.xml... attempting to build with 'mvn --global-settings /var/lib/openshift/5492ece7e0b8cd262a00009a/app-root/runtime/repo//.openshift/config/settings.rhcloud.xml clean package -Popenshift -DskipTests'
remote: [INFO] Scanning for projects...
remote: [INFO]
remote: [INFO] ------------------------------------------------------------------------
remote: [INFO] Building jbossews 1.0
remote: [INFO] ------------------------------------------------------------------------
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/plugins/maven-clean-plugin/2.4.1/maven-clean-plugin-2.4.1.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/plugins/maven-clean-plugin/2.4.1/maven-clean-plugin-2.4.1.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/plugins/maven-clean-plugin/2.4.1/maven-clean-plugin-2.4.1.pom (5 KB at 30.5 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/plugins/maven-plugins/18/maven-plugins-18.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/plugins/maven-plugins/18/maven-plugins-18.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/plugins/maven-plugins/18/maven-plugins-18.pom (13 KB at 141.1 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-parent/16/maven-parent-16.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-parent/16/maven-parent-16.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-parent/16/maven-parent-16.pom (23 KB at 204.7 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/apache/7/apache-7.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/apache/7/apache-7.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/apache/7/apache-7.pom (15 KB at 111.0 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/plugins/maven-clean-plugin/2.4.1/maven-clean-plugin-2.4.1.jar
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/plugins/maven-clean-plugin/2.4.1/maven-clean-plugin-2.4.1.jar
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/plugins/maven-clean-plugin/2.4.1/maven-clean-plugin-2.4.1.jar (23 KB at 522.7 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.pom (7 KB at 133.6 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/plugins/maven-plugins/19/maven-plugins-19.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/plugins/maven-plugins/19/maven-plugins-19.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/plugins/maven-plugins/19/maven-plugins-19.pom (11 KB at 165.4 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-parent/19/maven-parent-19.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-parent/19/maven-parent-19.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-parent/19/maven-parent-19.pom (25 KB at 348.9 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/apache/9/apache-9.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/apache/9/apache-9.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/apache/9/apache-9.pom (15 KB at 308.4 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.jar
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.jar
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.jar (26 KB at 623.2 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/plugins/maven-compiler-plugin/2.3.2/maven-compiler-plugin-2.3.2.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/plugins/maven-compiler-plugin/2.3.2/maven-compiler-plugin-2.3.2.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/plugins/maven-compiler-plugin/2.3.2/maven-compiler-plugin-2.3.2.pom (8 KB at 135.0 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/plugins/maven-compiler-plugin/2.3.2/maven-compiler-plugin-2.3.2.jar
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/plugins/maven-compiler-plugin/2.3.2/maven-compiler-plugin-2.3.2.jar
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/plugins/maven-compiler-plugin/2.3.2/maven-compiler-plugin-2.3.2.jar (29 KB at 770.1 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/plugins/maven-surefire-plugin/2.10/maven-surefire-plugin-2.10.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/plugins/maven-surefire-plugin/2.10/maven-surefire-plugin-2.10.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/plugins/maven-surefire-plugin/2.10/maven-surefire-plugin-2.10.pom (11 KB at 178.5 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/surefire/surefire/2.10/surefire-2.10.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/surefire/surefire/2.10/surefire-2.10.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/surefire/surefire/2.10/surefire-2.10.pom (12 KB at 314.7 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-parent/20/maven-parent-20.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-parent/20/maven-parent-20.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-parent/20/maven-parent-20.pom (25 KB at 273.1 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/plugins/maven-surefire-plugin/2.10/maven-surefire-plugin-2.10.jar
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/plugins/maven-surefire-plugin/2.10/maven-surefire-plugin-2.10.jar
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/plugins/maven-surefire-plugin/2.10/maven-surefire-plugin-2.10.jar (30 KB at 214.5 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/plugins/maven-war-plugin/2.1.1/maven-war-plugin-2.1.1.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/plugins/maven-war-plugin/2.1.1/maven-war-plugin-2.1.1.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/plugins/maven-war-plugin/2.1.1/maven-war-plugin-2.1.1.pom (7 KB at 51.6 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/plugins/maven-war-plugin/2.1.1/maven-war-plugin-2.1.1.jar
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/plugins/maven-war-plugin/2.1.1/maven-war-plugin-2.1.1.jar
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/plugins/maven-war-plugin/2.1.1/maven-war-plugin-2.1.1.jar (76 KB at 577.3 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/postgresql/postgresql/9.2-1003-jdbc4/postgresql-9.2-1003-jdbc4.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/postgresql/postgresql/9.2-1003-jdbc4/postgresql-9.2-1003-jdbc4.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/postgresql/postgresql/9.2-1003-jdbc4/postgresql-9.2-1003-jdbc4.pom (2 KB at 12.0 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/mysql/mysql-connector-java/5.1.25/mysql-connector-java-5.1.25.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/mysql/mysql-connector-java/5.1.25/mysql-connector-java-5.1.25.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/mysql/mysql-connector-java/5.1.25/mysql-connector-java-5.1.25.pom (2 KB at 11.5 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/javax/servlet/javax.servlet-api/3.0.1/javax.servlet-api-3.0.1.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/javax/servlet/javax.servlet-api/3.0.1/javax.servlet-api-3.0.1.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/javax/servlet/javax.servlet-api/3.0.1/javax.servlet-api-3.0.1.pom (13 KB at 158.2 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/net/java/jvnet-parent/1/jvnet-parent-1.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/net/java/jvnet-parent/1/jvnet-parent-1.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/net/java/jvnet-parent/1/jvnet-parent-1.pom (5 KB at 40.7 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/postgresql/postgresql/9.2-1003-jdbc4/postgresql-9.2-1003-jdbc4.jar
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/mysql/mysql-connector-java/5.1.25/mysql-connector-java-5.1.25.jar
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/javax/servlet/javax.servlet-api/3.0.1/javax.servlet-api-3.0.1.jar
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/postgresql/postgresql/9.2-1003-jdbc4/postgresql-9.2-1003-jdbc4.jar
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/mysql/mysql-connector-java/5.1.25/mysql-connector-java-5.1.25.jar
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/javax/servlet/javax.servlet-api/3.0.1/javax.servlet-api-3.0.1.jar
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/javax/servlet/javax.servlet-api/3.0.1/javax.servlet-api-3.0.1.jar (84 KB at 672.2 KB/sec)
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/mysql/mysql-connector-java/5.1.25/mysql-connector-java-5.1.25.jar (829 KB at 3300.9 KB/sec)
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/postgresql/postgresql/9.2-1003-jdbc4/postgresql-9.2-1003-jdbc4.jar (581 KB at 2199.7 KB/sec)
remote: [INFO]
remote: [INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ jbossews ---
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom (2 KB at 23.7 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven/2.0.6/maven-2.0.6.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven/2.0.6/maven-2.0.6.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven/2.0.6/maven-2.0.6.pom (9 KB at 184.1 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-parent/5/maven-parent-5.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-parent/5/maven-parent-5.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-parent/5/maven-parent-5.pom (15 KB at 291.8 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/apache/3/apache-3.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/apache/3/apache-3.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/apache/3/apache-3.pom (4 KB at 64.4 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom (4 KB at 50.9 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom (17 KB at 292.3 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar (218 KB at 1663.7 KB/sec)
remote: [INFO]
remote: [INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ jbossews ---
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom (3 KB at 25.5 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom (2 KB at 50.1 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom (3 KB at 93.0 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom (2 KB at 60.1 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom (9 KB at 257.6 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom (4 KB at 116.9 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom (492 B at 11.4 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom (6 KB at 133.4 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/junit/junit/3.8.1/junit-3.8.1.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/junit/junit/3.8.1/junit-3.8.1.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/junit/junit/3.8.1/junit-3.8.1.pom (998 B at 30.5 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom (7 KB at 196.9 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom (4 KB at 63.6 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom (2 KB at 56.9 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom (3 KB at 71.1 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom (2 KB at 40.1 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom (2 KB at 32.8 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom (2 KB at 31.7 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom (7 KB at 75.3 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom (2 KB at 33.3 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom (2 KB at 20.4 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom (2 KB at 30.5 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom (424 B at 6.0 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom (4 KB at 50.3 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom (2 KB at 22.8 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/commons-cli/commons-cli/1.0/commons-cli-1.0.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/commons-cli/commons-cli/1.0/commons-cli-1.0.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/commons-cli/commons-cli/1.0/commons-cli-1.0.pom (3 KB at 40.3 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom (2 KB at 25.6 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom (7 KB at 76.9 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom (2 KB at 11.2 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/classworlds/classworlds/1.1/classworlds-1.1.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/classworlds/classworlds/1.1/classworlds-1.1.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/classworlds/classworlds/1.1/classworlds-1.1.pom (4 KB at 62.4 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/shared/maven-filtering/1.0/maven-filtering-1.0.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/shared/maven-filtering/1.0/maven-filtering-1.0.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/shared/maven-filtering/1.0/maven-filtering-1.0.pom (6 KB at 106.2 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/shared/maven-shared-components/16/maven-shared-components-16.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/shared/maven-shared-components/16/maven-shared-components-16.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/shared/maven-shared-components/16/maven-shared-components-16.pom (9 KB at 171.9 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom (7 KB at 167.2 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom (12 KB at 241.2 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom (889 B at 18.9 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom (6 KB at 75.1 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom (3 KB at 39.4 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/sonatype/spice/spice-parent/10/spice-parent-10.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/sonatype/spice/spice-parent/10/spice-parent-10.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/sonatype/spice/spice-parent/10/spice-parent-10.pom (3 KB at 39.8 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/sonatype/forge/forge-parent/3/forge-parent-3.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/sonatype/forge/forge-parent/3/forge-parent-3.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/sonatype/forge/forge-parent/3/forge-parent-3.pom (5 KB at 75.6 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom (8 KB at 112.5 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom (890 B at 10.5 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom (3 KB at 28.7 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom (16 KB at 377.5 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/commons-cli/commons-cli/1.0/commons-cli-1.0.jar
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/junit/junit/3.8.1/junit-3.8.1.jar
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/shared/maven-filtering/1.0/maven-filtering-1.0.jar
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/junit/junit/3.8.1/junit-3.8.1.jar
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/commons-cli/commons-cli/1.0/commons-cli-1.0.jar
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar (10 KB at 107.9 KB/sec)
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/shared/maven-filtering/1.0/maven-filtering-1.0.jar
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar (6 KB at 57.4 KB/sec)
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar (14 KB at 100.7 KB/sec)
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/commons-cli/commons-cli/1.0/commons-cli-1.0.jar (30 KB at 221.1 KB/sec)
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/junit/junit/3.8.1/junit-3.8.1.jar (119 KB at 542.4 KB/sec)
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar (7 KB at 48.5 KB/sec)
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/shared/maven-filtering/1.0/maven-filtering-1.0.jar (42 KB at 262.1 KB/sec)
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar (60 KB at 372.7 KB/sec)
remote: [debug] execute contextualize
remote: [INFO] Using 'UTF-8' encoding to copy filtered resources.
remote: [INFO] Copying 1 resource
remote: [INFO]
remote: [INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ jbossews ---
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.pom (4 KB at 57.5 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-compiler-api/1.8.1/plexus-compiler-api-1.8.1.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-compiler-api/1.8.1/plexus-compiler-api-1.8.1.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-compiler-api/1.8.1/plexus-compiler-api-1.8.1.pom (805 B at 9.6 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-compiler/1.8.1/plexus-compiler-1.8.1.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-compiler/1.8.1/plexus-compiler-1.8.1.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-compiler/1.8.1/plexus-compiler-1.8.1.pom (4 KB at 99.9 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom (6 KB at 106.7 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom (17 KB at 359.4 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom (6 KB at 186.2 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-compiler-manager/1.8.1/plexus-compiler-manager-1.8.1.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-compiler-manager/1.8.1/plexus-compiler-manager-1.8.1.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-compiler-manager/1.8.1/plexus-compiler-manager-1.8.1.pom (713 B at 17.0 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-compiler-javac/1.8.1/plexus-compiler-javac-1.8.1.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-compiler-javac/1.8.1/plexus-compiler-javac-1.8.1.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-compiler-javac/1.8.1/plexus-compiler-javac-1.8.1.pom (710 B at 12.8 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-compilers/1.8.1/plexus-compilers-1.8.1.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-compilers/1.8.1/plexus-compilers-1.8.1.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-compilers/1.8.1/plexus-compilers-1.8.1.pom (2 KB at 18.5 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-compiler-api/1.8.1/plexus-compiler-api-1.8.1.jar
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-compiler-manager/1.8.1/plexus-compiler-manager-1.8.1.jar
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-compiler-javac/1.8.1/plexus-compiler-javac-1.8.1.jar
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-compiler-api/1.8.1/plexus-compiler-api-1.8.1.jar
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-compiler-manager/1.8.1/plexus-compiler-manager-1.8.1.jar
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-compiler-javac/1.8.1/plexus-compiler-javac-1.8.1.jar
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-compiler-manager/1.8.1/plexus-compiler-manager-1.8.1.jar (6 KB at 44.4 KB/sec)
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-compiler-api/1.8.1/plexus-compiler-api-1.8.1.jar (20 KB at 143.3 KB/sec)
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-compiler-javac/1.8.1/plexus-compiler-javac-1.8.1.jar (13 KB at 92.6 KB/sec)
remote: [INFO] Nothing to compile - all classes are up to date
remote: [INFO]
remote: [INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ jbossews ---
remote: [debug] execute contextualize
remote: [INFO] Using 'UTF-8' encoding to copy filtered resources.
remote: [INFO] skip non existing resourceDirectory /var/lib/openshift/5492ece7e0b8cd262a00009a/app-root/runtime/repo/src/test/resources
remote: [INFO]
remote: [INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ jbossews ---
remote: [INFO] No sources to compile
remote: [INFO]
remote: [INFO] --- maven-surefire-plugin:2.10:test (default-test) @ jbossews ---
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom (2 KB at 15.4 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven/2.0.9/maven-2.0.9.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven/2.0.9/maven-2.0.9.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven/2.0.9/maven-2.0.9.pom (19 KB at 293.1 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-parent/8/maven-parent-8.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-parent/8/maven-parent-8.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-parent/8/maven-parent-8.pom (24 KB at 341.6 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/apache/4/apache-4.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/apache/4/apache-4.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/apache/4/apache-4.pom (5 KB at 87.8 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/surefire/surefire-booter/2.10/surefire-booter-2.10.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/surefire/surefire-booter/2.10/surefire-booter-2.10.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/surefire/surefire-booter/2.10/surefire-booter-2.10.pom (3 KB at 84.5 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/surefire/surefire-api/2.10/surefire-api-2.10.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/surefire/surefire-api/2.10/surefire-api-2.10.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/surefire/surefire-api/2.10/surefire-api-2.10.pom (3 KB at 76.9 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/surefire/maven-surefire-common/2.10/maven-surefire-common-2.10.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/surefire/maven-surefire-common/2.10/maven-surefire-common-2.10.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/surefire/maven-surefire-common/2.10/maven-surefire-common-2.10.pom (4 KB at 156.6 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-utils/2.1/plexus-utils-2.1.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/2.1/plexus-utils-2.1.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/2.1/plexus-utils-2.1.pom (4 KB at 131.3 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/sonatype/spice/spice-parent/16/spice-parent-16.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/sonatype/spice/spice-parent/16/spice-parent-16.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/sonatype/spice/spice-parent/16/spice-parent-16.pom (9 KB at 255.1 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/sonatype/forge/forge-parent/5/forge-parent-5.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/sonatype/forge/forge-parent/5/forge-parent-5.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/sonatype/forge/forge-parent/5/forge-parent-5.pom (9 KB at 326.7 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom (2 KB at 39.5 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom (3 KB at 63.0 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom (3 KB at 35.3 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom (4 KB at 40.3 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom (3 KB at 17.6 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom (3 KB at 23.1 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom (2 KB at 23.8 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom (2 KB at 22.9 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom (8 KB at 98.7 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom (2 KB at 20.2 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom (2 KB at 15.0 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom (2 KB at 2.0 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom (2 KB at 19.4 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom (3 KB at 25.7 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom (2 KB at 9.9 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom (4 KB at 38.6 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom (4 KB at 44.1 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom (10 KB at 99.1 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-parent/13/maven-parent-13.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-parent/13/maven-parent-13.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-parent/13/maven-parent-13.pom (23 KB at 204.7 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/apache/6/apache-6.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/apache/6/apache-6.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/apache/6/apache-6.pom (13 KB at 186.5 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom (2 KB at 13.9 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/surefire/surefire-booter/2.10/surefire-booter-2.10.jar
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/surefire/surefire-api/2.10/surefire-api-2.10.jar
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/surefire/maven-surefire-common/2.10/maven-surefire-common-2.10.jar
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-utils/2.1/plexus-utils-2.1.jar
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/surefire/surefire-booter/2.10/surefire-booter-2.10.jar
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/surefire/surefire-api/2.10/surefire-api-2.10.jar
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/surefire/maven-surefire-common/2.10/maven-surefire-common-2.10.jar
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/2.1/plexus-utils-2.1.jar
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/surefire/surefire-booter/2.10/surefire-booter-2.10.jar (34 KB at 321.0 KB/sec)
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar (31 KB at 238.8 KB/sec)
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/surefire/surefire-api/2.10/surefire-api-2.10.jar (158 KB at 1029.7 KB/sec)
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/surefire/maven-surefire-common/2.10/maven-surefire-common-2.10.jar (60 KB at 353.4 KB/sec)
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/2.1/plexus-utils-2.1.jar (220 KB at 1153.9 KB/sec)
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar (10 KB at 108.8 KB/sec)
remote: [INFO] Tests are skipped.
remote: [INFO]
remote: [INFO] --- maven-war-plugin:2.1.1:war (default-war) @ jbossews ---
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-archiver/2.4.1/maven-archiver-2.4.1.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-archiver/2.4.1/maven-archiver-2.4.1.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-archiver/2.4.1/maven-archiver-2.4.1.pom (4 KB at 50.8 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom (10 KB at 83.7 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-archiver/1.0/plexus-archiver-1.0.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-archiver/1.0/plexus-archiver-1.0.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-archiver/1.0/plexus-archiver-1.0.pom (2 KB at 28.6 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-components/1.1.17/plexus-components-1.1.17.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-components/1.1.17/plexus-components-1.1.17.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-components/1.1.17/plexus-components-1.1.17.pom (6 KB at 82.1 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom (17 KB at 222.9 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-io/1.0/plexus-io-1.0.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-io/1.0/plexus-io-1.0.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-io/1.0/plexus-io-1.0.pom (2 KB at 25.5 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-archiver/1.2/plexus-archiver-1.2.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-archiver/1.2/plexus-archiver-1.2.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-archiver/1.2/plexus-archiver-1.2.pom (2 KB at 28.1 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-io/1.0.1/plexus-io-1.0.1.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-io/1.0.1/plexus-io-1.0.1.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-io/1.0.1/plexus-io-1.0.1.pom (2 KB at 16.8 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/com/thoughtworks/xstream/xstream/1.3.1/xstream-1.3.1.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/com/thoughtworks/xstream/xstream/1.3.1/xstream-1.3.1.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/com/thoughtworks/xstream/xstream/1.3.1/xstream-1.3.1.pom (12 KB at 131.4 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/com/thoughtworks/xstream/xstream-parent/1.3.1/xstream-parent-1.3.1.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/com/thoughtworks/xstream/xstream-parent/1.3.1/xstream-parent-1.3.1.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/com/thoughtworks/xstream/xstream-parent/1.3.1/xstream-parent-1.3.1.pom (14 KB at 195.2 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/xpp3/xpp3_min/1.1.4c/xpp3_min-1.1.4c.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/xpp3/xpp3_min/1.1.4c/xpp3_min-1.1.4c.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/xpp3/xpp3_min/1.1.4c/xpp3_min-1.1.4c.pom (2 KB at 23.8 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/shared/maven-filtering/1.0-beta-2/maven-filtering-1.0-beta-2.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/shared/maven-filtering/1.0-beta-2/maven-filtering-1.0-beta-2.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/shared/maven-filtering/1.0-beta-2/maven-filtering-1.0-beta-2.pom (4 KB at 41.0 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/shared/maven-shared-components/10/maven-shared-components-10.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/shared/maven-shared-components/10/maven-shared-components-10.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/shared/maven-shared-components/10/maven-shared-components-10.pom (9 KB at 105.6 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-parent/9/maven-parent-9.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-parent/9/maven-parent-9.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-parent/9/maven-parent-9.pom (33 KB at 242.9 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.pom (6 KB at 52.8 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12.pom (10 KB at 81.8 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-interpolation/1.6/plexus-interpolation-1.6.pom
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-interpolation/1.6/plexus-interpolation-1.6.pom
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-interpolation/1.6/plexus-interpolation-1.6.pom (3 KB at 37.4 KB/sec)
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-archiver/2.4.1/maven-archiver-2.4.1.jar
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-archiver/1.2/plexus-archiver-1.2.jar
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-io/1.0.1/plexus-io-1.0.1.jar
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/com/thoughtworks/xstream/xstream/1.3.1/xstream-1.3.1.jar
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/xpp3/xpp3_min/1.1.4c/xpp3_min-1.1.4c.jar
remote: Downloading: http://maven.repository.redhat.com/techpreview/all/org/apache/maven/shared/maven-filtering/1.0-beta-2/maven-filtering-1.0-beta-2.jar
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-archiver/2.4.1/maven-archiver-2.4.1.jar
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-archiver/1.2/plexus-archiver-1.2.jar
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-io/1.0.1/plexus-io-1.0.1.jar
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/com/thoughtworks/xstream/xstream/1.3.1/xstream-1.3.1.jar
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/xpp3/xpp3_min/1.1.4c/xpp3_min-1.1.4c.jar
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/maven-archiver/2.4.1/maven-archiver-2.4.1.jar (20 KB at 166.3 KB/sec)
remote: Downloading: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/shared/maven-filtering/1.0-beta-2/maven-filtering-1.0-beta-2.jar
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/xpp3/xpp3_min/1.1.4c/xpp3_min-1.1.4c.jar (25 KB at 210.1 KB/sec)
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-io/1.0.1/plexus-io-1.0.1.jar (50 KB at 342.6 KB/sec)
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/codehaus/plexus/plexus-archiver/1.2/plexus-archiver-1.2.jar (178 KB at 954.7 KB/sec)
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/org/apache/maven/shared/maven-filtering/1.0-beta-2/maven-filtering-1.0-beta-2.jar (33 KB at 337.5 KB/sec)
remote: Downloaded: http://mirror.ops.rhcloud.com/nexus/content/groups/public/com/thoughtworks/xstream/xstream/1.3.1/xstream-1.3.1.jar (422 KB at 1566.2 KB/sec)
remote: [INFO] Packaging webapp
remote: [INFO] Assembling webapp [jbossews] in [/var/lib/openshift/5492ece7e0b8cd262a00009a/app-root/runtime/repo/target/jbossews]
remote: [INFO] Processing war project
remote: [INFO] Copying webapp resources [/var/lib/openshift/5492ece7e0b8cd262a00009a/app-root/runtime/repo/src/main/webapp]
remote: [INFO] Webapp assembled in [55 msecs]
remote: [INFO] Building war: /var/lib/openshift/5492ece7e0b8cd262a00009a/app-root/runtime/repo/webapps/ROOT.war
remote: [INFO] WEB-INF/web.xml already added, skipping
remote: [INFO] ------------------------------------------------------------------------
remote: [INFO] BUILD SUCCESS
remote: [INFO] ------------------------------------------------------------------------
remote: [INFO] Total time: 31.488s
remote: [INFO] Finished at: Thu Dec 18 10:08:58 EST 2014
remote: [INFO] Final Memory: 8M/142M
remote: [INFO] ------------------------------------------------------------------------
remote: Preparing build for deployment
remote: Deployment id is 673e1a1f
remote: Activating deployment
remote: Starting jbossews cartridge
remote: Found 127.8.181.129:8080 listening port
remote: -------------------------
remote: Git Post-Receive Result: success
remote: Activation status: success
remote: Deployment completed with status: success
To ssh://5492ece7e0b8cd262a00009a@jbossews-computerhok.rhcloud.com/~/git/jbossews.git/
6de1086..01ff233 master -> master
metskem@athena:~/cloud/openshift/apps/jbossews/src/main/webapp$
}}}
%%