jeudi 20 janvier 2011

Méthodes d'entrainement au développement

C'est le titre d'une séance à laquelle j'ai participé ce matin à l'Agile Open France.

Je retranscrit ici de manière brute la liste des méthodes que nous avons énumérées.

Participer activement à un projet (open-source ou pas)
  • c'est en forgeant qu'on devient forgeron
  • c'est ça l'entrainement ?
Répéter un micro-projet from scratch
  • refaire la même chose encore et encore
  • fonctionnel trivial
  • contraintes à respecter
  • exemple : application web de gestion de TODO-list avec mise en place du dépôt svn, génération des livrables, tests, ...
Lire un livre et faire les exercices
  • exemple : video store dans le livre Refactoring de M. Fowler
Faire des petites modifications souvent sur une variété de projets
  • s'habituer à toucher du code
  • apprentissage par comparaison / essayage de code
Binômage
  • découverte, avec le temps, des compétences de l'autre
  • apprentissage par surprise (Pierre ne pensait pas que ça pouvait intéresser quelqu'un, Paul ne pensait pas qu'il apprendrait cela)
Randori
  • on tourne toutes le 5/7 minutes
  • on travail en binôme et c'est tout le binôme qui change à chaque tour
  • on travail en binôme et c'est la moitié du binôme qui change à chaque tour
  • on travail en solitaire et on change d'individu à chaque tour
  • celui/ceux qui (fait/font) programme(nt) à voix haute
  • les autres esssayent de ne pas troubler ceux qui font
  • apprentissage dans un groupe hétérogène
  • limiter les ambitions de l'exercice
  • au moins un participant devrait avoir déchiffré le sujet
Arret sur image
  • décrire pourquoi je fais les choses dans le détail, y compris les choses triviales
  • pourquoi est-ce que j'aligne les paramètres ?
  • pourquoi est-ce que j'ajoute un saut de ligne ?
  • outil de transmission pédagogique
(auto-)screencast
  • s'enregistrer en train de faire quelque chose
  • se regarder
  • effet de la répétition
  • le screencast montre tout ce que ton binôme n'ose pas te dire
Challenges
  • tirer au sort des exercices/défis écris par les participants
  • tenter de les faire/résoudre
  • divertissant
Project EulerLien
  • résoudre les problèmes d'Euler
  • consulter les programmes des autres
  • il faut résoudre le problème pour pouvoir lire les solutions des autres
Pleac
  • refaire le perl cookbook dans d'autres langages
Kata
  • refaire en un temps limité un exercice précis
  • avancement étape par étape et description de ce qu'on fait
  • screencast en live
  • travail de préparation
Apprendre de nouveaux langagesLien
  • ce que j'apprend dans un langage m'apprend des choses sur ce que je fais dans un autre langage
  • apprendre un langage par an
  • seven languages in seven weeks ?

dimanche 9 janvier 2011

Conférence téléphonique pour les pauvres


Là où je travail, on a les moyen de s'offrir des conférences téléphoniques régulièrement. C'est tellement bien que je me suis dit qu'il fallait aussi penser aux autres, à ceux qui n'ont pas accès à cette technologie.

Pour eux, j'ai pensé au kit conf-call low tech : quelques bandeaux pour les yeux, de la corde pour s'attacher les mains dans le dos et des baillons pour ceux qui ne sont pas là pour parler et hop ! Le tour est joué. Tous les bénéfices de la conférence téléphonique pour pas un rond !

jeudi 6 janvier 2011

maven doit mourrir !

Pfff... et encore une m****e de plus avec maven.

Aujourd'hui, je met à jour ma machine. Je n'y ai pas trop prêté attention mais visiblement cette mise à jour incluait une mise à jour de maven2.

Et là, c'est le drame. Subitement je suis incapable de lancer mvn jetty:run sur un projet qui fonctionnait pourtant parfaitement 5 minutes plus tôt :


$> mvn jetty:run
[INFO] Scanning for projects...
[INFO] Searching repository for plugin with prefix: 'jetty'.
[INFO] org.apache.maven.plugins: checking for updates from central
[INFO] org.codehaus.mojo: checking for updates from central
[INFO] artifact org.apache.maven.plugins:maven-jetty-plugin: checking for updates from central
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] The plugin 'org.apache.maven.plugins:maven-jetty-plugin' does not exist or no valid version could be found
[INFO] ------------------------------------------------------------------------
[INFO] For more information, run Maven with the -e switch
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 1 second
[INFO] Finished at: Thu Jan 06 11:14:35 CET 2011
[INFO] Final Memory: 2M/57M
[INFO] ------------------------------------------------------------------------


Merci Google et Ganesh, je trouve une solution décrite ici : Wrong Maven Jetty Plugin : org.apache.maven.plugins:maven-jetty-plugin

Je fais ce qui est suggéré. Ca semble bien se passer et puis :


$ mvn jetty:run
[INFO] Scanning for projects...
[INFO] Searching repository for plugin with prefix: 'jetty'.
[INFO] ------------------------------------------------------------------------
[INFO] Building Maven Default Project
[INFO] task-segment: [jetty:run]
[INFO] ------------------------------------------------------------------------
[INFO] Preparing jetty:run
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Cannot execute mojo: resources. It requires a project with an existing pom.xml, but the build is not using one.
[INFO] ------------------------------------------------------------------------
[INFO] For more information, run Maven with the -e switch
[INFO] ------------------------------------------------------------------------
[INFO] Total time:


Bon OK ! cette fois c'est ma faute : ma variable d'environnement MAVEN_HOME n'était plus positionnée. Mais comme le message d'erreur n'a aucun rapport avec cela, il m'aura fallu 10 minutes pour le deviner et corriger mon erreur... merci de ton aide maven !

Allez, juste pour le plaisir, et comme j'avais effacé mon repo maven local pendant mes investigations, je vous met la sortie de la commande qui s'est enfin déroulée avec succès (la prochaine fois pour rigoler je mettrais en mode verbeux) :


$> mvn jetty:run
[INFO] Scanning for projects...
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/xxx/web/1.9/web-1.9.pom
2K downloaded (web-1.9.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/xxx/livrable/1.1/livrable-1.1.pom
1K downloaded (livrable-1.1.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/xxx/common/1.2/common-1.2.pom
4K downloaded (common-1.2.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/plugins/maven-compiler-plugin/2.0.2/maven-compiler-plugin-2.0.2.pom
2K downloaded (maven-compiler-plugin-2.0.2.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/plugins/maven-plugins/8/maven-plugins-8.pom
5K downloaded (maven-plugins-8.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-parent/5/maven-parent-5.pom
14K downloaded (maven-parent-5.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/apache/3/apache-3.pom
3K downloaded (apache-3.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/plugins/maven-compiler-plugin/2.0.2/maven-compiler-plugin-2.0.2.jar
17K downloaded (maven-compiler-plugin-2.0.2.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/plugins/maven-resources-plugin/2.3/maven-resources-plugin-2.3.pom
4K downloaded (maven-resources-plugin-2.3.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/plugins/maven-plugins/12/maven-plugins-12.pom
11K downloaded (maven-plugins-12.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-parent/9/maven-parent-9.pom
32K downloaded (maven-parent-9.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/apache/4/apache-4.pom
4K downloaded (apache-4.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/plugins/maven-resources-plugin/2.3/maven-resources-plugin-2.3.jar
20K downloaded (maven-resources-plugin-2.3.jar)
[INFO] artifact org.apache.maven.plugins:maven-changes-plugin: checking for updates from central
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/plugins/maven-changes-plugin/2.3/maven-changes-plugin-2.3.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/plugins/maven-plugins/16/maven-plugins-16.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-parent/15/maven-parent-15.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/apache/6/apache-6.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/plugins/maven-changes-plugin/2.3/maven-changes-plugin-2.3.jar
133K downloaded (maven-changes-plugin-2.3.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/plugins/maven-antrun-plugin/1.3/maven-antrun-plugin-1.3.pom
4K downloaded (maven-antrun-plugin-1.3.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/plugins/maven-antrun-plugin/1.3/maven-antrun-plugin-1.3.jar
23K downloaded (maven-antrun-plugin-1.3.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/plugins/maven-surefire-plugin/2.4.3/maven-surefire-plugin-2.4.3.pom
6K downloaded (maven-surefire-plugin-2.4.3.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/surefire/surefire/2.4.3/surefire-2.4.3.pom
7K downloaded (surefire-2.4.3.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-parent/7/maven-parent-7.pom
20K downloaded (maven-parent-7.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/plugins/maven-surefire-plugin/2.4.3/maven-surefire-plugin-2.4.3.jar
22K downloaded (maven-surefire-plugin-2.4.3.jar)
[INFO] artifact org.apache.maven.plugins:maven-eclipse-plugin: checking for updates from central
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/plugins/maven-eclipse-plugin/2.8/maven-eclipse-plugin-2.8.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/plugins/maven-plugins/17/maven-plugins-17.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-parent/16/maven-parent-16.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/apache/7/apache-7.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/plugins/maven-eclipse-plugin/2.8/maven-eclipse-plugin-2.8.jar
201K downloaded (maven-eclipse-plugin-2.8.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/fr/xxx/ipp/maven-ipp-deployer/1.5/maven-ipp-deployer-1.5.pom
3K downloaded (maven-ipp-deployer-1.5.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/fr/xxx/ipp/maven-ipp-deployer/1.5/maven-ipp-deployer-1.5.jar
19K downloaded (maven-ipp-deployer-1.5.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/plugins/maven-war-plugin/2.0/maven-war-plugin-2.0.pom
1K downloaded (maven-war-plugin-2.0.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/plugins/maven-plugins/1/maven-plugins-1.pom
3K downloaded (maven-plugins-1.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-parent/1/maven-parent-1.pom
6K downloaded (maven-parent-1.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/apache/1/apache-1.pom
3K downloaded (apache-1.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/plugins/maven-war-plugin/2.0/maven-war-plugin-2.0.jar
21K downloaded (maven-war-plugin-2.0.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/plugins/maven-assembly-plugin/2.2-beta-4/maven-assembly-plugin-2.2-beta-4.pom
15K downloaded (maven-assembly-plugin-2.2-beta-4.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/plugins/maven-plugins/13/maven-plugins-13.pom
11K downloaded (maven-plugins-13.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-parent/11/maven-parent-11.pom
31K downloaded (maven-parent-11.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/apache/5/apache-5.pom
4K downloaded (apache-5.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/plugins/maven-assembly-plugin/2.2-beta-4/maven-assembly-plugin-2.2-beta-4.jar
203K downloaded (maven-assembly-plugin-2.2-beta-4.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/sonar/sonar-core-maven-plugin/1.5.1/sonar-core-maven-plugin-1.5.1.pom
2K downloaded (sonar-core-maven-plugin-1.5.1.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/sonar/sonar/1.5.1/sonar-1.5.1.pom
11K downloaded (sonar-1.5.1.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/sonar/sonar-core-maven-plugin/1.5.1/sonar-core-maven-plugin-1.5.1.jar
18K downloaded (sonar-core-maven-plugin-1.5.1.jar)
[INFO] artifact org.codehaus.mojo:tomcat-maven-plugin: checking for updates from central
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/mojo/tomcat-maven-plugin/1.1/tomcat-maven-plugin-1.1.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/mojo/mojo-parent/27/mojo-parent-27.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/codehaus-parent/3/codehaus-parent-3.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/mojo/tomcat-maven-plugin/1.1/tomcat-maven-plugin-1.1.jar
57K downloaded (tomcat-maven-plugin-1.1.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/plugins/maven-jar-plugin/2.2/maven-jar-plugin-2.2.pom
8K downloaded (maven-jar-plugin-2.2.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/plugins/maven-plugins/10/maven-plugins-10.pom
7K downloaded (maven-plugins-10.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/plugins/maven-jar-plugin/2.2/maven-jar-plugin-2.2.jar
26K downloaded (maven-jar-plugin-2.2.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/plugins/maven-emma-plugin/1.0/maven-emma-plugin-1.0.pom
7K downloaded (maven-emma-plugin-1.0.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/mojo/mojo-sandbox/4/mojo-sandbox-4.pom
2K downloaded (mojo-sandbox-4.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/mojo/mojo/16/mojo-16.pom
8K downloaded (mojo-16.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/plugins/maven-emma-plugin/1.0/maven-emma-plugin-1.0.jar
33K downloaded (maven-emma-plugin-1.0.jar)
[INFO] artifact org.mortbay.jetty:maven-jetty-plugin: checking for updates from central
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/mortbay/jetty/maven-jetty-plugin/6.1.26/maven-jetty-plugin-6.1.26.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/mortbay/jetty/project/6.1.26/project-6.1.26.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/mortbay/jetty/jetty-parent/10/jetty-parent-10.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/eclipse/jetty/jetty-parent/14/jetty-parent-14.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/mortbay/jetty/maven-jetty-plugin/6.1.26/maven-jetty-plugin-6.1.26.jar
46K downloaded (maven-jetty-plugin-6.1.26.jar)
[INFO] ------------------------------------------------------------------------
[INFO] Building 3900-ihmadm
[INFO] task-segment: [jetty:run]
[INFO] ------------------------------------------------------------------------
[INFO] Preparing jetty:run
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/plugins/maven-release-plugin/2.0-beta-8/maven-release-plugin-2.0-beta-8.pom
6K downloaded (maven-release-plugin-2.0-beta-8.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/release/maven-release/5/maven-release-5.pom
6K downloaded (maven-release-5.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/plugins/maven-release-plugin/2.0-beta-8/maven-release-plugin-2.0-beta-8.jar
29K downloaded (maven-release-plugin-2.0-beta-8.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom
1K downloaded (maven-plugin-api-2.0.6.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven/2.0.6/maven-2.0.6.pom
8K downloaded (maven-2.0.6.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom
2K downloaded (maven-project-2.0.6.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom
1K downloaded (maven-settings-2.0.6.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom
2K downloaded (maven-model-2.0.6.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom
1K downloaded (plexus-utils-1.4.1.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom
8K downloaded (plexus-1.0.11.pom)
Downloading: http://xxx.xxx.xxx/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
3K downloaded (plexus-container-default-1.0-alpha-9-stable-1.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom
492b downloaded (plexus-containers-1.0.3.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom
5K downloaded (plexus-1.0.4.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/junit/junit/3.8.1/junit-3.8.1.pom
998b downloaded (junit-3.8.1.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom
6K downloaded (plexus-utils-1.0.4.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom
3K downloaded (classworlds-1.1-alpha-2.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom
1K downloaded (maven-profile-2.0.6.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom
2K downloaded (maven-artifact-manager-2.0.6.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom
1K downloaded (maven-repository-metadata-2.0.6.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom
1K downloaded (maven-artifact-2.0.6.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/wagon/wagon-provider-api/1.0-beta-2/wagon-provider-api-1.0-beta-2.pom
680b downloaded (wagon-provider-api-1.0-beta-2.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/wagon/wagon/1.0-beta-2/wagon-1.0-beta-2.pom
5K downloaded (wagon-1.0-beta-2.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-parent/4/maven-parent-4.pom
9K downloaded (maven-parent-4.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom
1K downloaded (maven-plugin-registry-2.0.6.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.pom
5K downloaded (plexus-utils-1.5.6.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12.pom
9K downloaded (plexus-1.0.12.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/shared/maven-filtering/1.0-beta-2/maven-filtering-1.0-beta-2.pom
3K downloaded (maven-filtering-1.0-beta-2.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/shared/maven-shared-components/10/maven-shared-components-10.pom
8K downloaded (maven-shared-components-10.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom
6K downloaded (maven-core-2.0.6.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/wagon/wagon-file/1.0-beta-2/wagon-file-1.0-beta-2.pom
637b downloaded (wagon-file-1.0-beta-2.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/wagon/wagon-providers/1.0-beta-2/wagon-providers-1.0-beta-2.pom
1K downloaded (wagon-providers-1.0-beta-2.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom
1K downloaded (maven-plugin-parameter-documenter-2.0.6.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/wagon/wagon-http-lightweight/1.0-beta-2/wagon-http-lightweight-1.0-beta-2.pom
1K downloaded (wagon-http-lightweight-1.0-beta-2.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/wagon/wagon-http-shared/1.0-beta-2/wagon-http-shared-1.0-beta-2.pom
845b downloaded (wagon-http-shared-1.0-beta-2.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/jtidy/jtidy/4aug2000r7-dev/jtidy-4aug2000r7-dev.pom
1K downloaded (jtidy-4aug2000r7-dev.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom
2K downloaded (xml-apis-1.0.b2.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom
1K downloaded (maven-reporting-api-2.0.6.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom
1K downloaded (maven-reporting-2.0.6.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom
424b downloaded (doxia-sink-api-1.0-alpha-7.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom
3K downloaded (doxia-1.0-alpha-7.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom
1K downloaded (maven-error-diagnostics-2.0.6.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/commons-cli/commons-cli/1.0/commons-cli-1.0.pom
2K downloaded (commons-cli-1.0.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/wagon/wagon-ssh-external/1.0-beta-2/wagon-ssh-external-1.0-beta-2.pom
1K downloaded (wagon-ssh-external-1.0-beta-2.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/wagon/wagon-ssh-common/1.0-beta-2/wagon-ssh-common-1.0-beta-2.pom
851b downloaded (wagon-ssh-common-1.0-beta-2.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom
6K downloaded (plexus-interactivity-api-1.0-alpha-4.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/plexus/plexus-container-default/1.0-alpha-7/plexus-container-default-1.0-alpha-7.pom
1K downloaded (plexus-container-default-1.0-alpha-7.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/plexus/plexus-containers/1.0.2/plexus-containers-1.0.2.pom
471b downloaded (plexus-containers-1.0.2.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/plexus/plexus-root/1.0.3/plexus-root-1.0.3.pom
5K downloaded (plexus-root-1.0.3.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/plexus/plexus-utils/1.0.2/plexus-utils-1.0.2.pom
740b downloaded (plexus-utils-1.0.2.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom
1K downloaded (maven-plugin-descriptor-2.0.6.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom
1K downloaded (maven-monitor-2.0.6.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/wagon/wagon-ssh/1.0-beta-2/wagon-ssh-1.0-beta-2.pom
1K downloaded (wagon-ssh-1.0-beta-2.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/com/jcraft/jsch/0.1.27/jsch-0.1.27.pom
965b downloaded (jsch-0.1.27.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/classworlds/classworlds/1.1/classworlds-1.1.pom
3K downloaded (classworlds-1.1.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/plexus/plexus-interpolation/1.6/plexus-interpolation-1.6.pom
2K downloaded (plexus-interpolation-1.6.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.jar
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/shared/maven-filtering/1.0-beta-2/maven-filtering-1.0-beta-2.jar
244K downloaded (plexus-utils-1.5.6.jar)
32K downloaded (maven-filtering-1.0-beta-2.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/plexus/plexus-interpolation/1.6/plexus-interpolation-1.6.jar
49K downloaded (plexus-interpolation-1.6.jar)
[INFO] [resources:resources {execution: default-resources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/xxx/workspace/3900-ihmadm-webapp/src/main/resources
[INFO] Copying 47 resources
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/xxx/wicket-xxx-contrib/0.4/wicket-xxx-contrib-0.4.pom
9K downloaded (wicket-xxx-contrib-0.4.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/xxx/library/0.1/library-0.1.pom
8K downloaded (library-0.1.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/xxx/common/1.1/common-1.1.pom
1K downloaded (common-1.1.pom)
[WARNING] *** CHECKSUM FAILED - Checksum failed on download: local = 'a10d2322e7879f324c0836005edd3b9bc256d818'; remote = 'bdf2f76842838e037da7d9c34011a45925800a2a' - RETRYING
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/xxx/common/1.1/common-1.1.pom
1K downloaded (common-1.1.pom)
[WARNING] *** CHECKSUM FAILED - Checksum failed on download: local = 'a10d2322e7879f324c0836005edd3b9bc256d818'; remote = 'bdf2f76842838e037da7d9c34011a45925800a2a' - IGNORING
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/xxx/log4j/1.2.11/log4j-1.2.11.pom
[INFO] Unable to find resource 'xxx:log4j:pom:1.2.11' in repository maven-projects (http://xxx.xxx.xxx/nexus/content/repositories/xxx-public/)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/xxx/log4j/1.2.11/log4j-1.2.11.pom
[INFO] Unable to find resource 'xxx:log4j:pom:1.2.11' in repository xxx-maven2-repository (http://xxx.xxx.xxx/nexus/content/groups/public)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/xxx/poms/log4j-1.2.11.pom
2K downloaded (log4j-1.2.11.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom
5K downloaded (commons-logging-1.0.4.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/wicket/wicket/1.4.3/wicket-1.4.3.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/wicket/wicket-parent/1.4.3/wicket-parent-1.4.3.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/slf4j/slf4j-api/1.5.8/slf4j-api-1.5.8.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/slf4j/slf4j-parent/1.5.8/slf4j-parent-1.5.8.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/wicket/wicket-extensions/1.4.0/wicket-extensions-1.4.0.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/wicket/wicket-parent/1.4.0/wicket-parent-1.4.0.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/wicket/wicket/1.4.0/wicket-1.4.0.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/slf4j/slf4j-api/1.4.2/slf4j-api-1.4.2.pom
2K downloaded (slf4j-api-1.4.2.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/slf4j/slf4j-parent/1.4.2/slf4j-parent-1.4.2.pom
6K downloaded (slf4j-parent-1.4.2.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/wicket/wicket-auth-roles/1.4.0/wicket-auth-roles-1.4.0.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/wicket/wicket-datetime/1.4.0/wicket-datetime-1.4.0.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/joda-time/joda-time/1.4/joda-time-1.4.pom
3K downloaded (joda-time-1.4.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/slf4j/slf4j-log4j12/1.0.1/slf4j-log4j12-1.0.1.pom
406b downloaded (slf4j-log4j12-1.0.1.pom)
[WARNING] *** CHECKSUM FAILED - Checksum failed on download: local = '37304fd56d9cdda797718e6710637d232986c442'; remote = '15558150f0136e9802bb95a347e0045fb4ffe697' - RETRYING
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/slf4j/slf4j-log4j12/1.0.1/slf4j-log4j12-1.0.1.pom
406b downloaded (slf4j-log4j12-1.0.1.pom)
[WARNING] *** CHECKSUM FAILED - Checksum failed on download: local = '37304fd56d9cdda797718e6710637d232986c442'; remote = '15558150f0136e9802bb95a347e0045fb4ffe697' - IGNORING
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/emma/emma/2.0.5312/emma-2.0.5312.pom
165b downloaded (emma-2.0.5312.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/javax/servlet/servlet-api/2.4/servlet-api-2.4.pom
156b downloaded (servlet-api-2.4.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/mysql/mysql-connector-java/5.1.13/mysql-connector-java-5.1.13.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/temmental/temmental/1.0.25/temmental-1.0.25.pom
[INFO] Unable to find resource 'temmental:temmental:pom:1.0.25' in repository maven-projects (http://xxx.xxx.xxx/nexus/content/repositories/xxx-public/)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/temmental/temmental/1.0.25/temmental-1.0.25.pom
[INFO] Unable to find resource 'temmental:temmental:pom:1.0.25' in repository xxx-maven2-repository (http://xxx.xxx.xxx/nexus/content/groups/public)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/temmental/poms/temmental-1.0.25.pom
[INFO] Unable to find resource 'temmental:temmental:pom:1.0.25' in repository xxx-maven1-repository (http://xxx.xxx.xxx/nexus/content/groups/public)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/temmental/temmental/1.0.25/temmental-1.0.25.pom
[INFO] Unable to find resource 'temmental:temmental:pom:1.0.25' in repository central (http://repo1.maven.org/maven2)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/tn-plus/diffatac-rules-lib/0.36.2/diffatac-rules-lib-0.36.2.pom
4K downloaded (diffatac-rules-lib-0.36.2.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/tn-plus/diffatac-client/0.34.2/diffatac-client-0.34.2.pom
3K downloaded (diffatac-client-0.34.2.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/cxf/cxf-api/2.2.4/cxf-api-2.2.4.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/cxf/cxf-parent/2.2.4/cxf-parent-2.2.4.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/cxf/cxf/2.2.4/cxf-2.2.4.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/geronimo/specs/geronimo-activation_1.1_spec/1.0.2/geronimo-activation_1.1_spec-1.0.2.pom
2K downloaded (geronimo-activation_1.1_spec-1.0.2.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/geronimo/specs/specs/1.4/specs-1.4.pom
11K downloaded (specs-1.4.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/geronimo/genesis/config/project-config/1.2/project-config-1.2.pom
21K downloaded (project-config-1.2.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/geronimo/genesis/config/config/1.2/config-1.2.pom
1K downloaded (config-1.2.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/geronimo/genesis/genesis/1.2/genesis-1.2.pom
10K downloaded (genesis-1.2.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/cxf/cxf-common-utilities/2.2.4/cxf-common-utilities-2.2.4.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/springframework/spring-core/2.5.5/spring-core-2.5.5.pom
2K downloaded (spring-core-2.5.5.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.pom
17K downloaded (commons-logging-1.1.1.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/commons/commons-parent/5/commons-parent-5.pom
15K downloaded (commons-parent-5.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/springframework/spring-beans/2.5.5/spring-beans-2.5.5.pom
2K downloaded (spring-beans-2.5.5.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/springframework/spring-context/2.5.5/spring-context-2.5.5.pom
3K downloaded (spring-context-2.5.5.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/aopalliance/aopalliance/1.0/aopalliance-1.0.pom
363b downloaded (aopalliance-1.0.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/geronimo/specs/geronimo-annotation_1.0_spec/1.1.1/geronimo-annotation_1.0_spec-1.1.1.pom
2K downloaded (geronimo-annotation_1.0_spec-1.1.1.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/javax/xml/bind/jaxb-api/2.1/jaxb-api-2.1.pom
486b downloaded (jaxb-api-2.1.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/geronimo/specs/geronimo-stax-api_1.0_spec/1.0.1/geronimo-stax-api_1.0_spec-1.0.1.pom
2K downloaded (geronimo-stax-api_1.0_spec-1.0.1.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/geronimo/specs/specs/1.3/specs-1.3.pom
6K downloaded (specs-1.3.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/geronimo/genesis/config/project-config/1.1/project-config-1.1.pom
14K downloaded (project-config-1.1.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/geronimo/genesis/config/config/1.1/config-1.1.pom
670b downloaded (config-1.1.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/geronimo/genesis/genesis/1.1/genesis-1.1.pom
6K downloaded (genesis-1.1.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/wsdl4j/wsdl4j/1.6.2/wsdl4j-1.6.2.pom
939b downloaded (wsdl4j-1.6.2.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/ws/commons/schema/XmlSchema/1.4.5/XmlSchema-1.4.5.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/commons-lang/commons-lang/2.4/commons-lang-2.4.pom
13K downloaded (commons-lang-2.4.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/commons/commons-parent/9/commons-parent-9.pom
21K downloaded (commons-parent-9.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/woodstox/wstx-asl/3.2.8/wstx-asl-3.2.8.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/neethi/neethi/2.0.4/neethi-2.0.4.pom
9K downloaded (neethi-2.0.4.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/cxf/cxf-common-schemas/2.2.4/cxf-common-schemas-2.2.4.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/cxf/cxf-rt-frontend-jaxws/2.2.4/cxf-rt-frontend-jaxws-2.2.4.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/xml-resolver/xml-resolver/1.2/xml-resolver-1.2.pom
1K downloaded (xml-resolver-1.2.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/geronimo/specs/geronimo-jaxws_2.1_spec/1.0/geronimo-jaxws_2.1_spec-1.0.pom
4K downloaded (geronimo-jaxws_2.1_spec-1.0.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/geronimo/specs/specs-parent/1.5/specs-parent-1.5.pom
5K downloaded (specs-parent-1.5.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/geronimo/genesis/config/project-config/1.4/project-config-1.4.pom
18K downloaded (project-config-1.4.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/geronimo/genesis/config/config/1.4/config-1.4.pom
3K downloaded (config-1.4.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/geronimo/genesis/genesis/1.4/genesis-1.4.pom
11K downloaded (genesis-1.4.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/geronimo/specs/geronimo-ws-metadata_2.0_spec/1.1.2/geronimo-ws-metadata_2.0_spec-1.1.2.pom
2K downloaded (geronimo-ws-metadata_2.0_spec-1.1.2.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/asm/asm/2.2.3/asm-2.2.3.pom
266b downloaded (asm-2.2.3.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/asm/asm-parent/2.2.3/asm-parent-2.2.3.pom
2K downloaded (asm-parent-2.2.3.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/cxf/cxf-rt-core/2.2.4/cxf-rt-core-2.2.4.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/com/sun/xml/bind/jaxb-impl/2.1.12/jaxb-impl-2.1.12.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/geronimo/specs/geronimo-javamail_1.4_spec/1.6/geronimo-javamail_1.4_spec-1.6.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/geronimo/specs/specs-parent/1.6/specs-parent-1.6.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/geronimo/genesis/config/project-config/1.5/project-config-1.5.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/geronimo/genesis/config/config/1.5/config-1.5.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/geronimo/genesis/genesis/1.5/genesis-1.5.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/cxf/cxf-rt-bindings-soap/2.2.4/cxf-rt-bindings-soap-2.2.4.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/cxf/cxf-tools-common/2.2.4/cxf-tools-common-2.2.4.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/javax/xml/soap/saaj-api/1.3/saaj-api-1.3.pom
674b downloaded (saaj-api-1.3.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/cxf/cxf-rt-databinding-jaxb/2.2.4/cxf-rt-databinding-jaxb-2.2.4.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/cxf/cxf-rt-bindings-xml/2.2.4/cxf-rt-bindings-xml-2.2.4.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/cxf/cxf-rt-frontend-simple/2.2.4/cxf-rt-frontend-simple-2.2.4.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/cxf/cxf-rt-ws-addr/2.2.4/cxf-rt-ws-addr-2.2.4.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/com/sun/xml/messaging/saaj/saaj-impl/1.3.2/saaj-impl-1.3.2.pom
350b downloaded (saaj-impl-1.3.2.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/cxf/cxf-rt-transports-http/2.2.4/cxf-rt-transports-http-2.2.4.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/springframework/spring-web/2.5.5/spring-web-2.5.5.pom
4K downloaded (spring-web-2.5.5.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/cglib/cglib/2.2/cglib-2.2.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/asm/asm/3.1/asm-3.1.pom
278b downloaded (asm-3.1.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/asm/asm-parent/3.1/asm-parent-3.1.pom
4K downloaded (asm-parent-3.1.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/log4j/log4j/1.2.7/log4j-1.2.7.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/xxx/soundupload-client/0.1.0/soundupload-client-0.1.0.pom
4K downloaded (soundupload-client-0.1.0.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/junit/junit/4.5/junit-4.5.pom
1K downloaded (junit-4.5.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/easymock/easymock/2.5.2/easymock-2.5.2.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/easymock/easymockclassextension/2.5.2/easymockclassextension-2.5.2.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/cglib/cglib-nodep/2.2/cglib-nodep-2.2.pom
807b downloaded (cglib-nodep-2.2.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/objenesis/objenesis/1.2/objenesis-1.2.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/objenesis/objenesis-parent/1.2/objenesis-parent-1.2.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/mockito/mockito-all/1.8.1/mockito-all-1.8.1.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/easymock/easymock/2.5.2/easymock-2.5.2.jar
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/emma/emma/2.0.5312/emma-2.0.5312.jar
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/xml-resolver/xml-resolver/1.2/xml-resolver-1.2.jar
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/joda-time/joda-time/1.4/joda-time-1.4.jar
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/springframework/spring-core/2.5.5/spring-core-2.5.5.jar
92K downloaded (easymock-2.5.2.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/javax/servlet/servlet-api/2.4/servlet-api-2.4.jar
82K downloaded (xml-resolver-1.2.jar)
418K downloaded (emma-2.0.5312.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/geronimo/specs/geronimo-activation_1.1_spec/1.0.2/geronimo-activation_1.1_spec-1.0.2.jar
95K downloaded (servlet-api-2.4.jar)
280K downloaded (spring-core-2.5.5.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/com/sun/xml/bind/jaxb-impl/2.1.12/jaxb-impl-2.1.12.jar
33K downloaded (geronimo-activation_1.1_spec-1.0.2.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/commons-lang/commons-lang/2.4/commons-lang-2.4.jar
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar
509K downloaded (joda-time-1.4.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/ws/commons/schema/XmlSchema/1.4.5/XmlSchema-1.4.5.jar
37K downloaded (commons-logging-1.0.4.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/wicket/wicket/1.4.3/wicket-1.4.3.jar
142K downloaded (XmlSchema-1.4.5.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/objenesis/objenesis/1.2/objenesis-1.2.jar
847K downloaded (jaxb-impl-2.1.12.jar)
35K downloaded (objenesis-1.2.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/tn-plus/diffatac-rules-lib/0.36.2/diffatac-rules-lib-0.36.2.jar
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/neethi/neethi/2.0.4/neethi-2.0.4.jar
61K downloaded (diffatac-rules-lib-0.36.2.jar)
32K downloaded (neethi-2.0.4.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/cxf/cxf-api/2.2.4/cxf-api-2.2.4.jar
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/xxx/wicket-xxx-contrib/0.4/wicket-xxx-contrib-0.4.jar
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/woodstox/wstx-asl/3.2.8/wstx-asl-3.2.8.jar
255K downloaded (commons-lang-2.4.jar)
1803K downloaded (wicket-1.4.3.jar)
292K downloaded (cxf-api-2.2.4.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/slf4j/slf4j-api/1.5.8/slf4j-api-1.5.8.jar
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/aopalliance/aopalliance/1.0/aopalliance-1.0.jar
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/wsdl4j/wsdl4j/1.6.2/wsdl4j-1.6.2.jar
22K downloaded (slf4j-api-1.5.8.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/com/sun/xml/messaging/saaj/saaj-impl/1.3.2/saaj-impl-1.3.2.jar
4K downloaded (aopalliance-1.0.jar)
511K downloaded (wstx-asl-3.2.8.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/xxx/soundupload-client/0.1.0/soundupload-client-0.1.0.jar
39K downloaded (wicket-xxx-contrib-0.4.jar)
[WARNING] *** CHECKSUM FAILED - Checksum failed on download: local = '1930b57270ff5b22e32f20cc895a07ee4a0e84e6'; remote = 'a16d56474c1ac1496c89aa14cf28bbbd6b457bcc' - RETRYING
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/woodstox/wstx-asl/3.2.8/wstx-asl-3.2.8.jar
271K downloaded (saaj-impl-1.3.2.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/temmental/temmental/1.0.25/temmental-1.0.25.jar
11K downloaded (soundupload-client-0.1.0.jar)
[INFO] Unable to find resource 'temmental:temmental:jar:1.0.25' in repository maven-projects (http://xxx.xxx.xxx/nexus/content/repositories/xxx-public/)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/temmental/temmental/1.0.25/temmental-1.0.25.jar
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/cglib/cglib/2.2/cglib-2.2.jar
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/javax/xml/soap/saaj-api/1.3/saaj-api-1.3.jar
[INFO] Unable to find resource 'temmental:temmental:jar:1.0.25' in repository xxx-maven2-repository (http://xxx.xxx.xxx/nexus/content/groups/public)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/temmental/jars/temmental-1.0.25.jar
511K downloaded (wstx-asl-3.2.8.jar)
18K downloaded (saaj-api-1.3.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/javax/xml/bind/jaxb-api/2.1/jaxb-api-2.1.jar
14K downloaded (temmental-1.0.25.jar)
[WARNING] *** CHECKSUM FAILED - Checksum failed on download: local = '1930b57270ff5b22e32f20cc895a07ee4a0e84e6'; remote = 'a16d56474c1ac1496c89aa14cf28bbbd6b457bcc' - IGNORING
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/asm/asm/3.1/asm-3.1.jar
42K downloaded (asm-3.1.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/log4j/log4j/1.2.7/log4j-1.2.7.jar
87K downloaded (jaxb-api-2.1.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/mysql/mysql-connector-java/5.1.13/mysql-connector-java-5.1.13.jar
272K downloaded (cglib-2.2.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/easymock/easymockclassextension/2.5.2/easymockclassextension-2.5.2.jar
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/springframework/spring-beans/2.5.5/spring-beans-2.5.5.jar
342K downloaded (log4j-1.2.7.jar)
36K downloaded (easymockclassextension-2.5.2.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/geronimo/specs/geronimo-annotation_1.0_spec/1.1.1/geronimo-annotation_1.0_spec-1.1.1.jar
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/tn-plus/diffatac-client/0.34.2/diffatac-client-0.34.2.jar
12K downloaded (geronimo-annotation_1.0_spec-1.1.1.jar)
17K downloaded (diffatac-client-0.34.2.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/wicket/wicket-extensions/1.4.0/wicket-extensions-1.4.0.jar
144K downloaded (wsdl4j-1.6.2.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/cxf/cxf-common-utilities/2.2.4/cxf-common-utilities-2.2.4.jar
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/slf4j/slf4j-log4j12/1.0.1/slf4j-log4j12-1.0.1.jar
13K downloaded (slf4j-log4j12-1.0.1.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/xxx/log4j/1.2.11/log4j-1.2.11.jar
[INFO] Unable to find resource 'xxx:log4j:jar:1.2.11' in repository maven-projects (http://xxx.xxx.xxx/nexus/content/repositories/xxx-public/)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/xxx/log4j/1.2.11/log4j-1.2.11.jar
[INFO] Unable to find resource 'xxx:log4j:jar:1.2.11' in repository xxx-maven2-repository (http://xxx.xxx.xxx/nexus/content/groups/public)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/xxx/jars/log4j-1.2.11.jar
1144K downloaded (wicket-extensions-1.4.0.jar)
283K downloaded (cxf-common-utilities-2.2.4.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/cglib/cglib-nodep/2.2/cglib-nodep-2.2.jar
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/geronimo/specs/geronimo-stax-api_1.0_spec/1.0.1/geronimo-stax-api_1.0_spec-1.0.1.jar
28K downloaded (geronimo-stax-api_1.0_spec-1.0.1.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/wicket/wicket-auth-roles/1.4.0/wicket-auth-roles-1.4.0.jar
314K downloaded (cglib-nodep-2.2.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/cxf/cxf-common-schemas/2.2.4/cxf-common-schemas-2.2.4.jar
333K downloaded (log4j-1.2.11.jar)
37K downloaded (wicket-auth-roles-1.4.0.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/geronimo/specs/geronimo-jaxws_2.1_spec/1.0/geronimo-jaxws_2.1_spec-1.0.jar
46K downloaded (cxf-common-schemas-2.2.4.jar)
46K downloaded (geronimo-jaxws_2.1_spec-1.0.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/wicket/wicket-datetime/1.4.0/wicket-datetime-1.4.0.jar
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/cxf/cxf-rt-frontend-jaxws/2.2.4/cxf-rt-frontend-jaxws-2.2.4.jar
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/geronimo/specs/geronimo-ws-metadata_2.0_spec/1.1.2/geronimo-ws-metadata_2.0_spec-1.1.2.jar
14K downloaded (geronimo-ws-metadata_2.0_spec-1.1.2.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/geronimo/specs/geronimo-javamail_1.4_spec/1.6/geronimo-javamail_1.4_spec-1.6.jar
219K downloaded (wicket-datetime-1.4.0.jar)
200K downloaded (geronimo-javamail_1.4_spec-1.6.jar)
749K downloaded (mysql-connector-java-5.1.13.jar)
474K downloaded (spring-beans-2.5.5.jar)
288K downloaded (cxf-rt-frontend-jaxws-2.2.4.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/springframework/spring-context/2.5.5/spring-context-2.5.5.jar
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/cxf/cxf-rt-core/2.2.4/cxf-rt-core-2.2.4.jar
462K downloaded (spring-context-2.5.5.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/springframework/spring-web/2.5.5/spring-web-2.5.5.jar
189K downloaded (spring-web-2.5.5.jar)
381K downloaded (cxf-rt-core-2.2.4.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/cxf/cxf-rt-bindings-soap/2.2.4/cxf-rt-bindings-soap-2.2.4.jar
110K downloaded (cxf-rt-bindings-soap-2.2.4.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/cxf/cxf-tools-common/2.2.4/cxf-tools-common-2.2.4.jar
154K downloaded (cxf-tools-common-2.2.4.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/cxf/cxf-rt-databinding-jaxb/2.2.4/cxf-rt-databinding-jaxb-2.2.4.jar
84K downloaded (cxf-rt-databinding-jaxb-2.2.4.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/cxf/cxf-rt-bindings-xml/2.2.4/cxf-rt-bindings-xml-2.2.4.jar
36K downloaded (cxf-rt-bindings-xml-2.2.4.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/cxf/cxf-rt-frontend-simple/2.2.4/cxf-rt-frontend-simple-2.2.4.jar
75K downloaded (cxf-rt-frontend-simple-2.2.4.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/cxf/cxf-rt-ws-addr/2.2.4/cxf-rt-ws-addr-2.2.4.jar
67K downloaded (cxf-rt-ws-addr-2.2.4.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/cxf/cxf-rt-transports-http/2.2.4/cxf-rt-transports-http-2.2.4.jar
172K downloaded (cxf-rt-transports-http-2.2.4.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.pom
601b downloaded (maven-plugin-api-2.0.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven/2.0/maven-2.0.pom
8K downloaded (maven-2.0.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/plexus/plexus-compiler-api/1.5.3/plexus-compiler-api-1.5.3.pom
624b downloaded (plexus-compiler-api-1.5.3.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/plexus/plexus-compiler/1.5.3/plexus-compiler-1.5.3.pom
1K downloaded (plexus-compiler-1.5.3.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/plexus/plexus-components/1.1.6/plexus-components-1.1.6.pom
1K downloaded (plexus-components-1.1.6.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom
7K downloaded (plexus-1.0.8.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom
7K downloaded (plexus-container-default-1.0-alpha-8.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/plexus/plexus-compiler-manager/1.5.3/plexus-compiler-manager-1.5.3.pom
634b downloaded (plexus-compiler-manager-1.5.3.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/plexus/plexus-compiler-javac/1.5.3/plexus-compiler-javac-1.5.3.pom
797b downloaded (plexus-compiler-javac-1.5.3.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/plexus/plexus-compilers/1.5.3/plexus-compilers-1.5.3.pom
7K downloaded (plexus-compilers-1.5.3.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/1.0.5/plexus-utils-1.0.5.pom
918b downloaded (plexus-utils-1.0.5.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-artifact/2.0/maven-artifact-2.0.pom
723b downloaded (maven-artifact-2.0.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.jar
159K downloaded (plexus-utils-1.0.4.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/plexus/plexus-compiler-api/1.5.3/plexus-compiler-api-1.5.3.jar
19K downloaded (plexus-compiler-api-1.5.3.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/plexus/plexus-compiler-manager/1.5.3/plexus-compiler-manager-1.5.3.jar
5K downloaded (plexus-compiler-manager-1.5.3.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/plexus/plexus-compiler-javac/1.5.3/plexus-compiler-javac-1.5.3.jar
13K downloaded (plexus-compiler-javac-1.5.3.jar)
[INFO] [compiler:compile {execution: default-compile}]
[INFO] Nothing to compile - all classes are up to date
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/junit/junit/4.5/junit-4.5.jar
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/mockito/mockito-all/1.8.1/mockito-all-1.8.1.jar
194K downloaded (junit-4.5.jar)
1315K downloaded (mockito-all-1.8.1.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-plugin-api/2.0.4/maven-plugin-api-2.0.4.pom
643b downloaded (maven-plugin-api-2.0.4.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven/2.0.4/maven-2.0.4.pom
11K downloaded (maven-2.0.4.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-project/2.0.4/maven-project-2.0.4.pom
1K downloaded (maven-project-2.0.4.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-settings/2.0.4/maven-settings-2.0.4.pom
1K downloaded (maven-settings-2.0.4.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-model/2.0.4/maven-model-2.0.4.pom
2K downloaded (maven-model-2.0.4.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.pom
767b downloaded (plexus-utils-1.1.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom
1K downloaded (plexus-container-default-1.0-alpha-9.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-profile/2.0.4/maven-profile-2.0.4.pom
1K downloaded (maven-profile-2.0.4.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-artifact-manager/2.0.4/maven-artifact-manager-2.0.4.pom
1K downloaded (maven-artifact-manager-2.0.4.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-repository-metadata/2.0.4/maven-repository-metadata-2.0.4.pom
1K downloaded (maven-repository-metadata-2.0.4.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-artifact/2.0.4/maven-artifact-2.0.4.pom
765b downloaded (maven-artifact-2.0.4.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.pom
588b downloaded (wagon-provider-api-1.0-alpha-6.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6.pom
6K downloaded (wagon-1.0-alpha-6.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/ant/ant-launcher/1.7.1/ant-launcher-1.7.1.pom
2K downloaded (ant-launcher-1.7.1.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/ant/ant-parent/1.7.1/ant-parent-1.7.1.pom
4K downloaded (ant-parent-1.7.1.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/ant/ant/1.7.1/ant-1.7.1.pom
9K downloaded (ant-1.7.1.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/ant/ant-launcher/1.7.1/ant-launcher-1.7.1.jar
11K downloaded (ant-launcher-1.7.1.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/ant/ant/1.7.1/ant-1.7.1.jar
1291K downloaded (ant-1.7.1.jar)
[INFO] [antrun:run {execution: Deploying web resources}]
[INFO] Executing tasks
[echo] Copying html from /home/xxx/workspace/3900-ihmadm-webapp/src/test/java to
[echo] /home/xxx/workspace/3900-ihmadm-webapp/target/test-classes
[copy] Copying 1 file to /home/xxx/workspace/3900-ihmadm-webapp/target/test-classes
[INFO] Executed tasks
[INFO] [resources:testResources {execution: default-testResources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/xxx/workspace/3900-ihmadm-webapp/src/test/resources
[INFO] [compiler:testCompile {execution: default-testCompile}]
[INFO] Nothing to compile - all classes are up to date
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/mortbay/jetty/jetty-plus/6.1.6/jetty-plus-6.1.6.pom
4K downloaded (jetty-plus-6.1.6.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/mortbay/jetty/project/6.1.6/project-6.1.6.pom
11K downloaded (project-6.1.6.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/geronimo-spec/geronimo-spec-jta/1.0.1B-rc4/geronimo-spec-jta-1.0.1B-rc4.pom
169b downloaded (geronimo-spec-jta-1.0.1B-rc4.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/mortbay/jetty/jetty-naming/6.1.6/jetty-naming-6.1.6.pom
5K downloaded (jetty-naming-6.1.6.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/javax/mail/mail/1.4/mail-1.4.pom
993b downloaded (mail-1.4.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/mortbay/jetty/jetty/6.1.26/jetty-6.1.26.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/mortbay/jetty/jetty-util/6.1.26/jetty-util-6.1.26.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.pom
2K downloaded (servlet-api-2.5-20081211.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/mortbay/jetty/jetty-parent/7/jetty-parent-7.pom
12K downloaded (jetty-parent-7.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-project/2.0.3/maven-project-2.0.3.pom
1K downloaded (maven-project-2.0.3.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven/2.0.3/maven-2.0.3.pom
14K downloaded (maven-2.0.3.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-settings/2.0.3/maven-settings-2.0.3.pom
1K downloaded (maven-settings-2.0.3.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-model/2.0.3/maven-model-2.0.3.pom
2K downloaded (maven-model-2.0.3.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/junit/junit/3.8.2/junit-3.8.2.pom
747b downloaded (junit-3.8.2.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-profile/2.0.3/maven-profile-2.0.3.pom
1K downloaded (maven-profile-2.0.3.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-artifact-manager/2.0.3/maven-artifact-manager-2.0.3.pom
1K downloaded (maven-artifact-manager-2.0.3.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-repository-metadata/2.0.3/maven-repository-metadata-2.0.3.pom
1K downloaded (maven-repository-metadata-2.0.3.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-artifact/2.0.3/maven-artifact-2.0.3.pom
765b downloaded (maven-artifact-2.0.3.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-plugin-api/2.0.3/maven-plugin-api-2.0.3.pom
643b downloaded (maven-plugin-api-2.0.3.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-plugin-tools-api/2.0/maven-plugin-tools-api-2.0.pom
865b downloaded (maven-plugin-tools-api-2.0.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-plugin-tools/2.0/maven-plugin-tools-2.0.pom
536b downloaded (maven-plugin-tools-2.0.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-project/2.0/maven-project-2.0.pom
1K downloaded (maven-project-2.0.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-plugin-descriptor/2.0/maven-plugin-descriptor-2.0.pom
1K downloaded (maven-plugin-descriptor-2.0.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/mortbay/jetty/jetty-management/6.1.26/jetty-management-6.1.26.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/mortbay/jetty/jsp-2.1-jetty/6.1.26/jsp-2.1-jetty-6.1.26.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/eclipse/jdt/core/3.1.1/core-3.1.1.pom
677b downloaded (core-3.1.1.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/mortbay/jetty/jsp-api-2.1-glassfish/2.1.v20091210/jsp-api-2.1-glassfish-2.1.v20091210.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/mortbay/jetty/jetty-jsp/2.1.v20091210/jetty-jsp-2.1.v20091210.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org.mortbay.jetty/poms/jetty-parent-8.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-parent:pom:8' in repository dev.java.net (http://download.java.net/maven/1)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/mortbay/jetty/jetty-parent/8/jetty-parent-8.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org.eclipse.jetty/poms/jetty-parent-9.pom
[INFO] Unable to find resource 'org.eclipse.jetty:jetty-parent:pom:9' in repository dev.java.net (http://download.java.net/maven/1)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/eclipse/jetty/jetty-parent/9/jetty-parent-9.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/mortbay/jetty/jsp-2.1-glassfish/2.1.v20091210/jsp-2.1-glassfish-2.1.v20091210.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/eclipse/jdt/core/compiler/ecj/3.5.1/ecj-3.5.1.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/ant/ant/1.6.5/ant-1.6.5.pom
764b downloaded (ant-1.6.5.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/mortbay/jetty/jetty-annotations/6.1.26/jetty-annotations-6.1.26.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/mortbay/jetty/jetty-plus/6.1.26/jetty-plus-6.1.26.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/geronimo/specs/geronimo-annotation_1.0_spec/1.0/geronimo-annotation_1.0_spec-1.0.pom
878b downloaded (geronimo-annotation_1.0_spec-1.0.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/geronimo/specs/specs/1.2/specs-1.2.pom
2K downloaded (specs-1.2.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/mortbay/jetty/start/6.1.26/start-6.1.26.pom

Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom
6K downloaded (plexus-utils-1.5.15.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom
11K downloaded (plexus-2.0.2.pom)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.jar
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/mortbay/jetty/jetty-plus/6.1.6/jetty-plus-6.1.6.jar
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/maven/maven-plugin-tools-api/2.0/maven-plugin-tools-api-2.0.jar
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/apache/geronimo/specs/geronimo-annotation_1.0_spec/1.0/geronimo-annotation_1.0_spec-1.0.jar
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/eclipse/jdt/core/compiler/ecj/3.5.1/ecj-3.5.1.jar
11K downloaded (geronimo-annotation_1.0_spec-1.0.jar)
56K downloaded (jetty-plus-6.1.6.jar)
22K downloaded (maven-plugin-tools-api-2.0.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/ant/ant/1.6.5/ant-1.6.5.jar
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/javax/mail/mail/1.4/mail-1.4.jar
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/geronimo-spec/geronimo-spec-jta/1.0.1B-rc4/geronimo-spec-jta-1.0.1B-rc4.jar
222K downloaded (plexus-utils-1.5.15.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/eclipse/jdt/core/3.1.1/core-3.1.1.jar
13K downloaded (geronimo-spec-jta-1.0.1B-rc4.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/mortbay/jetty/jetty-naming/6.1.6/jetty-naming-6.1.6.jar
27K downloaded (jetty-naming-6.1.6.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/mortbay/jetty/jetty/6.1.26/jetty-6.1.26.jar
379K downloaded (mail-1.4.jar)
1635K downloaded (ecj-3.5.1.jar)
1009K downloaded (ant-1.6.5.jar)
527K downloaded (jetty-6.1.26.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/mortbay/jetty/jetty-util/6.1.26/jetty-util-6.1.26.jar
172K downloaded (jetty-util-6.1.26.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.jar
130K downloaded (servlet-api-2.5-20081211.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/mortbay/jetty/jetty-management/6.1.26/jetty-management-6.1.26.jar
34K downloaded (jetty-management-6.1.26.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/mortbay/jetty/jsp-2.1-jetty/6.1.26/jsp-2.1-jetty-6.1.26.jar
4K downloaded (jsp-2.1-jetty-6.1.26.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/mortbay/jetty/jsp-api-2.1-glassfish/2.1.v20091210/jsp-api-2.1-glassfish-2.1.v20091210.jar
3483K downloaded (core-3.1.1.jar)
132K downloaded (jsp-api-2.1-glassfish-2.1.v20091210.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/mortbay/jetty/jsp-2.1-glassfish/2.1.v20091210/jsp-2.1-glassfish-2.1.v20091210.jar
1002K downloaded (jsp-2.1-glassfish-2.1.v20091210.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/mortbay/jetty/jetty-annotations/6.1.26/jetty-annotations-6.1.26.jar
12K downloaded (jetty-annotations-6.1.26.jar)
Downloading: http://xxx.xxx.xxx/nexus/content/groups/public/org/mortbay/jetty/start/6.1.26/start-6.1.26.jar
16K downloaded (start-6.1.26.jar)
[INFO] [jetty:run {execution: default-cli}]


Vous n'aviez vraiment rien de mieux à faire que de lire tout ça ? ;)