IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

GWT et Vaadin Java Discussion :

Problème de compilation Maven après GWT, nouveaux fichiers écrasés


Sujet :

GWT et Vaadin Java

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre confirmé
    Profil pro
    Inscrit en
    Janvier 2011
    Messages
    92
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2011
    Messages : 92
    Par défaut Problème de compilation Maven après GWT, nouveaux fichiers écrasés
    Bonsoir,

    je suis perdu depuis hier soir avec mon projet gwt,

    si je l'utilise en mode hosted avec eclipse, tout va bien, je peux aussi le compiler sans problème, générer un war etc...

    Entre temps j'ai modifié un menu sur une page et un peu de texte, en mode hosted je peux le voir et utiliser le menu, mais si je le lance sur tomcat dans un premier temps (pour mes ejbs), la page qui s'affiche n'est pas à jour. En revanche si par dessus je lance l'appli gwt en mode external server, je vois effectivement mes modifications...

    J'ai cherché partout dans les fichiers, notamment les fichiers utilisés par le serveur tomcat dans workspace\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps\webapp et le contenu mis à jour est bien là...

    J'ai beau recompiler le projet avec maven, refaire la compilation gwt de la partie web, vider le cache de firefox/ie, faire un clean du projet aucune de mes modifications n'apparait.


    En écrivant ce message je me rends compte que le fichier webapp.nocache.js quant à lui date de la veille, j'imagine que mon problème vient de là, mais je ne comprends pas pourquoi ce fichier n'est pas actualisé comme les autres...

    En passant je vois aussi différents fichiers dans le dossier racine de l'appli (à coté de web-inf) avec pleins de lettres et se terminant par .cache.html et .cache.png, je ne sais pas si ça a un rapport avec mon pb ni ce qu'ils font là, mais j'aimerais bien comprendre ce qu'il se passe.

  2. #2
    Membre confirmé
    Profil pro
    Inscrit en
    Janvier 2011
    Messages
    92
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2011
    Messages : 92
    Par défaut
    J'ai avancé un poil dans mon pb sans pour autant trouver comment le résoudre, mais le problème vient a priori de maven :

    si je fais d'abord une compilation gwt, le fichier monappli.nocache.js est mis à jour (je le vois au niveau de la date du fichier)

    si ensuite je lance "package" et/ou "install" via le plugin eclipse, je me retrouve avec mon ancien fichier...

    Du coup ca doit être plus simple à dépanner mais je ne sais pas du tout quoi faire... please help !

  3. #3
    Membre expérimenté
    Avatar de karbos
    Inscrit en
    Novembre 2008
    Messages
    155
    Détails du profil
    Informations forums :
    Inscription : Novembre 2008
    Messages : 155
    Par défaut
    Je ne comprends pas bien ton problème, est-ce que tu peux essayer de supprimer tous les fichiers *nocache.js" de ton Workspace et relancer la compilation avec la commande :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    mvn clean compile -e gwt:run -e
    Est-ce que ça change quelque chose ? As-tu un messages d'erreur intéressant ?

  4. #4
    Membre confirmé
    Profil pro
    Inscrit en
    Janvier 2011
    Messages
    92
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2011
    Messages : 92
    Par défaut
    J'ai essayé cette commande, mais d'avance je sais que ça ne résoudra pas le problème, le projet se compile bien, et se lance correctement en mode hosted.

    Mon soucis est en mode external, j'ai besoin de packager le projet en war, mais suite à cette opération le fichier webapp.nocache.js est écrasé (alors que la compilation en génère bien un nouveau), je vais chercher d'où peut bien sortir ce vieux fichier mais je ne vois pas d'où peut venir ce pb, n'ayant pas modifié mes pom (sauf une lib de logging...), ça ne fait aucun sens pour moi.

  5. #5
    Membre confirmé
    Profil pro
    Inscrit en
    Janvier 2011
    Messages
    92
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2011
    Messages : 92
    Par défaut
    J'avance un peu, en cherchant ce fichier dans mon workspace, je trouve les 2 versions, l'une datant du 6, l'autre que je viens de compiler et datant donc du 8, d'après un commentaire dans le pom je vois que des fichiers statiques sont sensés être copiés avant d'être packagés, mais cela fonctionnait visiblement bien au début et je n'y ai pas touché.


    Je détaille complètement mes actions du coup :

    mvn clean OK
    project clean OK (celui d'eclipse)
    gwt compile OK, je retrouve dans le dossier target mes fichiers générés (le .js notamment)
    mvn compile PB -> dans mon dossier target reviennent les anciens fichiers
    et déjà là c'est pas la peine d'aller jusqu'à tomcat

    si je saute l'étape gwt compile j'ai le même résultat, mais ca je pense que de tte facon c'est pas la bonne manière, ça doit venir de la config du pom.

    Je vous mets la trace de mvn compile -X (en virant les ligne des dépendances là où j'ai mis [...]), visiblement il y a des copies effectuées mais je ne sais pas quoi en faire... et surtout à mon avis les copies ne se font pas dans le bon sens mais je sais pas quoi changer (j'utilise à la base l'archetype gwt-maven-plugin en version 2.4.0)

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    Apache Maven 3.0.4 (r1232337; 2012-01-17 09:44:56+0100)
    Maven home: F:\prog\bacasable\com.myapp\com.myapp.webapp\EMBEDDED
    Java version: 1.7.0_07, vendor: Oracle Corporation
    Java home: C:\Program Files (x86)\Java\jdk1.7.0_07\jre
    Default locale: fr_FR, platform encoding: UTF-8
    OS name: "windows 7", version: "6.1", arch: "x86", family: "windows"
    SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
    SLF4J: Defaulting to no-operation (NOP) logger implementation
    SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
    [INFO] Error stacktraces are turned on.
    [DEBUG] Reading global settings from EMBEDDED\conf\settings.xml
    [DEBUG] Reading user settings from C:\Users\Gab'z\.m2\settings.xml
    [DEBUG] Using local repository at C:\Users\Gab'z\.m2\repository
    [DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10 for C:\Users\Gab'z\.m2\repository
    [INFO] Scanning for projects...
    [DEBUG] Extension realms for project com.myapp:com.myapp.webapp:war:0.0.1-SNAPSHOT: (none)
    [DEBUG] Looking up lifecyle mappings for packaging war from ClassRealm[plexus.core, parent: null]
    [DEBUG] === REACTOR BUILD PLAN ================================================
    [DEBUG] Project: com.myapp:com.myapp.webapp:war:0.0.1-SNAPSHOT
    [DEBUG] Tasks:   [compile]
    [DEBUG] Style:   Regular
    [DEBUG] =======================================================================
    [INFO]                                                                         
    [INFO] ------------------------------------------------------------------------
    [INFO] Building GWT Maven Archetype 0.0.1-SNAPSHOT
    [INFO] ------------------------------------------------------------------------
    [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
    [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
    [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
    [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
    [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
    [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
    [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
    [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
    [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
    [DEBUG] === PROJECT BUILD PLAN ================================================
    [DEBUG] Project:       com.myapp:com.myapp.webapp:0.0.1-SNAPSHOT
    [DEBUG] Dependencies (collect): []
    [DEBUG] Dependencies (resolve): [compile, runtime]
    [DEBUG] Repositories (dependencies): [central (http://repo.maven.apache.org/maven2, releases)]
    [DEBUG] Repositories (plugins)     : [central (http://repo.maven.apache.org/maven2, releases)]
    [DEBUG] -----------------------------------------------------------------------
    [DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.5:resources (default-resources)
    [DEBUG] Style:         Regular
    [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
    <configuration>
      <buildFilters default-value="${project.build.filters}"/>
      <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
      <escapeString>${maven.resources.escapeString}</escapeString>
      <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
      <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
      <outputDirectory default-value="${project.build.outputDirectory}"/>
      <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
      <project default-value="${project}"/>
      <resources default-value="${project.resources}"/>
      <session default-value="${session}"/>
      <supportMultiLineFiltering default-value="false">${maven.resources.supportMultiLineFiltering}</supportMultiLineFiltering>
      <useBuildFilters default-value="true"/>
      <useDefaultDelimiters default-value="true"/>
    </configuration>
    [DEBUG] -----------------------------------------------------------------------
    [DEBUG] Goal:          org.apache.maven.plugins:maven-compiler-plugin:2.5.1:compile (default-compile)
    [DEBUG] Style:         Regular
    [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
    <configuration>
      <basedir default-value="${basedir}"/>
      <buildDirectory default-value="${project.build.directory}"/>
      <classpathElements default-value="${project.compileClasspathElements}"/>
      <compileSourceRoots default-value="${project.compileSourceRoots}"/>
      <compilerId default-value="javac">${maven.compiler.compilerId}</compilerId>
      <compilerReuseStrategy default-value="${reuseCreated}">${maven.compiler.compilerReuseStrategy}</compilerReuseStrategy>
      <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
      <debug default-value="true">${maven.compiler.debug}</debug>
      <debuglevel>${maven.compiler.debuglevel}</debuglevel>
      <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
      <executable>${maven.compiler.executable}</executable>
      <failOnError default-value="true">${maven.compiler.failOnError}</failOnError>
      <fork default-value="false">${maven.compiler.fork}</fork>
      <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
      <maxmem>${maven.compiler.maxmem}</maxmem>
      <meminitial>${maven.compiler.meminitial}</meminitial>
      <optimize default-value="false">${maven.compiler.optimize}</optimize>
      <outputDirectory default-value="${project.build.outputDirectory}"/>
      <outputFileName>${project.build.finalName}</outputFileName>
      <projectArtifact default-value="${project.artifact}"/>
      <session default-value="${session}"/>
      <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
      <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
      <skipMultiThreadWarning default-value="${false}">${maven.compiler.skipMultiThreadWarning}</skipMultiThreadWarning>
      <source default-value="1.5">1.7</source>
      <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
      <target default-value="1.5">1.7</target>
      <verbose default-value="false">${maven.compiler.verbose}</verbose>
    </configuration>
    [DEBUG] -----------------------------------------------------------------------
    [DEBUG] Goal:          org.apache.maven.plugins:maven-war-plugin:2.3:exploded (default)
    [DEBUG] Style:         Regular
    [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
    <configuration>
      <archiveClasses default-value="false">${archiveClasses}</archiveClasses>
      <cacheFile default-value="${project.build.directory}/war/work/webapp-cache.xml"/>
      <classesDirectory default-value="${project.build.outputDirectory}"/>
      <containerConfigXML>${maven.war.containerConfigXML}</containerConfigXML>
      <escapeString>${maven.war.escapeString}</escapeString>
      <escapedBackslashesInFilePath default-value="false">${maven.war.escapedBackslashesInFilePath}</escapedBackslashesInFilePath>
      <filteringDeploymentDescriptors default-value="false">${maven.war.filteringDeploymentDescriptors}</filteringDeploymentDescriptors>
      <recompressZippedFiles default-value="false"/>
      <resourceEncoding default-value="${project.build.sourceEncoding}">${resourceEncoding}</resourceEncoding>
      <useCache default-value="false">${useCache}</useCache>
      <warSourceDirectory default-value="${basedir}/src/main/webapp"/>
      <warSourceIncludes default-value="**"/>
      <webXml>${maven.war.webxml}</webXml>
      <webappDirectory default-value="${project.build.directory}/${project.build.finalName}">F:\prog\bacasable\com.myapp\com.myapp.webapp\target/com.myapp.webapp-0.0.1-SNAPSHOT</webappDirectory>
      <workDirectory default-value="${project.build.directory}/war/work"/>
      <project default-value="${project}"/>
      <session default-value="${session}"/>
    </configuration>
    [DEBUG] =======================================================================
    [DEBUG] com.myapp:com.myapp.webapp:war:0.0.1-SNAPSHOT
    [DEBUG]    com.google.gwt:gwt-servlet:jar:2.4.0:runtime
    [DEBUG]    com.google.gwt:gwt-user:jar:2.4.0:provided
    [DEBUG]    com.googlecode.mvp4g:mvp4g:jar:1.4.0:compile
    [DEBUG]       com.google.gwt.inject:gin:jar:1.5.0:compile
    [DEBUG]          com.google.inject:guice:jar:3.0-rc2:compile
    [DEBUG]             javax.inject:javax.inject:jar:1:compile
    [DEBUG]             aopalliance:aopalliance:jar:1.0:compile
    [DEBUG]          com.google.inject.extensions:guice-assistedinject:jar:3.0-rc2:compile
    [DEBUG]    net.sf.dozer:dozer:jar:5.3.2:compile
     
    [...]
     
    [DEBUG]    ch.qos.logback:logback-core:jar:1.0.7:compile
    [INFO] 
    [INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ com.myapp.webapp ---
    [DEBUG] Created new class realm maven.api
    [DEBUG] Importing foreign packages into class realm maven.api
    [DEBUG]   Imported: org.apache.maven.wagon.events < plexus.core
     
    [...]
     
    [DEBUG]   Imported: org.codehaus.plexus.personality < plexus.core
    [DEBUG] Populating class realm maven.api
    [DEBUG] org.apache.maven.plugins:maven-resources-plugin:jar:2.5:
    [DEBUG]    org.apache.maven:maven-plugin-api:jar:2.0.6:compile
    [DEBUG]    org.apache.maven:maven-project:jar:2.0.6:compile
    [DEBUG]       org.apache.maven:maven-profile:jar:2.0.6:compile
    [DEBUG]       org.apache.maven:maven-artifact-manager:jar:2.0.6:compile
    [DEBUG]       org.apache.maven:maven-plugin-registry:jar:2.0.6:compile
    [DEBUG]    org.apache.maven:maven-core:jar:2.0.6:compile
    [DEBUG]       org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.6:compile
    [DEBUG]       org.apache.maven.reporting:maven-reporting-api:jar:2.0.6:compile
    [DEBUG]          org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7:compile
    [DEBUG]       org.apache.maven:maven-repository-metadata:jar:2.0.6:compile
    [DEBUG]       org.apache.maven:maven-error-diagnostics:jar:2.0.6:compile
    [DEBUG]       commons-cli:commons-cli:jar:1.0:compile
    [DEBUG]       org.apache.maven:maven-plugin-descriptor:jar:2.0.6:compile
    [DEBUG]       org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile
    [DEBUG]       classworlds:classworlds:jar:1.1:compile
    [DEBUG]    org.apache.maven:maven-artifact:jar:2.0.6:compile
    [DEBUG]    org.apache.maven:maven-settings:jar:2.0.6:compile
    [DEBUG]    org.apache.maven:maven-model:jar:2.0.6:compile
    [DEBUG]    org.apache.maven:maven-monitor:jar:2.0.6:compile
    [DEBUG]    org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
    [DEBUG]       junit:junit:jar:3.8.1:compile
    [DEBUG]    org.codehaus.plexus:plexus-utils:jar:2.0.5:compile
    [DEBUG]    org.apache.maven.shared:maven-filtering:jar:1.0:compile
    [DEBUG]       org.sonatype.plexus:plexus-build-api:jar:0.0.4:compile
    [DEBUG]    org.codehaus.plexus:plexus-interpolation:jar:1.13:compile
    [DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.5
    [DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.5
    [DEBUG]   Imported:  < maven.api
    [DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.5
    [DEBUG]   Included: org.apache.maven.plugins:maven-resources-plugin:jar:2.5
    [DEBUG]   Included: org.apache.maven.reporting:maven-reporting-api:jar:2.0.6
    [DEBUG]   Included: org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7
    [DEBUG]   Included: commons-cli:commons-cli:jar:1.0
    [DEBUG]   Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4
    [DEBUG]   Included: junit:junit:jar:3.8.1
    [DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:2.0.5
    [DEBUG]   Included: org.apache.maven.shared:maven-filtering:jar:1.0
    [DEBUG]   Included: org.sonatype.plexus:plexus-build-api:jar:0.0.4
    [DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.13
    [DEBUG]   Excluded: org.apache.maven:maven-plugin-api:jar:2.0.6
    [DEBUG]   Excluded: org.apache.maven:maven-project:jar:2.0.6
    [DEBUG]   Excluded: org.apache.maven:maven-profile:jar:2.0.6
    [DEBUG]   Excluded: org.apache.maven:maven-artifact-manager:jar:2.0.6
    [DEBUG]   Excluded: org.apache.maven:maven-plugin-registry:jar:2.0.6
    [DEBUG]   Excluded: org.apache.maven:maven-core:jar:2.0.6
    [DEBUG]   Excluded: org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.6
    [DEBUG]   Excluded: org.apache.maven:maven-repository-metadata:jar:2.0.6
    [DEBUG]   Excluded: org.apache.maven:maven-error-diagnostics:jar:2.0.6
    [DEBUG]   Excluded: org.apache.maven:maven-plugin-descriptor:jar:2.0.6
    [DEBUG]   Excluded: classworlds:classworlds:jar:1.1
    [DEBUG]   Excluded: org.apache.maven:maven-artifact:jar:2.0.6
    [DEBUG]   Excluded: org.apache.maven:maven-settings:jar:2.0.6
    [DEBUG]   Excluded: org.apache.maven:maven-model:jar:2.0.6
    [DEBUG]   Excluded: org.apache.maven:maven-monitor:jar:2.0.6
    [DEBUG]   Excluded: org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1
    [DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.5:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.5, parent: sun.misc.Launcher$AppClassLoader@16930e2]
    [debug] execute contextualize
    [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.5:resources' with basic configurator -->
    [DEBUG]   (f) buildFilters = []
    [DEBUG]   (f) encoding = UTF-8
    [DEBUG]   (f) escapeWindowsPaths = true
    [DEBUG]   (s) includeEmptyDirs = false
    [DEBUG]   (s) outputDirectory = F:\prog\bacasable\com.myapp\com.myapp.webapp\target\com.myapp.webapp-0.0.1-SNAPSHOT\WEB-INF\classes
    [DEBUG]   (s) overwrite = false
    [DEBUG]   (f) project = MavenProject: com.myapp:com.myapp.webapp:0.0.1-SNAPSHOT @ F:\prog\bacasable\com.myapp\com.myapp.webapp\pom.xml
    [DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: F:\prog\bacasable\com.myapp\com.myapp.webapp\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
    [DEBUG]   (f) session = org.apache.maven.execution.MavenSession@11dfaf2
    [DEBUG]   (f) supportMultiLineFiltering = false
    [DEBUG]   (f) useBuildFilters = true
    [DEBUG]   (s) useDefaultDelimiters = true
    [DEBUG] -- end configuration --
    [DEBUG] properties used {java.vendor=Oracle Corporation, env.SYSTEMROOT=C:\Windows, sun.java.launcher=SUN_STANDARD, sun.management.compiler=HotSpot Client Compiler, os.name=Windows 7, env.FP_NO_HOST_CHECK=NO, sun.boot.class.path=C:\Program Files (x86)\Java\jdk1.7.0_07\jre\lib\resources.jar;C:\Program Files (x86)\Java\jdk1.7.0_07\jre\lib\rt.jar;C:\Program Files (x86)\Java\jdk1.7.0_07\jre\lib\sunrsasign.jar;C:\Program Files (x86)\Java\jdk1.7.0_07\jre\lib\jsse.jar;C:\Program Files (x86)\Java\jdk1.7.0_07\jre\lib\jce.jar;C:\Program Files (x86)\Java\jdk1.7.0_07\jre\lib\charsets.jar;C:\Program Files (x86)\Java\jdk1.7.0_07\jre\lib\jfr.jar;C:\Program Files (x86)\Java\jdk1.7.0_07\jre\classes, project.build.sourceencoding=UTF-8, env.COMPUTERNAME=GABZ-PC, env.ALLUSERSPROFILE=C:\ProgramData, sun.desktop=windows, java.vm.specification.vendor=Oracle Corporation, java.runtime.version=1.7.0_07-b11, env.HOMEPATH=\Users\Gab'z, project.build.sourceEncoding=UTF-8, webappDirectory=F:\prog\bacasable\com.myapp\com.myapp.webapp\target/com.myapp.webapp-0.0.1-SNAPSHOT, user.name=Gab'z, maven.build.version=Apache Maven 3.0.4 (r1232337; 2012-01-17 09:44:56+0100), env.WINDOWS_TRACING_FLAGS=3, env.PATH=C:\oraclexe\app\oracle\product\11.2.0\server\bin;;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files\Java\jdk1.7.0_07\bin;C:\Users\Gab'z\Desktop\apache-maven-3.0.4\apache-maven\src\bin;F:\prog\apache-tomee-plus-1.0.0\bin;C:\Users\Gab'z\Desktop\apache-maven-3.0.4\apache-maven\src;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\, user.language=fr, env.WINDIR=C:\Windows, sun.boot.library.path=C:\Program Files (x86)\Java\jdk1.7.0_07\jre\bin, classworlds.conf=F:\prog\bacasable\.metadata\.plugins\org.eclipse.m2e.core\launches\m2conf1197446839825640513.tmp, java.version=1.7.0_07, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 42 Stepping 7, GenuineIntel, user.timezone=Europe/Paris, env.TEMP=C:\Users\Gab'z\AppData\Local\Temp, sun.arch.data.model=32, env.WINDOWS_TRACING_LOGFILE=C:\BVTBin\Tests\installpackage\csilogfile.log, java.endorsed.dirs=C:\Program Files (x86)\Java\jdk1.7.0_07\jre\lib\endorsed, env.PROCESSOR_ARCHITEW6432=AMD64, sun.cpu.isalist=pentium_pro+mmx pentium_pro pentium+mmx pentium i486 i386 i86, env.HOMEDRIVE=C:, sun.jnu.encoding=Cp1252, file.encoding.pkg=sun.io, env.SYSTEMDRIVE=C:, file.separator=\, java.specification.name=Java Platform API Specification, env.APACHE_MAVEN=C:\Users\Gab'z\Desktop\apache-maven-3.0.4\apache-maven\src, java.class.version=51.0, user.country=FR, java.home=C:\Program Files (x86)\Java\jdk1.7.0_07\jre, env.APPDATA=C:\Users\Gab'z\AppData\Roaming, env.PUBLIC=C:\Users\Public, java.vm.info=mixed mode, sharing, env.OS=Windows_NT, os.version=6.1, gwtVersion=2.4.0, env.=::=::\, path.separator=;, java.vm.version=23.3-b01, env.USERPROFILE=C:\Users\Gab'z, user.variant=, env.JAVA_HOME=C:\Program Files\Java\jdk1.7.0_07, java.awt.printerjob=sun.awt.windows.WPrinterJob, env.TMP=C:\Users\Gab'z\AppData\Local\Temp, env.PROGRAMFILES=C:\Program Files (x86), sun.io.unicode.encoding=UnicodeLittle, awt.toolkit=sun.awt.windows.WToolkit, user.script=, user.home=C:\Users\Gab'z, env.COMMONPROGRAMFILES=C:\Program Files (x86)\Common Files, env.SESSIONNAME=Console, java.specification.vendor=Oracle Corporation, env.M2_HOME=C:\Users\Gab'z\Desktop\apache-maven-3.0.4\apache-maven\src, env.NUMBER_OF_PROCESSORS=8, java.library.path=C:\Program Files (x86)\Java\jdk1.7.0_07\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\oraclexe\app\oracle\product\11.2.0\server\bin;;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files\Java\jdk1.7.0_07\bin;C:\Users\Gab'z\Desktop\apache-maven-3.0.4\apache-maven\src\bin;F:\prog\apache-tomee-plus-1.0.0\bin;C:\Users\Gab'z\Desktop\apache-maven-3.0.4\apache-maven\src;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;., java.vendor.url=http://java.oracle.com/, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.PSMODULEPATH=C:\Windows\system32\WindowsPowerShell\v1.0\Modules\, java.vm.vendor=Oracle Corporation, maven.home=F:\prog\bacasable\com.myapp\com.myapp.webapp\EMBEDDED, java.runtime.name=Java(TM) SE Runtime Environment, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher -B compile -X, java.class.path=/F:/prog/eclipse/configuration/org.eclipse.osgi/bundles/814/1/.cp/jars/plexus-classworlds-2.4.jar, env.PROGRAMW6432=C:\Program Files, maven.version=3.0.4, env.PROGRAMFILES(X86)=C:\Program Files (x86), java.vm.specification.name=Java Virtual Machine Specification, env.LOGONSERVER=\\GABZ-PC, java.vm.specification.version=1.7, env.PROCESSOR_ARCHITECTURE=x86, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, sun.cpu.endian=little, sun.os.patch.level=Service Pack 1, env.HOME=C:\Users\Gab'z, env.APACHE_TOMEE=F:\prog\apache-tomee-plus-1.0.0, env.PROCESSOR_REVISION=2a07, java.io.tmpdir=C:\Users\Gab'z\AppData\Local\Temp\, java.vendor.url.bug=http://bugreport.sun.com/bugreport/, env.M3_HOME=C:\Users\Gab'z\Desktop\apache-maven-3.0.4\apache-maven\src, env.PROGRAMDATA=C:\ProgramData, env.COMSPEC=C:\Windows\system32\cmd.exe, os.arch=x86, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, java.ext.dirs=C:\Program Files (x86)\Java\jdk1.7.0_07\jre\lib\ext;C:\Windows\Sun\Java\lib\ext, env.LOCALAPPDATA=C:\Users\Gab'z\AppData\Local, user.dir=F:\prog\bacasable\com.myapp\com.myapp.webapp, line.separator=
    , java.vm.name=Java HotSpot(TM) Client VM, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, env.USERNAME=Gab'z, file.encoding=UTF-8, env.USERDOMAIN=Gabz-PC, java.specification.version=1.7, env.PROCESSOR_LEVEL=6}
    [INFO] Using 'UTF-8' encoding to copy filtered resources.
    [DEBUG] resource with targetPath null
    directory F:\prog\bacasable\com.myapp\com.myapp.webapp\src\main\resources
    excludes []
    includes []
    [DEBUG] ignoreDelta true
    [INFO] Copying 5 resources
    [DEBUG] file Messages.properties has a filtered file extension
    [DEBUG] copy F:\prog\bacasable\com.myapp\com.myapp.webapp\src\main\resources\com\myapp\webapp\client\Messages.properties to F:\prog\bacasable\com.myapp\com.myapp.webapp\target\com.myapp.webapp-0.0.1-SNAPSHOT\WEB-INF\classes\com\myapp\webapp\client\Messages.properties
    [DEBUG] file Messages_fr.properties has a filtered file extension
    [DEBUG] copy F:\prog\bacasable\com.myapp\com.myapp.webapp\src\main\resources\com\myapp\webapp\client\Messages_fr.properties to F:\prog\bacasable\com.myapp\com.myapp.webapp\target\com.myapp.webapp-0.0.1-SNAPSHOT\WEB-INF\classes\com\myapp\webapp\client\Messages_fr.properties
    [DEBUG] file myapp.gwt.xml has a filtered file extension
    [DEBUG] copy F:\prog\bacasable\com.myapp\com.myapp.webapp\src\main\resources\com\myapp\webapp\myapp.gwt.xml to F:\prog\bacasable\com.myapp\com.myapp.webapp\target\com.myapp.webapp-0.0.1-SNAPSHOT\WEB-INF\classes\com\myapp\webapp\myapp.gwt.xml
    [DEBUG] file dozerBeanMapping.xml has a filtered file extension
    [DEBUG] copy F:\prog\bacasable\com.myapp\com.myapp.webapp\src\main\resources\dozerBeanMapping.xml to F:\prog\bacasable\com.myapp\com.myapp.webapp\target\com.myapp.webapp-0.0.1-SNAPSHOT\WEB-INF\classes\dozerBeanMapping.xml
    [DEBUG] file logback.xml has a filtered file extension
    [DEBUG] copy F:\prog\bacasable\com.myapp\com.myapp.webapp\src\main\resources\logback.xml to F:\prog\bacasable\com.myapp\com.myapp.webapp\target\com.myapp.webapp-0.0.1-SNAPSHOT\WEB-INF\classes\logback.xml
    [DEBUG] no use filter components
    [INFO] 
    [INFO] --- maven-compiler-plugin:2.5.1:compile (default-compile) @ com.myapp.webapp ---
    [DEBUG] org.apache.maven.plugins:maven-compiler-plugin:jar:2.5.1:
    [DEBUG]    org.apache.maven:maven-plugin-api:jar:2.0.9:compile
    [DEBUG]    org.apache.maven:maven-artifact:jar:2.0.9:compile
    [DEBUG]    org.apache.maven:maven-core:jar:2.0.9:compile
    [DEBUG]       org.apache.maven:maven-settings:jar:2.0.9:compile
    [DEBUG]       org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.9:compile
    [DEBUG]       org.apache.maven:maven-profile:jar:2.0.9:compile
    [DEBUG]       org.apache.maven:maven-model:jar:2.0.9:compile
    [DEBUG]       org.apache.maven:maven-repository-metadata:jar:2.0.9:compile
    [DEBUG]       org.apache.maven:maven-error-diagnostics:jar:2.0.9:compile
    [DEBUG]       org.apache.maven:maven-project:jar:2.0.9:compile
    [DEBUG]          org.apache.maven:maven-plugin-registry:jar:2.0.9:compile
    [DEBUG]       org.apache.maven:maven-plugin-descriptor:jar:2.0.9:compile
    [DEBUG]       org.apache.maven:maven-artifact-manager:jar:2.0.9:compile
    [DEBUG]       org.apache.maven:maven-monitor:jar:2.0.9:compile
    [DEBUG]    org.apache.maven:maven-toolchain:jar:1.0:compile
    [DEBUG]    org.codehaus.plexus:plexus-utils:jar:3.0:compile
    [DEBUG]    org.codehaus.plexus:plexus-compiler-api:jar:1.9.1:compile
    [DEBUG]    org.codehaus.plexus:plexus-compiler-manager:jar:1.9.1:compile
    [DEBUG]    org.codehaus.plexus:plexus-compiler-javac:jar:1.9.1:runtime
    [DEBUG]    org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
    [DEBUG]       junit:junit:jar:3.8.1:compile
    [DEBUG]       classworlds:classworlds:jar:1.1-alpha-2:compile
    [DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:2.5.1
    [DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:2.5.1
    [DEBUG]   Imported:  < maven.api
    [DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:2.5.1
    [DEBUG]   Included: org.apache.maven.plugins:maven-compiler-plugin:jar:2.5.1
    [DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.0
    [DEBUG]   Included: org.codehaus.plexus:plexus-compiler-api:jar:1.9.1
    [DEBUG]   Included: org.codehaus.plexus:plexus-compiler-manager:jar:1.9.1
    [DEBUG]   Included: org.codehaus.plexus:plexus-compiler-javac:jar:1.9.1
    [DEBUG]   Included: junit:junit:jar:3.8.1
    [DEBUG]   Excluded: org.apache.maven:maven-plugin-api:jar:2.0.9
    [DEBUG]   Excluded: org.apache.maven:maven-artifact:jar:2.0.9
    [DEBUG]   Excluded: org.apache.maven:maven-core:jar:2.0.9
    [DEBUG]   Excluded: org.apache.maven:maven-settings:jar:2.0.9
    [DEBUG]   Excluded: org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.9
    [DEBUG]   Excluded: org.apache.maven:maven-profile:jar:2.0.9
    [DEBUG]   Excluded: org.apache.maven:maven-model:jar:2.0.9
    [DEBUG]   Excluded: org.apache.maven:maven-repository-metadata:jar:2.0.9
    [DEBUG]   Excluded: org.apache.maven:maven-error-diagnostics:jar:2.0.9
    [DEBUG]   Excluded: org.apache.maven:maven-project:jar:2.0.9
    [DEBUG]   Excluded: org.apache.maven:maven-plugin-registry:jar:2.0.9
    [DEBUG]   Excluded: org.apache.maven:maven-plugin-descriptor:jar:2.0.9
    [DEBUG]   Excluded: org.apache.maven:maven-artifact-manager:jar:2.0.9
    [DEBUG]   Excluded: org.apache.maven:maven-monitor:jar:2.0.9
    [DEBUG]   Excluded: org.apache.maven:maven-toolchain:jar:1.0
    [DEBUG]   Excluded: org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1
    [DEBUG]   Excluded: classworlds:classworlds:jar:1.1-alpha-2
    [DEBUG] Configuring mojo org.apache.maven.plugins:maven-compiler-plugin:2.5.1:compile from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-compiler-plugin:2.5.1, parent: sun.misc.Launcher$AppClassLoader@16930e2]
    [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-compiler-plugin:2.5.1:compile' with basic configurator -->
    [DEBUG]   (f) basedir = F:\prog\bacasable\com.myapp\com.myapp.webapp
    [DEBUG]   (f) buildDirectory = F:\prog\bacasable\com.myapp\com.myapp.webapp\target
    [DEBUG]   (f) classpathElements = [F:\prog\bacasable\com.myapp\com.myapp.webapp\target\com.myapp.webapp-0.0.1-SNAPSHOT\WEB-INF\classes, C:\Users\Gab'z\.m2\repository\com\google\gwt\gwt-user\2.4.0\gwt-user-2.4.0.jar, C:\Users\Gab'z\.m2\repository\com\googlecode\mvp4g\mvp4g\1.4.0\mvp4g-1.4.0.jar, C:\Users\Gab'z\.m2\repository\com\google\gwt\inject\gin\1.5.0\gin-1.5.0.jar, C:\Users\Gab'z\.m2\repository\com\google\inject\guice\3.0-rc2\guice-3.0-rc2.jar, C:\Users\Gab'z\.m2\repository\javax\inject\javax.inject\1\javax.inject-1.jar, C:\Users\Gab'z\.m2\repository\aopalliance\aopalliance\1.0\aopalliance-1.0.jar, C:\Users\Gab'z\.m2\repository\com\google\inject\extensions\guice-assistedinject\3.0-rc2\guice-assistedinject-3.0-rc2.jar, C:\Users\Gab'z\.m2\repository\net\sf\dozer\dozer\5.3.2\dozer-5.3.2.jar, C:\Users\Gab'z\.m2\repository\commons-beanutils\commons-beanutils\1.8.3\commons-beanutils-1.8.3.jar, C:\Users\Gab'z\.m2\repository\commons-logging\commons-logging\1.1.1\commons-logging-1.1.1.jar, C:\Users\Gab'z\.m2\repository\commons-lang\commons-lang\2.5\commons-lang-2.5.jar, C:\Users\Gab'z\.m2\repository\org\slf4j\slf4j-api\1.6.6\slf4j-api-1.6.6.jar, C:\Users\Gab'z\.m2\repository\com\myapp\com.myapp.service\0.0.1-SNAPSHOT\com.myapp.service-0.0.1-SNAPSHOT.jar, C:\Users\Gab'z\.m2\repository\com\myapp\com.myapp.utils\0.0.1-SNAPSHOT\com.myapp.utils-0.0.1-SNAPSHOT.jar, C:\Users\Gab'z\.m2\repository\jline\jline\0.9.94\jline-0.9.94.jar, C:\Users\Gab'z\.m2\repository\org\apache\commons\commons-lang3\3.1\commons-lang3-3.1.jar, C:\Users\Gab'z\.m2\repository\org\apache\openejb\openejb-core\4.0.0\openejb-core-4.0.0.jar, C:\Users\Gab'z\.m2\repository\org\apache\openejb\mbean-annotation-api\4.0.0\mbean-annotation-api-4.0.0.jar, C:\Users\Gab'z\.m2\repository\org\apache\openejb\javaee-api\6.0-3\javaee-api-6.0-3.jar, C:\Users\Gab'z\.m2\repository\org\apache\openejb\openejb-api\4.0.0\openejb-api-4.0.0.jar, C:\Users\Gab'z\.m2\repository\org\apache\openejb\openejb-loader\4.0.0\openejb-loader-4.0.0.jar, C:\Users\Gab'z\.m2\repository\org\apache\openejb\openejb-javaagent\4.0.0\openejb-javaagent-4.0.0.jar, C:\Users\Gab'z\.m2\repository\org\apache\openejb\openejb-jee\4.0.0\openejb-jee-4.0.0.jar, C:\Users\Gab'z\.m2\repository\com\sun\xml\bind\jaxb-impl\2.2.5\jaxb-impl-2.2.5.jar, C:\Users\Gab'z\.m2\repository\commons-cli\commons-cli\1.2\commons-cli-1.2.jar, C:\Users\Gab'z\.m2\repository\org\apache\activemq\kahadb\5.5.1\kahadb-5.5.1.jar, C:\Users\Gab'z\.m2\repository\org\apache\activemq\activemq-ra\5.5.1\activemq-ra-5.5.1.jar, C:\Users\Gab'z\.m2\repository\org\apache\activemq\activemq-core\5.5.1\activemq-core-5.5.1.jar, C:\Users\Gab'z\.m2\repository\org\apache\geronimo\specs\geronimo-jms_1.1_spec\1.1.1\geronimo-jms_1.1_spec-1.1.1.jar, C:\Users\Gab'z\.m2\repository\org\apache\activemq\activeio-core\3.1.2\activeio-core-3.1.2.jar, C:\Users\Gab'z\.m2\repository\org\apache\activemq\protobuf\activemq-protobuf\1.1\activemq-protobuf-1.1.jar, C:\Users\Gab'z\.m2\repository\org\apache\geronimo\specs\geronimo-j2ee-management_1.1_spec\1.0.1\geronimo-j2ee-management_1.1_spec-1.0.1.jar, C:\Users\Gab'z\.m2\repository\commons-net\commons-net\2.0\commons-net-2.0.jar, C:\Users\Gab'z\.m2\repository\org\apache\geronimo\components\geronimo-connector\3.1.1\geronimo-connector-3.1.1.jar, C:\Users\Gab'z\.m2\repository\org\apache\geronimo\specs\geronimo-j2ee-connector_1.6_spec\1.0\geronimo-j2ee-connector_1.6_spec-1.0.jar, C:\Users\Gab'z\.m2\repository\org\apache\geronimo\components\geronimo-transaction\3.1.1\geronimo-transaction-3.1.1.jar, C:\Users\Gab'z\.m2\repository\org\objectweb\howl\howl\1.0.1-1\howl-1.0.1-1.jar, C:\Users\Gab'z\.m2\repository\org\apache\geronimo\javamail\geronimo-javamail_1.4_mail\1.8.2\geronimo-javamail_1.4_mail-1.8.2.jar, C:\Users\Gab'z\.m2\repository\org\apache\xbean\xbean-asm-shaded\3.10\xbean-asm-shaded-3.10.jar, C:\Users\Gab'z\.m2\repository\org\apache\openejb\patch\xbean-finder-shaded\3.10\xbean-finder-shaded-3.10.jar, C:\Users\Gab'z\.m2\repository\org\apache\xbean\xbean-reflect\3.10\xbean-reflect-3.10.jar, C:\Users\Gab'z\.m2\repository\org\apache\xbean\xbean-naming\3.10\xbean-naming-3.10.jar, C:\Users\Gab'z\.m2\repository\org\apache\xbean\xbean-bundleutils\3.10\xbean-bundleutils-3.10.jar, C:\Users\Gab'z\.m2\repository\org\hsqldb\hsqldb\2.2.4\hsqldb-2.2.4.jar, C:\Users\Gab'z\.m2\repository\commons-dbcp\commons-dbcp\1.4\commons-dbcp-1.4.jar, C:\Users\Gab'z\.m2\repository\commons-pool\commons-pool\1.5.7\commons-pool-1.5.7.jar, C:\Users\Gab'z\.m2\repository\org\codehaus\swizzle\swizzle-stream\1.6.1\swizzle-stream-1.6.1.jar, C:\Users\Gab'z\.m2\repository\wsdl4j\wsdl4j\1.6.2\wsdl4j-1.6.2.jar, C:\Users\Gab'z\.m2\repository\org\quartz-scheduler\quartz\2.1.3\quartz-2.1.3.jar, C:\Users\Gab'z\.m2\repository\org\slf4j\slf4j-jdk14\1.6.4\slf4j-jdk14-1.6.4.jar, C:\Users\Gab'z\.m2\repository\org\apache\openwebbeans\openwebbeans-impl\1.1.4\openwebbeans-impl-1.1.4.jar, C:\Users\Gab'z\.m2\repository\net\sf\scannotation\scannotation\1.0.2\scannotation-1.0.2.jar, C:\Users\Gab'z\.m2\repository\org\apache\openwebbeans\openwebbeans-spi\1.1.4\openwebbeans-spi-1.1.4.jar, C:\Users\Gab'z\.m2\repository\org\apache\openwebbeans\openwebbeans-ejb\1.1.4\openwebbeans-ejb-1.1.4.jar, C:\Users\Gab'z\.m2\repository\org\apache\openwebbeans\openwebbeans-ee\1.1.4\openwebbeans-ee-1.1.4.jar, C:\Users\Gab'z\.m2\repository\org\apache\openwebbeans\openwebbeans-ee-common\1.1.4\openwebbeans-ee-common-1.1.4.jar, C:\Users\Gab'z\.m2\repository\org\apache\openwebbeans\openwebbeans-web\1.1.4\openwebbeans-web-1.1.4.jar, C:\Users\Gab'z\.m2\repository\org\javassist\javassist\3.15.0-GA\javassist-3.15.0-GA.jar, C:\Users\Gab'z\.m2\repository\org\apache\ant\ant-nodeps\1.7.1\ant-nodeps-1.7.1.jar, C:\Users\Gab'z\.m2\repository\org\apache\ant\ant\1.7.1\ant-1.7.1.jar, C:\Users\Gab'z\.m2\repository\org\apache\ant\ant-launcher\1.7.1\ant-launcher-1.7.1.jar, C:\Users\Gab'z\.m2\repository\org\apache\openejb\tomee-common\4.0.0\tomee-common-4.0.0.jar, C:\Users\Gab'z\.m2\repository\org\apache\openejb\openejb-client\4.0.0\openejb-client-4.0.0.jar, C:\Users\Gab'z\.m2\repository\ch\qos\logback\logback-classic\1.0.7\logback-classic-1.0.7.jar, C:\Users\Gab'z\.m2\repository\ch\qos\logback\logback-core\1.0.7\logback-core-1.0.7.jar]
    [DEBUG]   (f) compileSourceRoots = [F:\prog\bacasable\com.myapp\com.myapp.webapp\src\main\java]
    [DEBUG]   (f) compilerId = javac
    [DEBUG]   (f) debug = true
    [DEBUG]   (f) encoding = UTF-8
    [DEBUG]   (f) failOnError = true
    [DEBUG]   (f) fork = false
    [DEBUG]   (f) generatedSourcesDirectory = F:\prog\bacasable\com.myapp\com.myapp.webapp\target\generated-sources\annotations
    [DEBUG]   (f) optimize = false
    [DEBUG]   (f) outputDirectory = F:\prog\bacasable\com.myapp\com.myapp.webapp\target\com.myapp.webapp-0.0.1-SNAPSHOT\WEB-INF\classes
    [DEBUG]   (f) outputFileName = com.myapp.webapp-0.0.1-SNAPSHOT
    [DEBUG]   (f) projectArtifact = com.myapp:com.myapp.webapp:war:0.0.1-SNAPSHOT
    [DEBUG]   (f) session = org.apache.maven.execution.MavenSession@11dfaf2
    [DEBUG]   (f) showDeprecation = false
    [DEBUG]   (f) showWarnings = false
    [DEBUG]   (f) source = 1.7
    [DEBUG]   (f) staleMillis = 0
    [DEBUG]   (f) target = 1.7
    [DEBUG]   (f) verbose = false
    [DEBUG] -- end configuration --
    [DEBUG] Using compiler 'javac'.
    [DEBUG] Source directories: [F:\prog\bacasable\com.myapp\com.myapp.webapp\src\main\java]
    [DEBUG] Classpath: [F:\prog\bacasable\com.myapp\com.myapp.webapp\target\com.myapp.webapp-0.0.1-SNAPSHOT\WEB-INF\classes
     C:\Users\Gab'z\.m2\repository\com\google\gwt\gwt-user\2.4.0\gwt-user-2.4.0.jar
     
    [...]
     
     C:\Users\Gab'z\.m2\repository\ch\qos\logback\logback-core\1.0.7\logback-core-1.0.7.jar]
    [DEBUG] Output directory: F:\prog\bacasable\com.myapp\com.myapp.webapp\target\com.myapp.webapp-0.0.1-SNAPSHOT\WEB-INF\classes
    [DEBUG] CompilerReuseStrategy: reuseCreated
    [INFO] Nothing to compile - all classes are up to date
    [INFO] 
    [INFO] --- maven-war-plugin:2.3:exploded (default) @ com.myapp.webapp ---
    [DEBUG] org.apache.maven.plugins:maven-war-plugin:jar:2.3:
    [DEBUG]    org.apache.maven:maven-plugin-api:jar:2.0.6:compile
    [DEBUG]    org.apache.maven:maven-artifact:jar:2.0.6:compile
    [DEBUG]    org.apache.maven:maven-model:jar:2.0.6:compile
    [DEBUG]    org.apache.maven:maven-project:jar:2.0.6:compile
    [DEBUG]       org.apache.maven:maven-profile:jar:2.0.6:compile
    [DEBUG]       org.apache.maven:maven-artifact-manager:jar:2.0.6:compile
    [DEBUG]       org.apache.maven:maven-plugin-registry:jar:2.0.6:compile
    [DEBUG]    org.apache.maven:maven-core:jar:2.0.6:compile
    [DEBUG]       org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.6:compile
    [DEBUG]       org.apache.maven.reporting:maven-reporting-api:jar:2.0.6:compile
    [DEBUG]          org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7:compile
    [DEBUG]       org.apache.maven:maven-repository-metadata:jar:2.0.6:compile
    [DEBUG]       org.apache.maven:maven-error-diagnostics:jar:2.0.6:compile
    [DEBUG]       commons-cli:commons-cli:jar:1.0:compile
    [DEBUG]       org.apache.maven:maven-plugin-descriptor:jar:2.0.6:compile
    [DEBUG]       org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile
    [DEBUG]       classworlds:classworlds:jar:1.1:compile
    [DEBUG]    org.apache.maven:maven-settings:jar:2.0.6:compile
    [DEBUG]    org.apache.maven:maven-monitor:jar:2.0.6:compile
    [DEBUG]    org.apache.maven:maven-archiver:jar:2.5:compile
    [DEBUG]    org.codehaus.plexus:plexus-io:jar:2.0.5:compile
    [DEBUG]    org.codehaus.plexus:plexus-archiver:jar:2.2:compile
    [DEBUG]    org.codehaus.plexus:plexus-interpolation:jar:1.15:compile
    [DEBUG]    org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
    [DEBUG]       junit:junit:jar:3.8.1:compile
    [DEBUG]    com.thoughtworks.xstream:xstream:jar:1.4.3:compile
    [DEBUG]       xmlpull:xmlpull:jar:1.1.3.1:compile
    [DEBUG]       xpp3:xpp3_min:jar:1.1.4c:compile
    [DEBUG]    org.codehaus.plexus:plexus-utils:jar:3.0.8:compile
    [DEBUG]    org.apache.maven.shared:maven-filtering:jar:1.0-beta-2:compile
    [DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-war-plugin:2.3
    [DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-war-plugin:2.3
    [DEBUG]   Imported:  < maven.api
    [DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-war-plugin:2.3
    [DEBUG]   Included: org.apache.maven.plugins:maven-war-plugin:jar:2.3
    [DEBUG]   Included: org.apache.maven.reporting:maven-reporting-api:jar:2.0.6
    [DEBUG]   Included: org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7
    [DEBUG]   Included: commons-cli:commons-cli:jar:1.0
    [DEBUG]   Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4
    [DEBUG]   Included: org.apache.maven:maven-archiver:jar:2.5
    [DEBUG]   Included: org.codehaus.plexus:plexus-io:jar:2.0.5
    [DEBUG]   Included: org.codehaus.plexus:plexus-archiver:jar:2.2
    [DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.15
    [DEBUG]   Included: junit:junit:jar:3.8.1
    [DEBUG]   Included: com.thoughtworks.xstream:xstream:jar:1.4.3
    [DEBUG]   Included: xmlpull:xmlpull:jar:1.1.3.1
    [DEBUG]   Included: xpp3:xpp3_min:jar:1.1.4c
    [DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.0.8
    [DEBUG]   Included: org.apache.maven.shared:maven-filtering:jar:1.0-beta-2
    [DEBUG]   Excluded: org.apache.maven:maven-plugin-api:jar:2.0.6
    [DEBUG]   Excluded: org.apache.maven:maven-artifact:jar:2.0.6
    [DEBUG]   Excluded: org.apache.maven:maven-model:jar:2.0.6
    [DEBUG]   Excluded: org.apache.maven:maven-project:jar:2.0.6
    [DEBUG]   Excluded: org.apache.maven:maven-profile:jar:2.0.6
    [DEBUG]   Excluded: org.apache.maven:maven-artifact-manager:jar:2.0.6
    [DEBUG]   Excluded: org.apache.maven:maven-plugin-registry:jar:2.0.6
    [DEBUG]   Excluded: org.apache.maven:maven-core:jar:2.0.6
    [DEBUG]   Excluded: org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.6
    [DEBUG]   Excluded: org.apache.maven:maven-repository-metadata:jar:2.0.6
    [DEBUG]   Excluded: org.apache.maven:maven-error-diagnostics:jar:2.0.6
    [DEBUG]   Excluded: org.apache.maven:maven-plugin-descriptor:jar:2.0.6
    [DEBUG]   Excluded: classworlds:classworlds:jar:1.1
    [DEBUG]   Excluded: org.apache.maven:maven-settings:jar:2.0.6
    [DEBUG]   Excluded: org.apache.maven:maven-monitor:jar:2.0.6
    [DEBUG]   Excluded: org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1
    [DEBUG] Configuring mojo org.apache.maven.plugins:maven-war-plugin:2.3:exploded from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-war-plugin:2.3, parent: sun.misc.Launcher$AppClassLoader@16930e2]
    [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-war-plugin:2.3:exploded' with basic configurator -->
    [DEBUG]   (s) archiveClasses = false
    [DEBUG]   (s) cacheFile = F:\prog\bacasable\com.myapp\com.myapp.webapp\target\war\work\webapp-cache.xml
    [DEBUG]   (s) classesDirectory = F:\prog\bacasable\com.myapp\com.myapp.webapp\target\com.myapp.webapp-0.0.1-SNAPSHOT\WEB-INF\classes
    [DEBUG]   (f) escapedBackslashesInFilePath = false
    [DEBUG]   (f) filteringDeploymentDescriptors = false
    [DEBUG]   (f) recompressZippedFiles = false
    [DEBUG]   (f) resourceEncoding = UTF-8
    [DEBUG]   (s) useCache = false
    [DEBUG]   (s) warSourceDirectory = F:\prog\bacasable\com.myapp\com.myapp.webapp\src\main\webapp
    [DEBUG]   (s) warSourceIncludes = **
    [DEBUG]   (s) webappDirectory = F:\prog\bacasable\com.myapp\com.myapp.webapp\target\com.myapp.webapp-0.0.1-SNAPSHOT
    [DEBUG]   (s) workDirectory = F:\prog\bacasable\com.myapp\com.myapp.webapp\target\war\work
    [DEBUG]   (s) project = MavenProject: com.myapp:com.myapp.webapp:0.0.1-SNAPSHOT @ F:\prog\bacasable\com.myapp\com.myapp.webapp\pom.xml
    [DEBUG]   (f) session = org.apache.maven.execution.MavenSession@11dfaf2
    [DEBUG] -- end configuration --
    [INFO] Exploding webapp
    [INFO] Assembling webapp [com.myapp.webapp] in [F:\prog\bacasable\com.myapp\com.myapp.webapp\target\com.myapp.webapp-0.0.1-SNAPSHOT]
    [DEBUG] properties used {java.vendor=Oracle Corporation, env.SYSTEMROOT=C:\Windows, sun.java.launcher=SUN_STANDARD, sun.management.compiler=HotSpot Client Compiler, os.name=Windows 7, env.FP_NO_HOST_CHECK=NO, sun.boot.class.path=C:\Program Files (x86)\Java\jdk1.7.0_07\jre\lib\resources.jar;C:\Program Files (x86)\Java\jdk1.7.0_07\jre\lib\rt.jar;C:\Program Files (x86)\Java\jdk1.7.0_07\jre\lib\sunrsasign.jar;C:\Program Files (x86)\Java\jdk1.7.0_07\jre\lib\jsse.jar;C:\Program Files (x86)\Java\jdk1.7.0_07\jre\lib\jce.jar;C:\Program Files (x86)\Java\jdk1.7.0_07\jre\lib\charsets.jar;C:\Program Files (x86)\Java\jdk1.7.0_07\jre\lib\jfr.jar;C:\Program Files (x86)\Java\jdk1.7.0_07\jre\classes, project.build.sourceencoding=UTF-8, env.COMPUTERNAME=GABZ-PC, env.ALLUSERSPROFILE=C:\ProgramData, sun.desktop=windows, java.vm.specification.vendor=Oracle Corporation, java.runtime.version=1.7.0_07-b11, env.HOMEPATH=\Users\Gab'z, project.build.sourceEncoding=UTF-8, webappDirectory=F:\prog\bacasable\com.myapp\com.myapp.webapp\target/com.myapp.webapp-0.0.1-SNAPSHOT, user.name=Gab'z, maven.build.version=Apache Maven 3.0.4 (r1232337; 2012-01-17 09:44:56+0100), env.WINDOWS_TRACING_FLAGS=3, env.PATH=C:\oraclexe\app\oracle\product\11.2.0\server\bin;;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files\Java\jdk1.7.0_07\bin;C:\Users\Gab'z\Desktop\apache-maven-3.0.4\apache-maven\src\bin;F:\prog\apache-tomee-plus-1.0.0\bin;C:\Users\Gab'z\Desktop\apache-maven-3.0.4\apache-maven\src;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\, user.language=fr, env.WINDIR=C:\Windows, sun.boot.library.path=C:\Program Files (x86)\Java\jdk1.7.0_07\jre\bin, classworlds.conf=F:\prog\bacasable\.metadata\.plugins\org.eclipse.m2e.core\launches\m2conf1197446839825640513.tmp, java.version=1.7.0_07, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 42 Stepping 7, GenuineIntel, user.timezone=Europe/Paris, env.TEMP=C:\Users\Gab'z\AppData\Local\Temp, sun.arch.data.model=32, env.WINDOWS_TRACING_LOGFILE=C:\BVTBin\Tests\installpackage\csilogfile.log, java.endorsed.dirs=C:\Program Files (x86)\Java\jdk1.7.0_07\jre\lib\endorsed, env.PROCESSOR_ARCHITEW6432=AMD64, sun.cpu.isalist=pentium_pro+mmx pentium_pro pentium+mmx pentium i486 i386 i86, env.HOMEDRIVE=C:, sun.jnu.encoding=Cp1252, file.encoding.pkg=sun.io, env.SYSTEMDRIVE=C:, file.separator=\, java.specification.name=Java Platform API Specification, env.APACHE_MAVEN=C:\Users\Gab'z\Desktop\apache-maven-3.0.4\apache-maven\src, java.class.version=51.0, user.country=FR, java.home=C:\Program Files (x86)\Java\jdk1.7.0_07\jre, env.APPDATA=C:\Users\Gab'z\AppData\Roaming, env.PUBLIC=C:\Users\Public, java.vm.info=mixed mode, sharing, env.OS=Windows_NT, os.version=6.1, gwtVersion=2.4.0, env.=::=::\, path.separator=;, java.vm.version=23.3-b01, env.USERPROFILE=C:\Users\Gab'z, user.variant=, env.JAVA_HOME=C:\Program Files\Java\jdk1.7.0_07, java.awt.printerjob=sun.awt.windows.WPrinterJob, env.TMP=C:\Users\Gab'z\AppData\Local\Temp, env.PROGRAMFILES=C:\Program Files (x86), sun.io.unicode.encoding=UnicodeLittle, awt.toolkit=sun.awt.windows.WToolkit, user.script=, user.home=C:\Users\Gab'z, env.COMMONPROGRAMFILES=C:\Program Files (x86)\Common Files, env.SESSIONNAME=Console, java.specification.vendor=Oracle Corporation, env.M2_HOME=C:\Users\Gab'z\Desktop\apache-maven-3.0.4\apache-maven\src, env.NUMBER_OF_PROCESSORS=8, java.library.path=C:\Program Files (x86)\Java\jdk1.7.0_07\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\oraclexe\app\oracle\product\11.2.0\server\bin;;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files\Java\jdk1.7.0_07\bin;C:\Users\Gab'z\Desktop\apache-maven-3.0.4\apache-maven\src\bin;F:\prog\apache-tomee-plus-1.0.0\bin;C:\Users\Gab'z\Desktop\apache-maven-3.0.4\apache-maven\src;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;., java.vendor.url=http://java.oracle.com/, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.PSMODULEPATH=C:\Windows\system32\WindowsPowerShell\v1.0\Modules\, java.vm.vendor=Oracle Corporation, java.runtime.name=Java(TM) SE Runtime Environment, maven.home=F:\prog\bacasable\com.myapp\com.myapp.webapp\EMBEDDED, java.class.path=/F:/prog/eclipse/configuration/org.eclipse.osgi/bundles/814/1/.cp/jars/plexus-classworlds-2.4.jar, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher -B compile -X, env.PROGRAMW6432=C:\Program Files, maven.version=3.0.4, env.PROGRAMFILES(X86)=C:\Program Files (x86), java.vm.specification.name=Java Virtual Machine Specification, env.LOGONSERVER=\\GABZ-PC, env.PROCESSOR_ARCHITECTURE=x86, java.vm.specification.version=1.7, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, sun.os.patch.level=Service Pack 1, sun.cpu.endian=little, env.HOME=C:\Users\Gab'z, java.io.tmpdir=C:\Users\Gab'z\AppData\Local\Temp\, env.PROCESSOR_REVISION=2a07, env.APACHE_TOMEE=F:\prog\apache-tomee-plus-1.0.0, env.M3_HOME=C:\Users\Gab'z\Desktop\apache-maven-3.0.4\apache-maven\src, java.vendor.url.bug=http://bugreport.sun.com/bugreport/, env.COMSPEC=C:\Windows\system32\cmd.exe, env.PROGRAMDATA=C:\ProgramData, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, os.arch=x86, java.ext.dirs=C:\Program Files (x86)\Java\jdk1.7.0_07\jre\lib\ext;C:\Windows\Sun\Java\lib\ext, user.dir=F:\prog\bacasable\com.myapp\com.myapp.webapp, env.LOCALAPPDATA=C:\Users\Gab'z\AppData\Local, line.separator=
    , java.vm.name=Java HotSpot(TM) Client VM, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, env.USERNAME=Gab'z, file.encoding=UTF-8, env.USERDOMAIN=Gabz-PC, java.specification.version=1.7, env.PROCESSOR_LEVEL=6}
    [INFO] Processing war project
    [INFO] Copying webapp resources [F:\prog\bacasable\com.myapp\com.myapp.webapp\src\main\webapp]
    [DEBUG]  + myapp/.junit_symbolMaps/2D34846DFF962E7594788C281A7C9D91.symbolMap has been copied.
    [DEBUG]  + myapp/.junit_symbolMaps/4D3EAC7EAB4AA74D3A9FC6121933AEFD.symbolMap has been copied.
    [DEBUG]  + myapp/.junit_symbolMaps/A866B03BF9DD854567B48DC5FCE23CD5.symbolMap has been copied.
    [DEBUG]  + myapp/.junit_symbolMaps/ACD726EDB3E89841D103EF60BA500C74.symbolMap has been copied.
    [DEBUG]  + myapp/.junit_symbolMaps/E744286B3DD9C1F886B100548A1B5455.symbolMap has been copied.
    [DEBUG]  + myapp/.junit_symbolMaps/E9C0B44AE6AE14980034BEB11680A0C9.symbolMap has been copied.
    [DEBUG]  + myapp/0A9476898799A150D840F0B1C3672921.cache.png has been copied.
    [DEBUG]  + myapp/2D34846DFF962E7594788C281A7C9D91.cache.html has been copied.
    [DEBUG]  + myapp/396F806CD63ABD414BFBB9D57429F05B.cache.png has been copied.
    [DEBUG]  + myapp/4D3EAC7EAB4AA74D3A9FC6121933AEFD.cache.html has been copied.
    [DEBUG]  + myapp/511EEEE2429CC24FD25F856BB59F331B.gwt.rpc has been copied.
    [DEBUG]  + myapp/A866B03BF9DD854567B48DC5FCE23CD5.cache.html has been copied.
    [DEBUG]  + myapp/ACD726EDB3E89841D103EF60BA500C74.cache.html has been copied.
    [DEBUG]  + myapp/clear.cache.gif has been copied.
    [DEBUG]  + myapp/DF7764EEC1903CD03C9545B354D8D8E4.cache.png has been copied.
    [DEBUG]  + myapp/E44767377485D18D6B6864F65BA8EF73.cache.png has been copied.
    [DEBUG]  + myapp/E744286B3DD9C1F886B100548A1B5455.cache.html has been copied.
    [DEBUG]  + myapp/E9C0B44AE6AE14980034BEB11680A0C9.cache.html has been copied.
    [DEBUG]  + myapp/EDC7827FEEA59EE44AD790B1C6430C45.cache.png has been copied.
    [DEBUG]  + myapp/myapp.nocache.js has been copied.
    [DEBUG]  + myapp/gwt/standard/images/corner.png has been copied.
    [DEBUG]  + myapp/gwt/standard/images/corner_ie6.png has been copied.
    [DEBUG]  + myapp/gwt/standard/images/hborder.png has been copied.
    [DEBUG]  + myapp/gwt/standard/images/hborder_ie6.png has been copied.
    [DEBUG]  + myapp/gwt/standard/images/ie6/corner_dialog_topleft.png has been copied.
    [DEBUG]  + myapp/gwt/standard/images/ie6/corner_dialog_topright.png has been copied.
    [DEBUG]  + myapp/gwt/standard/images/ie6/hborder_blue_shadow.png has been copied.
    [DEBUG]  + myapp/gwt/standard/images/ie6/hborder_gray_shadow.png has been copied.
    [DEBUG]  + myapp/gwt/standard/images/ie6/vborder_blue_shadow.png has been copied.
    [DEBUG]  + myapp/gwt/standard/images/ie6/vborder_gray_shadow.png has been copied.
    [DEBUG]  + myapp/gwt/standard/images/splitPanelThumb.png has been copied.
    [DEBUG]  + myapp/gwt/standard/images/vborder.png has been copied.
    [DEBUG]  + myapp/gwt/standard/images/vborder_ie6.png has been copied.
    [DEBUG]  + myapp/gwt/standard/standard.css has been copied.
    [DEBUG]  + myapp/gwt/standard/standard_rtl.css has been copied.
    [DEBUG]  + myapp/hosted.html has been copied.
    [DEBUG]  + myapp/junit-standards.html has been copied.
    [DEBUG]  + myapp/junit.html has been copied.
    [DEBUG]  + myapp.css has been copied.
    [DEBUG]  + myapp.html has been copied.
    [DEBUG]  + logo.png has been copied.
    [DEBUG]  + WEB-INF/deploy/myapp/rpcPolicyManifest/manifest.txt has been copied.
    [DEBUG]  + WEB-INF/deploy/myapp/rpcPolicyManifest/manifests/E159F2F04B8F4A8FA6728FD53466ACFE.txt has been copied.
    [DEBUG]  + WEB-INF/web.xml has been copied.
    [DEBUG] Dump of the current build pathSet content -->
    [DEBUG] myapp/.junit_symbolMaps/2D34846DFF962E7594788C281A7C9D91.symbolMap
    [DEBUG] myapp/.junit_symbolMaps/4D3EAC7EAB4AA74D3A9FC6121933AEFD.symbolMap
    [DEBUG] myapp/.junit_symbolMaps/A866B03BF9DD854567B48DC5FCE23CD5.symbolMap
    [DEBUG] myapp/.junit_symbolMaps/ACD726EDB3E89841D103EF60BA500C74.symbolMap
    [DEBUG] myapp/.junit_symbolMaps/E744286B3DD9C1F886B100548A1B5455.symbolMap
    [DEBUG] myapp/.junit_symbolMaps/E9C0B44AE6AE14980034BEB11680A0C9.symbolMap
    [DEBUG] myapp/0A9476898799A150D840F0B1C3672921.cache.png
    [DEBUG] myapp/2D34846DFF962E7594788C281A7C9D91.cache.html
    [DEBUG] myapp/396F806CD63ABD414BFBB9D57429F05B.cache.png
    [DEBUG] myapp/4D3EAC7EAB4AA74D3A9FC6121933AEFD.cache.html
    [DEBUG] myapp/511EEEE2429CC24FD25F856BB59F331B.gwt.rpc
    [DEBUG] myapp/A866B03BF9DD854567B48DC5FCE23CD5.cache.html
    [DEBUG] myapp/ACD726EDB3E89841D103EF60BA500C74.cache.html
    [DEBUG] myapp/clear.cache.gif
    [DEBUG] myapp/DF7764EEC1903CD03C9545B354D8D8E4.cache.png
    [DEBUG] myapp/E44767377485D18D6B6864F65BA8EF73.cache.png
    [DEBUG] myapp/E744286B3DD9C1F886B100548A1B5455.cache.html
    [DEBUG] myapp/E9C0B44AE6AE14980034BEB11680A0C9.cache.html
    [DEBUG] myapp/EDC7827FEEA59EE44AD790B1C6430C45.cache.png
    [DEBUG] myapp/myapp.nocache.js
    [DEBUG] myapp/gwt/standard/images/corner.png
    [DEBUG] myapp/gwt/standard/images/corner_ie6.png
    [DEBUG] myapp/gwt/standard/images/hborder.png
    [DEBUG] myapp/gwt/standard/images/hborder_ie6.png
    [DEBUG] myapp/gwt/standard/images/ie6/corner_dialog_topleft.png
    [DEBUG] myapp/gwt/standard/images/ie6/corner_dialog_topright.png
    [DEBUG] myapp/gwt/standard/images/ie6/hborder_blue_shadow.png
    [DEBUG] myapp/gwt/standard/images/ie6/hborder_gray_shadow.png
    [DEBUG] myapp/gwt/standard/images/ie6/vborder_blue_shadow.png
    [DEBUG] myapp/gwt/standard/images/ie6/vborder_gray_shadow.png
    [DEBUG] myapp/gwt/standard/images/splitPanelThumb.png
    [DEBUG] myapp/gwt/standard/images/vborder.png
    [DEBUG] myapp/gwt/standard/images/vborder_ie6.png
    [DEBUG] myapp/gwt/standard/standard.css
    [DEBUG] myapp/gwt/standard/standard_rtl.css
    [DEBUG] myapp/hosted.html
    [DEBUG] myapp/junit-standards.html
    [DEBUG] myapp/junit.html
    [DEBUG] myapp.css
    [DEBUG] myapp.html
    [DEBUG] logo.png
    [DEBUG] WEB-INF/deploy/myapp/rpcPolicyManifest/manifest.txt
    [DEBUG] WEB-INF/deploy/myapp/rpcPolicyManifest/manifests/E159F2F04B8F4A8FA6728FD53466ACFE.txt
    [DEBUG] WEB-INF/web.xml
    [DEBUG] -- end of dump --
    [DEBUG] Processing: gwt-servlet-2.4.0.jar
    [DEBUG]  + WEB-INF/lib/gwt-servlet-2.4.0.jar has been copied.
    [DEBUG] Processing: mvp4g-1.4.0.jar
    [DEBUG]  + WEB-INF/lib/mvp4g-1.4.0.jar has been copied.
    [DEBUG] Processing: gin-1.5.0.jar
    [DEBUG]  + WEB-INF/lib/gin-1.5.0.jar has been copied.
    [DEBUG] Processing: guice-3.0-rc2.jar
    [DEBUG]  + WEB-INF/lib/guice-3.0-rc2.jar has been copied.
    [DEBUG] Processing: javax.inject-1.jar
    [DEBUG]  + WEB-INF/lib/javax.inject-1.jar has been copied.
    [DEBUG] Processing: aopalliance-1.0.jar
    [DEBUG]  + WEB-INF/lib/aopalliance-1.0.jar has been copied.
    [DEBUG] Processing: guice-assistedinject-3.0-rc2.jar
    [DEBUG]  + WEB-INF/lib/guice-assistedinject-3.0-rc2.jar has been copied.
    [DEBUG] Processing: dozer-5.3.2.jar
    [DEBUG]  + WEB-INF/lib/dozer-5.3.2.jar has been copied.
    [DEBUG] Processing: commons-beanutils-1.8.3.jar
    [DEBUG]  + WEB-INF/lib/commons-beanutils-1.8.3.jar has been copied.
    [DEBUG] Processing: commons-logging-1.1.1.jar
    [DEBUG]  + WEB-INF/lib/commons-logging-1.1.1.jar has been copied.
    [DEBUG] Processing: commons-lang-2.5.jar
    [DEBUG]  + WEB-INF/lib/commons-lang-2.5.jar has been copied.
    [DEBUG] Processing: slf4j-api-1.6.6.jar
    [DEBUG]  + WEB-INF/lib/slf4j-api-1.6.6.jar has been copied.
    [DEBUG] Processing: com.myapp.service-0.0.1-SNAPSHOT.jar
    [DEBUG]  + WEB-INF/lib/com.myapp.service-0.0.1-SNAPSHOT.jar has been copied.
    [DEBUG] Processing: com.myapp.utils-0.0.1-SNAPSHOT.jar
    [DEBUG]  + WEB-INF/lib/com.myapp.utils-0.0.1-SNAPSHOT.jar has been copied.
    [DEBUG] Processing: logback-classic-1.0.7.jar
    [DEBUG]  + WEB-INF/lib/logback-classic-1.0.7.jar has been copied.
    [DEBUG] Processing: logback-core-1.0.7.jar
    [DEBUG]  + WEB-INF/lib/logback-core-1.0.7.jar has been copied.
    [INFO] Webapp assembled in [2234 msecs]
    [INFO] ------------------------------------------------------------------------
    [INFO] BUILD SUCCESS
    [INFO] ------------------------------------------------------------------------
    [INFO] Total time: 3.568s
    [INFO] Finished at: Thu Nov 08 23:14:57 CET 2012
    [INFO] Final Memory: 8M/21M
    [INFO] ------------------------------------------------------------------------
    et le pom aussi :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    <?xml version="1.0" encoding="UTF-8"?>
    <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
     
    	<!-- POM file generated with GWT webAppCreator -->
    	<modelVersion>4.0.0</modelVersion>
    	<parent>
    		<artifactId>com.myapp</artifactId>
    		<groupId>com.myapp</groupId>
    		<version>0.0.1-SNAPSHOT</version>
    	</parent>
    	<artifactId>com.myapp.webapp</artifactId>
    	<packaging>war</packaging>
    	<name>GWT Maven Archetype</name>
     
    	<properties>
    		<!-- Convenience property to set the GWT version -->
    		<gwtVersion>2.4.0</gwtVersion>
    		<!-- GWT needs at least java 1.5 -->
    		<webappDirectory>${project.build.directory}/${project.build.finalName}</webappDirectory>
    		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    	</properties>
     
    	<dependencies>
    		<dependency>
    			<groupId>com.google.gwt</groupId>
    			<artifactId>gwt-servlet</artifactId>
    			<version>${gwtVersion}</version>
    			<scope>runtime</scope>
    		</dependency>
    		<dependency>
    			<groupId>com.google.gwt</groupId>
    			<artifactId>gwt-user</artifactId>
    			<version>${gwtVersion}</version>
    			<scope>provided</scope>
    		</dependency>
    		<dependency>
    			<groupId>com.googlecode.mvp4g</groupId>
    			<artifactId>mvp4g</artifactId>
    			<version>1.4.0</version>
    		</dependency>
    		[...pas utile...]
    	</dependencies>
     
    	<build>
    		<!-- Generate compiled stuff in the folder used for developing mode -->
    		<outputDirectory>${webappDirectory}/WEB-INF/classes</outputDirectory>
     
    		<plugins>
     
    			<!-- GWT Maven Plugin -->
    			<plugin>
    				<groupId>org.codehaus.mojo</groupId>
    				<artifactId>gwt-maven-plugin</artifactId>
    				<version>2.4.0</version>
    				<executions>
    					<execution>
    						<goals>
    							<goal>compile</goal>
    							<goal>test</goal>
    							<!-- <goal>i18n</goal> <goal>generateAsync</goal> -->
    						</goals>
    					</execution>
    				</executions>
    				<!-- Plugin configuration. There are many available options, see gwt-maven-plugin 
    					documentation at codehaus.org -->
    				<configuration>
    					<runTarget>myapp.html</runTarget>
    					<hostedWebapp>${webappDirectory}</hostedWebapp>
    					<i18nMessagesBundle>com.myapp.webapp.client.Messages</i18nMessagesBundle>
    				</configuration>
    			</plugin>
     
    			<!-- Copy static web files before executing gwt:run -->
    			<plugin>
    				<groupId>org.apache.maven.plugins</groupId>
    				<artifactId>maven-war-plugin</artifactId>
    				<version>2.3</version>
    				<executions>
    					<execution>
    						<phase>compile</phase>
    						<goals>
    							<goal>exploded</goal>
    						</goals>
    					</execution>
    				</executions>
    				<configuration>
    					<webappDirectory>${webappDirectory}</webappDirectory>
    				</configuration>
    			</plugin>
    			<plugin>
    				<groupId>org.apache.maven.plugins</groupId>
    				<artifactId>maven-compiler-plugin</artifactId>
    				<version>2.5.1</version>
    				<configuration>
    					<source>1.7</source>
    					<target>1.7</target>
    				</configuration>
    			</plugin>
    		</plugins>
    	</build>
     
    </project>

  6. #6
    Membre expérimenté
    Avatar de karbos
    Inscrit en
    Novembre 2008
    Messages
    155
    Détails du profil
    Informations forums :
    Inscription : Novembre 2008
    Messages : 155
    Par défaut
    Citation Envoyé par gabz57 Voir le message
    mvn clean OK
    project clean OK (celui d'eclipse)
    gwt compile OK, je retrouve dans le dossier target mes fichiers générés (le .js notamment)
    mvn compile PB -> dans mon dossier target reviennent les anciens fichiers
    et déjà là c'est pas la peine d'aller jusqu'à tomcat
    Je crois que j'ai compris : supprime les fichiers contenant "nocache.js". Je pense que dans ton cas les commandes ci-dessous devrait supprimer 4 fichiers :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    del F:\prog\bacasable\com.myapp\com.myapp.webapp\src\main\webapp\myapp\*nocache.js*
    et
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    del F:\prog\bacasable\com.myapp\com.myapp.webapp\target\com.myapp.webapp-0.0.1-SNAPSHOT\webapp\myapp\*nocache.js*
    Puis lance la commande Maven :
    pour créer le war dans le dossier C:\Users\Gab'z\.m2\repository\com\myapp\com.myapp\0.0.1-SNAPSHOT\

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Problème à la compilation avec un fichier .gwt.xml
    Par M€lK!oR dans le forum GWT et Vaadin
    Réponses: 8
    Dernier message: 10/09/2009, 19h30
  2. Réponses: 11
    Dernier message: 11/05/2009, 20h29
  3. Réponses: 3
    Dernier message: 12/07/2006, 22h21
  4. Réponses: 9
    Dernier message: 04/03/2006, 20h36
  5. [Fichier I/O] Problème de compilation.
    Par Roming22 dans le forum C++
    Réponses: 6
    Dernier message: 03/10/2004, 23h09

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo