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

Hibernate Java Discussion :

Installation de Hibernate dans projet Tomcat


Sujet :

Hibernate Java

  1. #1
    Membre actif Avatar de Elwe31
    Profil pro
    Inscrit en
    Octobre 2004
    Messages
    487
    Détails du profil
    Informations personnelles :
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations forums :
    Inscription : Octobre 2004
    Messages : 487
    Points : 220
    Points
    220
    Par défaut Installation de Hibernate dans projet Tomcat
    Bonjour,

    des que je rajoute dans le pom.xml
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    <dependency>
        	<groupId>org.hibernate</groupId>
        	<artifactId>hibernate-core</artifactId>
        	<version>5.4.2.Final</version>
    	</dependency>
    le fichier hibernate.cfg.xml est dans WEB-INF

    Mais le petit symble rouge, dans eclipse, a la racine du projet apparait (pour indiquer une erreur que je ne trouve pas) et le serveur tomcat ne demarre pas :
    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
    GRAVE: Exception lors du démarrage du contexte [/cToric]
    org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext[/cToric]]
    	at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:167)
    	at org.apache.catalina.core.StandardContext.reload(StandardContext.java:3800)
    	at org.apache.catalina.loader.WebappLoader.backgroundProcess(WebappLoader.java:292)
    	at org.apache.catalina.core.StandardContext.backgroundProcess(StandardContext.java:5571)
    	at org.apache.catalina.core.ContainerBase$ContainerBackgroundProcessor.processChildren(ContainerBase.java:1388)
    	at org.apache.catalina.core.ContainerBase$ContainerBackgroundProcessor.processChildren(ContainerBase.java:1392)
    	at org.apache.catalina.core.ContainerBase$ContainerBackgroundProcessor.processChildren(ContainerBase.java:1392)
    	at org.apache.catalina.core.ContainerBase$ContainerBackgroundProcessor.run(ContainerBase.java:1360)
    	at java.lang.Thread.run(Unknown Source)
    Caused by: org.apache.catalina.LifecycleException: Failed to start component [org.apache.catalina.webresources.StandardRoot@7cd68594]
    	at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:167)
    	at org.apache.catalina.core.StandardContext.resourcesStart(StandardContext.java:4868)
    	at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5003)
    	at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
    	... 8 more
    Caused by: org.apache.catalina.LifecycleException: Failed to initialize component [org.apache.catalina.webresources.JarResourceSet@771d5b3f]
    	at org.apache.catalina.util.LifecycleBase.init(LifecycleBase.java:113)
    	at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:140)
    	at org.apache.catalina.webresources.StandardRoot.startInternal(StandardRoot.java:724)
    	at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
    	... 11 more
    Caused by: java.lang.IllegalArgumentException: java.util.zip.ZipException: invalid CEN header (bad signature)
    	at org.apache.catalina.webresources.AbstractSingleArchiveResourceSet.initInternal(AbstractSingleArchiveResourceSet.java:142)
    	at org.apache.catalina.util.LifecycleBase.init(LifecycleBase.java:107)
    	... 14 more
    Caused by: java.util.zip.ZipException: invalid CEN header (bad signature)
    	at java.util.zip.ZipFile.open(Native Method)
    	at java.util.zip.ZipFile.<init>(Unknown Source)
    	at java.util.zip.ZipFile.<init>(Unknown Source)
    	at java.util.jar.JarFile.<init>(Unknown Source)
    	at java.util.jar.JarFile.<init>(Unknown Source)
    	at org.apache.tomcat.util.compat.JreCompat.jarFileNewInstance(JreCompat.java:188)
    	at org.apache.tomcat.util.compat.JreCompat.jarFileNewInstance(JreCompat.java:173)
    	at org.apache.catalina.webresources.AbstractSingleArchiveResourceSet.initInternal(AbstractSingleArchiveResourceSet.java:139)
    	... 15 more
    merci d'avance.
    Bon WE
    - La communication consiste a comprendre celui qui ecoute !
    - Qui veut faire quelquechose trouve un moyen, qui ne veut rien faire trouve une excuse

  2. #2
    Membre chevronné Avatar de jeffray03
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Juillet 2008
    Messages
    1 501
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Allemagne

    Informations professionnelles :
    Activité : Développeur informatique

    Informations forums :
    Inscription : Juillet 2008
    Messages : 1 501
    Points : 2 120
    Points
    2 120
    Par défaut
    salut,

    fais un :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    click droit sur la pom du project -> run as --> Maven build... --> goal : package --> run
    Eric

  3. #3
    Membre actif Avatar de Elwe31
    Profil pro
    Inscrit en
    Octobre 2004
    Messages
    487
    Détails du profil
    Informations personnelles :
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations forums :
    Inscription : Octobre 2004
    Messages : 487
    Points : 220
    Points
    220
    Par défaut
    Salut,

    Si je ne me suis pas planté (avec debug de cocher) :
    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
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    Apache Maven 3.3.9 (bb52d8502b132ec0a5a3f4c09453c07478323dc5; 2015-11-10T17:41:47+01:00)
    Maven home: C:\Users\User1\eclipse-workspace\cToric\EMBEDDED
    Java version: 1.8.0_161, vendor: Oracle Corporation
    Java home: C:\Program Files\Java\jre1.8.0_161
    Default locale: fr_FR, platform encoding: Cp1252
    OS name: "windows 10", version: "10.0", arch: "amd64", family: "dos"
    [DEBUG] Created new class realm maven.api
    [DEBUG] Importing foreign packages into class realm maven.api
    [DEBUG]   Imported: javax.enterprise.inject.* < plexus.core
    [DEBUG]   Imported: javax.enterprise.util.* < plexus.core
    [DEBUG]   Imported: javax.inject.* < plexus.core
    [DEBUG]   Imported: org.apache.maven.* < plexus.core
    [DEBUG]   Imported: org.apache.maven.artifact < plexus.core
    [DEBUG]   Imported: org.apache.maven.classrealm < plexus.core
    [DEBUG]   Imported: org.apache.maven.cli < plexus.core
    [DEBUG]   Imported: org.apache.maven.configuration < plexus.core
    [DEBUG]   Imported: org.apache.maven.exception < plexus.core
    [DEBUG]   Imported: org.apache.maven.execution < plexus.core
    [DEBUG]   Imported: org.apache.maven.execution.scope < plexus.core
    [DEBUG]   Imported: org.apache.maven.lifecycle < plexus.core
    [DEBUG]   Imported: org.apache.maven.model < plexus.core
    [DEBUG]   Imported: org.apache.maven.monitor < plexus.core
    [DEBUG]   Imported: org.apache.maven.plugin < plexus.core
    [DEBUG]   Imported: org.apache.maven.profiles < plexus.core
    [DEBUG]   Imported: org.apache.maven.project < plexus.core
    [DEBUG]   Imported: org.apache.maven.reporting < plexus.core
    [DEBUG]   Imported: org.apache.maven.repository < plexus.core
    [DEBUG]   Imported: org.apache.maven.rtinfo < plexus.core
    [DEBUG]   Imported: org.apache.maven.settings < plexus.core
    [DEBUG]   Imported: org.apache.maven.toolchain < plexus.core
    [DEBUG]   Imported: org.apache.maven.usability < plexus.core
    [DEBUG]   Imported: org.apache.maven.wagon.* < plexus.core
    [DEBUG]   Imported: org.apache.maven.wagon.authentication < plexus.core
    [DEBUG]   Imported: org.apache.maven.wagon.authorization < plexus.core
    [DEBUG]   Imported: org.apache.maven.wagon.events < plexus.core
    [DEBUG]   Imported: org.apache.maven.wagon.observers < plexus.core
    [DEBUG]   Imported: org.apache.maven.wagon.proxy < plexus.core
    [DEBUG]   Imported: org.apache.maven.wagon.repository < plexus.core
    [DEBUG]   Imported: org.apache.maven.wagon.resource < plexus.core
    [DEBUG]   Imported: org.codehaus.classworlds < plexus.core
    [DEBUG]   Imported: org.codehaus.plexus.* < plexus.core
    [DEBUG]   Imported: org.codehaus.plexus.classworlds < plexus.core
    [DEBUG]   Imported: org.codehaus.plexus.component < plexus.core
    [DEBUG]   Imported: org.codehaus.plexus.configuration < plexus.core
    [DEBUG]   Imported: org.codehaus.plexus.container < plexus.core
    [DEBUG]   Imported: org.codehaus.plexus.context < plexus.core
    [DEBUG]   Imported: org.codehaus.plexus.lifecycle < plexus.core
    [DEBUG]   Imported: org.codehaus.plexus.logging < plexus.core
    [DEBUG]   Imported: org.codehaus.plexus.personality < plexus.core
    [DEBUG]   Imported: org.codehaus.plexus.util.xml.Xpp3Dom < plexus.core
    [DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser < plexus.core
    [DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlPullParserException < plexus.core
    [DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer < plexus.core
    [DEBUG]   Imported: org.eclipse.aether.* < plexus.core
    [DEBUG]   Imported: org.eclipse.aether.artifact < plexus.core
    [DEBUG]   Imported: org.eclipse.aether.collection < plexus.core
    [DEBUG]   Imported: org.eclipse.aether.deployment < plexus.core
    [DEBUG]   Imported: org.eclipse.aether.graph < plexus.core
    [DEBUG]   Imported: org.eclipse.aether.impl < plexus.core
    [DEBUG]   Imported: org.eclipse.aether.installation < plexus.core
    [DEBUG]   Imported: org.eclipse.aether.internal.impl < plexus.core
    [DEBUG]   Imported: org.eclipse.aether.metadata < plexus.core
    [DEBUG]   Imported: org.eclipse.aether.repository < plexus.core
    [DEBUG]   Imported: org.eclipse.aether.resolution < plexus.core
    [DEBUG]   Imported: org.eclipse.aether.spi < plexus.core
    [DEBUG]   Imported: org.eclipse.aether.transfer < plexus.core
    [DEBUG]   Imported: org.eclipse.aether.version < plexus.core
    [DEBUG]   Imported: org.slf4j.* < plexus.core
    [DEBUG]   Imported: org.slf4j.helpers.* < plexus.core
    [DEBUG]   Imported: org.slf4j.spi.* < plexus.core
    [DEBUG] Populating class realm maven.api
    [INFO] Error stacktraces are turned on.
    [DEBUG] Reading global settings from EMBEDDED\conf\settings.xml
    [DEBUG] Reading user settings from C:\Users\User1\.m2\settings.xml
    [DEBUG] Reading global toolchains from EMBEDDED\conf\toolchains.xml
    [DEBUG] Reading user toolchains from C:\Users\User1\.m2\toolchains.xml
    [DEBUG] Using local repository at C:\Users\User1\.m2\repository
    [DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10.0 for C:\Users\User1\.m2\repository
    [INFO] Scanning for projects...
    [DEBUG] Extension realms for project cToric:cToric: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: cToric:cToric:war:0.0.1-SNAPSHOT
    [DEBUG] Tasks:   [package]
    [DEBUG] Style:   Regular
    [DEBUG] =======================================================================
    [INFO]                                                                         
    [INFO] ------------------------------------------------------------------------
    [INFO] Building cToric 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] 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] 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:       cToric:cToric:0.0.1-SNAPSHOT
    [DEBUG] Dependencies (collect): []
    [DEBUG] Dependencies (resolve): [compile, runtime, test]
    [DEBUG] Repositories (dependencies): [primefaces-repository (<a href="http://repository.primefaces.org" target="_blank">http://repository.primefaces.org</a>, default, releases+snapshots), central (<a href="https://repo.maven.apache.org/maven2" target="_blank">https://repo.maven.apache.org/maven2</a>, default, releases)]
    [DEBUG] Repositories (plugins)     : [central (<a href="https://repo.maven.apache.org/maven2" target="_blank">https://repo.maven.apache.org/maven2</a>, default, releases)]
    [DEBUG] -----------------------------------------------------------------------
    [DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.6: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:3.7.0: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}"/>
      <compilePath 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>
      <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
      <forceJavacCompilerUse default-value="false">${maven.compiler.forceJavacCompilerUse}</forceJavacCompilerUse>
      <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>
      <mojoExecution default-value="${mojoExecution}"/>
      <optimize default-value="false">${maven.compiler.optimize}</optimize>
      <outputDirectory default-value="${project.build.outputDirectory}"/>
      <parameters default-value="false">${maven.compiler.parameters}</parameters>
      <project default-value="${project}"/>
      <projectArtifact default-value="${project.artifact}"/>
      <release>${maven.compiler.release}</release>
      <session default-value="${session}"/>
      <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
      <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
      <skipMain>${maven.main.skip}</skipMain>
      <skipMultiThreadWarning default-value="false">${maven.compiler.skipMultiThreadWarning}</skipMultiThreadWarning>
      <source default-value="1.5">1.8</source>
      <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
      <target default-value="1.5">1.8</target>
      <useIncrementalCompilation default-value="true">${maven.compiler.useIncrementalCompilation}</useIncrementalCompilation>
      <verbose default-value="false">${maven.compiler.verbose}</verbose>
    </configuration>
    [DEBUG] -----------------------------------------------------------------------
    [DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.6:testResources (default-testResources)
    [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.testOutputDirectory}"/>
      <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
      <project default-value="${project}"/>
      <resources default-value="${project.testResources}"/>
      <session default-value="${session}"/>
      <skip>${maven.test.skip}</skip>
      <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:3.7.0:testCompile (default-testCompile)
    [DEBUG] Style:         Regular
    [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
    <configuration>
      <basedir default-value="${basedir}"/>
      <buildDirectory default-value="${project.build.directory}"/>
      <compilePath default-value="${project.compileClasspathElements}"/>
      <compileSourceRoots default-value="${project.testCompileSourceRoots}"/>
      <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>
      <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
      <forceJavacCompilerUse default-value="false">${maven.compiler.forceJavacCompilerUse}</forceJavacCompilerUse>
      <fork default-value="false">${maven.compiler.fork}</fork>
      <generatedTestSourcesDirectory default-value="${project.build.directory}/generated-test-sources/test-annotations"/>
      <maxmem>${maven.compiler.maxmem}</maxmem>
      <meminitial>${maven.compiler.meminitial}</meminitial>
      <mojoExecution default-value="${mojoExecution}"/>
      <optimize default-value="false">${maven.compiler.optimize}</optimize>
      <outputDirectory default-value="${project.build.testOutputDirectory}"/>
      <parameters default-value="false">${maven.compiler.parameters}</parameters>
      <project default-value="${project}"/>
      <release>${maven.compiler.release}</release>
      <session default-value="${session}"/>
      <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
      <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
      <skip>${maven.test.skip}</skip>
      <skipMultiThreadWarning default-value="false">${maven.compiler.skipMultiThreadWarning}</skipMultiThreadWarning>
      <source default-value="1.5">1.8</source>
      <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
      <target default-value="1.5">1.8</target>
      <testPath default-value="${project.testClasspathElements}"/>
      <testRelease>${maven.compiler.testRelease}</testRelease>
      <testSource>${maven.compiler.testSource}</testSource>
      <testTarget>${maven.compiler.testTarget}</testTarget>
      <useIncrementalCompilation default-value="true">${maven.compiler.useIncrementalCompilation}</useIncrementalCompilation>
      <verbose default-value="false">${maven.compiler.verbose}</verbose>
    </configuration>
    [DEBUG] -----------------------------------------------------------------------
    [DEBUG] Goal:          org.apache.maven.plugins:maven-surefire-plugin:2.12.4:test (default-test)
    [DEBUG] Style:         Regular
    [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
    <configuration>
      <argLine>${argLine}</argLine>
      <basedir default-value="${basedir}"/>
      <childDelegation default-value="false">${childDelegation}</childDelegation>
      <classesDirectory default-value="${project.build.outputDirectory}"/>
      <debugForkedProcess>${maven.surefire.debug}</debugForkedProcess>
      <disableXmlReport default-value="false">${disableXmlReport}</disableXmlReport>
      <enableAssertions default-value="true">${enableAssertions}</enableAssertions>
      <excludedGroups>${excludedGroups}</excludedGroups>
      <failIfNoSpecifiedTests>${surefire.failIfNoSpecifiedTests}</failIfNoSpecifiedTests>
      <failIfNoTests>${failIfNoTests}</failIfNoTests>
      <forkMode default-value="once">${forkMode}</forkMode>
      <forkedProcessTimeoutInSeconds>${surefire.timeout}</forkedProcessTimeoutInSeconds>
      <groups>${groups}</groups>
      <junitArtifactName default-value="junit:junit">${junitArtifactName}</junitArtifactName>
      <jvm>${jvm}</jvm>
      <localRepository default-value="${localRepository}"/>
      <objectFactory>${objectFactory}</objectFactory>
      <parallel>${parallel}</parallel>
      <parallelMavenExecution default-value="${session.parallel}"/>
      <perCoreThreadCount default-value="true">${perCoreThreadCount}</perCoreThreadCount>
      <pluginArtifactMap>${plugin.artifactMap}</pluginArtifactMap>
      <pluginDescriptor default-value="${plugin}"/>
      <printSummary default-value="true">${surefire.printSummary}</printSummary>
      <projectArtifactMap>${project.artifactMap}</projectArtifactMap>
      <redirectTestOutputToFile default-value="false">${maven.test.redirectTestOutputToFile}</redirectTestOutputToFile>
      <remoteRepositories default-value="${project.pluginArtifactRepositories}"/>
      <reportFormat default-value="brief">${surefire.reportFormat}</reportFormat>
      <reportNameSuffix default-value="">${surefire.reportNameSuffix}</reportNameSuffix>
      <reportsDirectory default-value="${project.build.directory}/surefire-reports"/>
      <runOrder default-value="filesystem"/>
      <skip default-value="false">${maven.test.skip}</skip>
      <skipExec>${maven.test.skip.exec}</skipExec>
      <skipTests default-value="false">${skipTests}</skipTests>
      <test>${test}</test>
      <testClassesDirectory default-value="${project.build.testOutputDirectory}"/>
      <testFailureIgnore default-value="false">${maven.test.failure.ignore}</testFailureIgnore>
      <testNGArtifactName default-value="org.testng:testng">${testNGArtifactName}</testNGArtifactName>
      <testSourceDirectory default-value="${project.build.testSourceDirectory}"/>
      <threadCount>${threadCount}</threadCount>
      <trimStackTrace default-value="true">${trimStackTrace}</trimStackTrace>
      <useFile default-value="true">${surefire.useFile}</useFile>
      <useManifestOnlyJar default-value="true">${surefire.useManifestOnlyJar}</useManifestOnlyJar>
      <useSystemClassLoader default-value="true">${surefire.useSystemClassLoader}</useSystemClassLoader>
      <useUnlimitedThreads default-value="false">${useUnlimitedThreads}</useUnlimitedThreads>
      <workingDirectory>${basedir}</workingDirectory>
      <project default-value="${project}"/>
      <session default-value="${session}"/>
    </configuration>
    [DEBUG] -----------------------------------------------------------------------
    [DEBUG] Goal:          org.apache.maven.plugins:maven-war-plugin:3.0.0:war (default-war)
    [DEBUG] Style:         Regular
    [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
    <configuration>
      <archiveClasses default-value="false"/>
      <attachClasses default-value="false"/>
      <cacheFile default-value="${project.build.directory}/war/work/webapp-cache.xml"/>
      <classesClassifier default-value="classes"/>
      <classesDirectory default-value="${project.build.outputDirectory}"/>
      <escapedBackslashesInFilePath default-value="false"/>
      <failOnMissingWebXml default-value="false"/>
      <filteringDeploymentDescriptors default-value="false"/>
      <includeEmptyDirectories default-value="false"/>
      <outputDirectory default-value="${project.build.directory}"/>
      <primaryArtifact default-value="true"/>
      <project default-value="${project}"/>
      <recompressZippedFiles default-value="true"/>
      <resourceEncoding default-value="${project.build.sourceEncoding}"/>
      <session default-value="${session}"/>
      <skip default-value="false">${maven.war.skip}</skip>
      <supportMultiLineFiltering default-value="false"/>
      <useCache default-value="false"/>
      <useDefaultDelimiters default-value="true"/>
      <useJvmChmod default-value="true"/>
      <warName default-value="${project.build.finalName}"/>
      <warSourceDirectory default-value="${basedir}/src/main/webapp">WebContent</warSourceDirectory>
      <warSourceIncludes default-value="**"/>
      <webappDirectory default-value="${project.build.directory}/${project.build.finalName}"/>
      <workDirectory default-value="${project.build.directory}/war/work"/>
    </configuration>
    [DEBUG] =======================================================================
    [DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=1, ConflictMarker.markTime=0, ConflictMarker.nodeCount=31, ConflictIdSorter.graphTime=1, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=25, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=4, ConflictResolver.conflictItemCount=29, DefaultDependencyCollector.collectTime=165, DefaultDependencyCollector.transformTime=8}
    [DEBUG] cToric:cToric:war:0.0.1-SNAPSHOT
    [DEBUG]    org.primefaces:primefaces:jar:6.2:compile
    [DEBUG]    com.sun.faces:jsf-api:jar:2.2.18:compile
    [DEBUG]    javax.validation:validation-api:jar:2.0.1.Final:compile
    [DEBUG]    log4j:log4j:jar:1.2.17:compile
    [DEBUG]    org.json:json:jar:20180813:compile
    [DEBUG]    org.hibernate:hibernate-core:jar:5.4.2.Final:compile
    [DEBUG]       org.jboss.logging:jboss-logging:jar:3.3.2.Final:compile
    [DEBUG]       javax.persistence:javax.persistence-api:jar:2.2:compile
    [DEBUG]       org.javassist:javassist:jar:3.24.0-GA:compile
    [DEBUG]       net.bytebuddy:byte-buddy:jar:1.9.10:compile
    [DEBUG]       antlr:antlr:jar:2.7.7:compile
    [DEBUG]       org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:jar:1.1.1.Final:compile
    [DEBUG]       org.jboss:jandex:jar:2.0.5.Final:compile
    [DEBUG]       com.fasterxml:classmate:jar:1.3.4:compile
    [DEBUG]       javax.activation:javax.activation-api:jar:1.2.0:compile
    [DEBUG]       org.dom4j:dom4j:jar:2.1.1:compile
    [DEBUG]       org.hibernate.common:hibernate-commons-annotations:jar:5.1.0.Final:compile
    [DEBUG]       javax.xml.bind:jaxb-api:jar:2.3.1:compile
    [DEBUG]       org.glassfish.jaxb:jaxb-runtime:jar:2.3.1:compile
    [DEBUG]          org.glassfish.jaxb:txw2:jar:2.3.1:compile
    [DEBUG]          com.sun.istack:istack-commons-runtime:jar:3.0.7:compile
    [DEBUG]          org.jvnet.staxex:stax-ex:jar:1.8:compile
    [DEBUG]          com.sun.xml.fastinfoset:FastInfoset:jar:1.2.15:compile
    [DEBUG]    mysql:mysql-connector-java:jar:8.0.15:compile
    [DEBUG]       com.google.protobuf:protobuf-java:jar:3.6.1:compile
    [INFO] 
    [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ cToric ---
    [DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=0, ConflictMarker.nodeCount=77, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=26, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=2, ConflictResolver.conflictItemCount=74, DefaultDependencyCollector.collectTime=136, DefaultDependencyCollector.transformTime=2}
    [DEBUG] org.apache.maven.plugins:maven-resources-plugin:jar:2.6:
    [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.1: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.6
    [DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.6
    [DEBUG]   Imported:  < maven.api
    [DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.6
    [DEBUG]   Included: org.apache.maven.plugins:maven-resources-plugin:jar:2.6
    [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.1
    [DEBUG]   Included: org.sonatype.plexus:plexus-build-api:jar:0.0.4
    [DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.13
    [DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.6:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.6, parent: sun.misc.Launcher$AppClassLoader@33909752]
    [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.6:resources' with basic configurator -->
    [DEBUG]   (f) buildFilters = []
    [DEBUG]   (f) escapeWindowsPaths = true
    [DEBUG]   (s) includeEmptyDirs = false
    [DEBUG]   (s) outputDirectory = C:\Users\User1\eclipse-workspace\cToric\target\classes
    [DEBUG]   (s) overwrite = false
    [DEBUG]   (f) project = MavenProject: cToric:cToric:0.0.1-SNAPSHOT @ C:\Users\User1\eclipse-workspace\cToric\pom.xml
    [DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Users\User1\eclipse-workspace\cToric\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
    [DEBUG]   (f) session = org.apache.maven.execution.MavenSession@5fb97279
    [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, env.USERDOMAIN_ROAMINGPROFILE=CUTTING-EDGE, env.DEFLOGDIR=C:\ProgramData\McAfee\DesktopProtection, sun.java.launcher=SUN_STANDARD, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.ONEDRIVE=C:\Users\User1\OneDrive, os.name=Windows 10, sun.boot.class.path=C:\Program Files\Java\jre1.8.0_161\lib\resources.jar;C:\Program Files\Java\jre1.8.0_161\lib\rt.jar;C:\Program Files\Java\jre1.8.0_161\lib\sunrsasign.jar;C:\Program Files\Java\jre1.8.0_161\lib\jsse.jar;C:\Program Files\Java\jre1.8.0_161\lib\jce.jar;C:\Program Files\Java\jre1.8.0_161\lib\charsets.jar;C:\Program Files\Java\jre1.8.0_161\lib\jfr.jar;C:\Program Files\Java\jre1.8.0_161\classes, env.COMPUTERNAME=TLSGITELRW102, env.ALLUSERSPROFILE=C:\ProgramData, sun.desktop=windows, java.vm.specification.vendor=Oracle Corporation, java.runtime.version=1.8.0_161-b12, env.HOMEPATH=\Users\User1, user.name=GitelR, maven.build.version=Apache Maven 3.3.9 (bb52d8502b132ec0a5a3f4c09453c07478323dc5; 2015-11-10T17:41:47+01:00), env.PATH=C:/Program Files/Java/jre1.8.0_161/bin/server;C:/Program Files/Java/jre1.8.0_161/bin;C:/Program Files/Java/jre1.8.0_161/lib/amd64;C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\PuTTY\;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET Web Pages\v1.0\;C:\Program Files (x86)\Windows Kits\8.0\Windows Performance Toolkit\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Programs\apache-maven-3.6.0\bin;C:\Users\User1\AppData\Local\Microsoft\WindowsApps;;C:\Users\User1\Desktop;, user.language=fr, env.WINDIR=C:\Windows, sun.boot.library.path=C:\Program Files\Java\jre1.8.0_161\bin, classworlds.conf=C:\Users\User1\eclipse-workspace\.metadata\.plugins\org.eclipse.m2e.launching\launches\m2conf926884700155990514.tmp, java.version=1.8.0_161, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 158 Stepping 9, GenuineIntel, user.timezone=Europe/Paris, env.TEMP=C:\Users\GITELR~1.CUT\AppData\Local\Temp, sun.arch.data.model=64, java.endorsed.dirs=C:\Program Files\Java\jre1.8.0_161\lib\endorsed, env.VSEDEFLOGDIR=C:\ProgramData\McAfee\DesktopProtection, sun.cpu.isalist=amd64, env.HOMEDRIVE=C:, sun.jnu.encoding=Cp1252, file.encoding.pkg=sun.io, env.VS110COMNTOOLS=C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\Tools\, env.SYSTEMDRIVE=C:, file.separator=\, java.specification.name=Java Platform API Specification, java.class.version=52.0, org.slf4j.simpleLogger.defaultLogLevel=debug, user.country=FR, java.home=C:\Program Files\Java\jre1.8.0_161, env.APPDATA=C:\Users\User1\AppData\Roaming, env.CONFIGSETROOT=C:\Windows\ConfigSetRoot, env.PUBLIC=C:\Users\Public, java.vm.info=mixed mode, env.OS=Windows_NT, os.version=10.0, env.=::=::\, path.separator=;, java.vm.version=25.161-b12, env.ASL.LOG=Destination=file, env.USERPROFILE=C:\Users\User1, user.variant=, java.awt.printerjob=sun.awt.windows.WPrinterJob, env.TMP=C:\Users\GITELR~1.CUT\AppData\Local\Temp, env.FPS_BROWSER_USER_PROFILE_STRING=Default, env.PROGRAMFILES=C:\Program Files, sun.io.unicode.encoding=UnicodeLittle, awt.toolkit=sun.awt.windows.WToolkit, user.script=, user.home=C:\Users\User1, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, env.SESSIONNAME=Console, java.specification.vendor=Oracle Corporation, env.NUMBER_OF_PROCESSORS=8, java.library.path=C:\Program Files\Java\jre1.8.0_161\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:/Program Files/Java/jre1.8.0_161/bin/server;C:/Program Files/Java/jre1.8.0_161/bin;C:/Program Files/Java/jre1.8.0_161/lib/amd64;C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\PuTTY\;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET Web Pages\v1.0\;C:\Program Files (x86)\Windows Kits\8.0\Windows Performance Toolkit\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Programs\apache-maven-3.6.0\bin;C:\Users\User1\AppData\Local\Microsoft\WindowsApps;;C:\Users\User1\Desktop;;., java.vendor.url=http://java.oracle.com/, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.USERDNSDOMAIN=CUTTING-EDGE.FR, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules, java.vm.vendor=Oracle Corporation, maven.home=C:\Users\User1\eclipse-workspace\cToric\EMBEDDED, java.runtime.name=Java(TM) SE Runtime Environment, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher -B -X -e package, java.class.path=C:\Users\User1\.p2\pool\plugins\org.eclipse.m2e.maven.runtime_1.8.2.20171007-0216\jars\plexus-classworlds-2.5.2.jar, env.PROGRAMW6432=C:\Program Files, maven.version=3.3.9, env.PROGRAMFILES(X86)=C:\Program Files (x86), java.vm.specification.name=Java Virtual Machine Specification, env.LOGONSERVER=\\ARTHUR, java.vm.specification.version=1.8, env.PROCESSOR_ARCHITECTURE=AMD64, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, sun.cpu.endian=little, sun.os.patch.level=, env.PROCESSOR_REVISION=9e09, java.io.tmpdir=C:\Users\GITELR~1.CUT\AppData\Local\Temp\, java.vendor.url.bug=http://bugreport.sun.com/bugreport/, maven.multiModuleProjectDirectory=C:\Users\User1\eclipse-workspace\cToric, env.PROGRAMDATA=C:\ProgramData, env.COMSPEC=C:\Windows\system32\cmd.exe, env.FPS_BROWSER_APP_PROFILE_STRING=Internet Explorer, os.arch=amd64, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, java.ext.dirs=C:\Program Files\Java\jre1.8.0_161\lib\ext;C:\Windows\Sun\Java\lib\ext, env.LOCALAPPDATA=C:\Users\User1\AppData\Local, user.dir=C:\Users\User1\eclipse-workspace\cToric, line.separator=
    , java.vm.name=Java HotSpot(TM) 64-Bit Server VM, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, env.CAB_HOME_R14=C:\Program Files (x86)\CA\SharedComponents\ARCserve Backup\Setup\r16\, env.USERNAME=GitelR, file.encoding=Cp1252, env.USERDOMAIN=CUTTING-EDGE, java.specification.version=1.8, env.PROCESSOR_LEVEL=6}
    [WARNING] Using platform encoding (Cp1252 actually) to copy filtered resources, i.e. build is platform dependent!
    [DEBUG] resource with targetPath null
    directory C:\Users\User1\eclipse-workspace\cToric\src\main\resources
    excludes []
    includes []
    [INFO] skip non existing resourceDirectory C:\Users\User1\eclipse-workspace\cToric\src\main\resources
    [DEBUG] no use filter components
    [INFO] 
    [INFO] --- maven-compiler-plugin:3.7.0:compile (default-compile) @ cToric ---
    [DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=0, ConflictMarker.nodeCount=118, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=45, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=1, ConflictResolver.conflictItemCount=72, DefaultDependencyCollector.collectTime=260, DefaultDependencyCollector.transformTime=1}
    [DEBUG] org.apache.maven.plugins:maven-compiler-plugin:jar:3.7.0:
    [DEBUG]    org.apache.maven:maven-plugin-api:jar:3.0:compile
    [DEBUG]       org.apache.maven:maven-model:jar:3.0:compile
    [DEBUG]       org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile
    [DEBUG]          org.sonatype.sisu:sisu-inject-bean:jar:1.4.2:compile
    [DEBUG]             org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7:compile
    [DEBUG]    org.apache.maven:maven-artifact:jar:3.0:compile
    [DEBUG]       org.codehaus.plexus:plexus-utils:jar:2.0.4:compile
    [DEBUG]    org.apache.maven:maven-core:jar:3.0:compile
    [DEBUG]       org.apache.maven:maven-settings:jar:3.0:compile
    [DEBUG]       org.apache.maven:maven-settings-builder:jar:3.0:compile
    [DEBUG]       org.apache.maven:maven-repository-metadata:jar:3.0:compile
    [DEBUG]       org.apache.maven:maven-model-builder:jar:3.0:compile
    [DEBUG]       org.apache.maven:maven-aether-provider:jar:3.0:runtime
    [DEBUG]       org.sonatype.aether:aether-impl:jar:1.7:compile
    [DEBUG]          org.sonatype.aether:aether-spi:jar:1.7:compile
    [DEBUG]       org.sonatype.aether:aether-api:jar:1.7:compile
    [DEBUG]       org.sonatype.aether:aether-util:jar:1.7:compile
    [DEBUG]       org.codehaus.plexus:plexus-interpolation:jar:1.14:compile
    [DEBUG]       org.codehaus.plexus:plexus-classworlds:jar:2.2.3:compile
    [DEBUG]       org.codehaus.plexus:plexus-component-annotations:jar:1.6:compile
    [DEBUG]       org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile
    [DEBUG]          org.sonatype.plexus:plexus-cipher:jar:1.4:compile
    [DEBUG]    org.apache.maven.shared:maven-shared-utils:jar:3.1.0:compile
    [DEBUG]       commons-io:commons-io:jar:2.5:compile
    [DEBUG]    org.apache.maven.shared:maven-shared-incremental:jar:1.1:compile
    [DEBUG]    org.codehaus.plexus:plexus-java:jar:0.9.2:compile
    [DEBUG]       org.ow2.asm:asm:jar:6.0_BETA:compile
    [DEBUG]       com.thoughtworks.qdox:qdox:jar:2.0-M7:compile
    [DEBUG]    org.codehaus.plexus:plexus-compiler-api:jar:2.8.2:compile
    [DEBUG]    org.codehaus.plexus:plexus-compiler-manager:jar:2.8.2:compile
    [DEBUG]    org.codehaus.plexus:plexus-compiler-javac:jar:2.8.2:runtime
    [DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.7.0
    [DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.7.0
    [DEBUG]   Imported:  < maven.api
    [DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.7.0
    [DEBUG]   Included: org.apache.maven.plugins:maven-compiler-plugin:jar:3.7.0
    [DEBUG]   Included: org.sonatype.sisu:sisu-inject-bean:jar:1.4.2
    [DEBUG]   Included: org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7
    [DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:2.0.4
    [DEBUG]   Included: org.sonatype.aether:aether-util:jar:1.7
    [DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.14
    [DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:1.6
    [DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3
    [DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.4
    [DEBUG]   Included: org.apache.maven.shared:maven-shared-utils:jar:3.1.0
    [DEBUG]   Included: commons-io:commons-io:jar:2.5
    [DEBUG]   Included: org.apache.maven.shared:maven-shared-incremental:jar:1.1
    [DEBUG]   Included: org.codehaus.plexus:plexus-java:jar:0.9.2
    [DEBUG]   Included: org.ow2.asm:asm:jar:6.0_BETA
    [DEBUG]   Included: com.thoughtworks.qdox:qdox:jar:2.0-M7
    [DEBUG]   Included: org.codehaus.plexus:plexus-compiler-api:jar:2.8.2
    [DEBUG]   Included: org.codehaus.plexus:plexus-compiler-manager:jar:2.8.2
    [DEBUG]   Included: org.codehaus.plexus:plexus-compiler-javac:jar:2.8.2
    [DEBUG] Configuring mojo org.apache.maven.plugins:maven-compiler-plugin:3.7.0:compile from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-compiler-plugin:3.7.0, parent: sun.misc.Launcher$AppClassLoader@33909752]
    [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-compiler-plugin:3.7.0:compile' with basic configurator -->
    [DEBUG]   (f) basedir = C:\Users\User1\eclipse-workspace\cToric
    [DEBUG]   (f) buildDirectory = C:\Users\User1\eclipse-workspace\cToric\target
    [DEBUG]   (f) compilePath = [C:\Users\User1\eclipse-workspace\cToric\target\classes, C:\Users\User1\.m2\repository\org\primefaces\primefaces\6.2\primefaces-6.2.jar, C:\Users\User1\.m2\repository\com\sun\faces\jsf-api\2.2.18\jsf-api-2.2.18.jar, C:\Users\User1\.m2\repository\javax\validation\validation-api\2.0.1.Final\validation-api-2.0.1.Final.jar, C:\Users\User1\.m2\repository\log4j\log4j\1.2.17\log4j-1.2.17.jar, C:\Users\User1\.m2\repository\org\json\json\20180813\json-20180813.jar, C:\Users\User1\.m2\repository\org\hibernate\hibernate-core\5.4.2.Final\hibernate-core-5.4.2.Final.jar, C:\Users\User1\.m2\repository\org\jboss\logging\jboss-logging\3.3.2.Final\jboss-logging-3.3.2.Final.jar, C:\Users\User1\.m2\repository\javax\persistence\javax.persistence-api\2.2\javax.persistence-api-2.2.jar, C:\Users\User1\.m2\repository\org\javassist\javassist\3.24.0-GA\javassist-3.24.0-GA.jar, C:\Users\User1\.m2\repository\net\bytebuddy\byte-buddy\1.9.10\byte-buddy-1.9.10.jar, C:\Users\User1\.m2\repository\antlr\antlr\2.7.7\antlr-2.7.7.jar, C:\Users\User1\.m2\repository\org\jboss\spec\javax\transaction\jboss-transaction-api_1.2_spec\1.1.1.Final\jboss-transaction-api_1.2_spec-1.1.1.Final.jar, C:\Users\User1\.m2\repository\org\jboss\jandex\2.0.5.Final\jandex-2.0.5.Final.jar, C:\Users\User1\.m2\repository\com\fasterxml\classmate\1.3.4\classmate-1.3.4.jar, C:\Users\User1\.m2\repository\javax\activation\javax.activation-api\1.2.0\javax.activation-api-1.2.0.jar, C:\Users\User1\.m2\repository\org\dom4j\dom4j\2.1.1\dom4j-2.1.1.jar, C:\Users\User1\.m2\repository\org\hibernate\common\hibernate-commons-annotations\5.1.0.Final\hibernate-commons-annotations-5.1.0.Final.jar, C:\Users\User1\.m2\repository\javax\xml\bind\jaxb-api\2.3.1\jaxb-api-2.3.1.jar, C:\Users\User1\.m2\repository\org\glassfish\jaxb\jaxb-runtime\2.3.1\jaxb-runtime-2.3.1.jar, C:\Users\User1\.m2\repository\org\glassfish\jaxb\txw2\2.3.1\txw2-2.3.1.jar, C:\Users\User1\.m2\repository\com\sun\istack\istack-commons-runtime\3.0.7\istack-commons-runtime-3.0.7.jar, C:\Users\User1\.m2\repository\org\jvnet\staxex\stax-ex\1.8\stax-ex-1.8.jar, C:\Users\User1\.m2\repository\com\sun\xml\fastinfoset\FastInfoset\1.2.15\FastInfoset-1.2.15.jar, C:\Users\User1\.m2\repository\mysql\mysql-connector-java\8.0.15\mysql-connector-java-8.0.15.jar, C:\Users\User1\.m2\repository\com\google\protobuf\protobuf-java\3.6.1\protobuf-java-3.6.1.jar]
    [DEBUG]   (f) compileSourceRoots = [C:\Users\User1\eclipse-workspace\cToric\src]
    [DEBUG]   (f) compilerId = javac
    [DEBUG]   (f) debug = true
    [DEBUG]   (f) failOnError = true
    [DEBUG]   (f) failOnWarning = false
    [DEBUG]   (f) forceJavacCompilerUse = false
    [DEBUG]   (f) fork = false
    [DEBUG]   (f) generatedSourcesDirectory = C:\Users\User1\eclipse-workspace\cToric\target\generated-sources\annotations
    [DEBUG]   (f) mojoExecution = org.apache.maven.plugins:maven-compiler-plugin:3.7.0:compile {execution: default-compile}
    [DEBUG]   (f) optimize = false
    [DEBUG]   (f) outputDirectory = C:\Users\User1\eclipse-workspace\cToric\target\classes
    [DEBUG]   (f) parameters = false
    [DEBUG]   (f) project = MavenProject: cToric:cToric:0.0.1-SNAPSHOT @ C:\Users\User1\eclipse-workspace\cToric\pom.xml
    [DEBUG]   (f) projectArtifact = cToric:cToric:war:0.0.1-SNAPSHOT
    [DEBUG]   (f) session = org.apache.maven.execution.MavenSession@5fb97279
    [DEBUG]   (f) showDeprecation = false
    [DEBUG]   (f) showWarnings = false
    [DEBUG]   (f) skipMultiThreadWarning = false
    [DEBUG]   (f) source = 1.8
    [DEBUG]   (f) staleMillis = 0
    [DEBUG]   (f) target = 1.8
    [DEBUG]   (f) useIncrementalCompilation = true
    [DEBUG]   (f) verbose = false
    [DEBUG] -- end configuration --
    [DEBUG] Using compiler 'javac'.
    [DEBUG] Adding C:\Users\User1\eclipse-workspace\cToric\target\generated-sources\annotations to compile source roots:
      C:\Users\User1\eclipse-workspace\cToric\src
    [DEBUG] New compile source roots:
      C:\Users\User1\eclipse-workspace\cToric\src
      C:\Users\User1\eclipse-workspace\cToric\target\generated-sources\annotations
    [DEBUG] CompilerReuseStrategy: reuseCreated
    [DEBUG] useIncrementalCompilation enabled
    [DEBUG] Stale source detected: C:\Users\User1\eclipse-workspace\cToric\src\cToric\test\Test.java
    [DEBUG] Stale source detected: C:\Users\User1\eclipse-workspace\cToric\src\cToric\MyLog4.java
    [DEBUG] Stale source detected: C:\Users\User1\eclipse-workspace\cToric\src\cToric\form\validator\AngleValidator.java
    [INFO] Changes detected - recompiling the module!
    [DEBUG] Classpath:
    [DEBUG]  C:\Users\User1\eclipse-workspace\cToric\target\classes
    [DEBUG]  C:\Users\User1\.m2\repository\org\primefaces\primefaces\6.2\primefaces-6.2.jar
    [DEBUG]  C:\Users\User1\.m2\repository\com\sun\faces\jsf-api\2.2.18\jsf-api-2.2.18.jar
    [DEBUG]  C:\Users\User1\.m2\repository\javax\validation\validation-api\2.0.1.Final\validation-api-2.0.1.Final.jar
    [DEBUG]  C:\Users\User1\.m2\repository\log4j\log4j\1.2.17\log4j-1.2.17.jar
    [DEBUG]  C:\Users\User1\.m2\repository\org\json\json\20180813\json-20180813.jar
    [DEBUG]  C:\Users\User1\.m2\repository\org\hibernate\hibernate-core\5.4.2.Final\hibernate-core-5.4.2.Final.jar
    [DEBUG]  C:\Users\User1\.m2\repository\org\jboss\logging\jboss-logging\3.3.2.Final\jboss-logging-3.3.2.Final.jar
    [DEBUG]  C:\Users\User1\.m2\repository\javax\persistence\javax.persistence-api\2.2\javax.persistence-api-2.2.jar
    [DEBUG]  C:\Users\User1\.m2\repository\org\javassist\javassist\3.24.0-GA\javassist-3.24.0-GA.jar
    [DEBUG]  C:\Users\User1\.m2\repository\net\bytebuddy\byte-buddy\1.9.10\byte-buddy-1.9.10.jar
    [DEBUG]  C:\Users\User1\.m2\repository\antlr\antlr\2.7.7\antlr-2.7.7.jar
    [DEBUG]  C:\Users\User1\.m2\repository\org\jboss\spec\javax\transaction\jboss-transaction-api_1.2_spec\1.1.1.Final\jboss-transaction-api_1.2_spec-1.1.1.Final.jar
    [DEBUG]  C:\Users\User1\.m2\repository\org\jboss\jandex\2.0.5.Final\jandex-2.0.5.Final.jar
    [DEBUG]  C:\Users\User1\.m2\repository\com\fasterxml\classmate\1.3.4\classmate-1.3.4.jar
    [DEBUG]  C:\Users\User1\.m2\repository\javax\activation\javax.activation-api\1.2.0\javax.activation-api-1.2.0.jar
    [DEBUG]  C:\Users\User1\.m2\repository\org\dom4j\dom4j\2.1.1\dom4j-2.1.1.jar
    [DEBUG]  C:\Users\User1\.m2\repository\org\hibernate\common\hibernate-commons-annotations\5.1.0.Final\hibernate-commons-annotations-5.1.0.Final.jar
    [DEBUG]  C:\Users\User1\.m2\repository\javax\xml\bind\jaxb-api\2.3.1\jaxb-api-2.3.1.jar
    [DEBUG]  C:\Users\User1\.m2\repository\org\glassfish\jaxb\jaxb-runtime\2.3.1\jaxb-runtime-2.3.1.jar
    [DEBUG]  C:\Users\User1\.m2\repository\org\glassfish\jaxb\txw2\2.3.1\txw2-2.3.1.jar
    [DEBUG]  C:\Users\User1\.m2\repository\com\sun\istack\istack-commons-runtime\3.0.7\istack-commons-runtime-3.0.7.jar
    [DEBUG]  C:\Users\User1\.m2\repository\org\jvnet\staxex\stax-ex\1.8\stax-ex-1.8.jar
    [DEBUG]  C:\Users\User1\.m2\repository\com\sun\xml\fastinfoset\FastInfoset\1.2.15\FastInfoset-1.2.15.jar
    [DEBUG]  C:\Users\User1\.m2\repository\mysql\mysql-connector-java\8.0.15\mysql-connector-java-8.0.15.jar
    [DEBUG]  C:\Users\User1\.m2\repository\com\google\protobuf\protobuf-java\3.6.1\protobuf-java-3.6.1.jar
    [DEBUG] Source roots:
    [DEBUG]  C:\Users\User1\eclipse-workspace\cToric\src
    [DEBUG]  C:\Users\User1\eclipse-workspace\cToric\target\generated-sources\annotations
    [DEBUG] Command line options:
    [DEBUG] -d C:\Users\User1\eclipse-workspace\cToric\target\classes -classpath C:\Users\User1\eclipse-workspace\cToric\target\classes;C:\Users\User1\.m2\repository\org\primefaces\primefaces\6.2\primefaces-6.2.jar;C:\Users\User1\.m2\repository\com\sun\faces\jsf-api\2.2.18\jsf-api-2.2.18.jar;C:\Users\User1\.m2\repository\javax\validation\validation-api\2.0.1.Final\validation-api-2.0.1.Final.jar;C:\Users\User1\.m2\repository\log4j\log4j\1.2.17\log4j-1.2.17.jar;C:\Users\User1\.m2\repository\org\json\json\20180813\json-20180813.jar;C:\Users\User1\.m2\repository\org\hibernate\hibernate-core\5.4.2.Final\hibernate-core-5.4.2.Final.jar;C:\Users\User1\.m2\repository\org\jboss\logging\jboss-logging\3.3.2.Final\jboss-logging-3.3.2.Final.jar;C:\Users\User1\.m2\repository\javax\persistence\javax.persistence-api\2.2\javax.persistence-api-2.2.jar;C:\Users\User1\.m2\repository\org\javassist\javassist\3.24.0-GA\javassist-3.24.0-GA.jar;C:\Users\User1\.m2\repository\net\bytebuddy\byte-buddy\1.9.10\byte-buddy-1.9.10.jar;C:\Users\User1\.m2\repository\antlr\antlr\2.7.7\antlr-2.7.7.jar;C:\Users\User1\.m2\repository\org\jboss\spec\javax\transaction\jboss-transaction-api_1.2_spec\1.1.1.Final\jboss-transaction-api_1.2_spec-1.1.1.Final.jar;C:\Users\User1\.m2\repository\org\jboss\jandex\2.0.5.Final\jandex-2.0.5.Final.jar;C:\Users\User1\.m2\repository\com\fasterxml\classmate\1.3.4\classmate-1.3.4.jar;C:\Users\User1\.m2\repository\javax\activation\javax.activation-api\1.2.0\javax.activation-api-1.2.0.jar;C:\Users\User1\.m2\repository\org\dom4j\dom4j\2.1.1\dom4j-2.1.1.jar;C:\Users\User1\.m2\repository\org\hibernate\common\hibernate-commons-annotations\5.1.0.Final\hibernate-commons-annotations-5.1.0.Final.jar;C:\Users\User1\.m2\repository\javax\xml\bind\jaxb-api\2.3.1\jaxb-api-2.3.1.jar;C:\Users\User1\.m2\repository\org\glassfish\jaxb\jaxb-runtime\2.3.1\jaxb-runtime-2.3.1.jar;C:\Users\User1\.m2\repository\org\glassfish\jaxb\txw2\2.3.1\txw2-2.3.1.jar;C:\Users\User1\.m2\repository\com\sun\istack\istack-commons-runtime\3.0.7\istack-commons-runtime-3.0.7.jar;C:\Users\User1\.m2\repository\org\jvnet\staxex\stax-ex\1.8\stax-ex-1.8.jar;C:\Users\User1\.m2\repository\com\sun\xml\fastinfoset\FastInfoset\1.2.15\FastInfoset-1.2.15.jar;C:\Users\User1\.m2\repository\mysql\mysql-connector-java\8.0.15\mysql-connector-java-8.0.15.jar;C:\Users\User1\.m2\repository\com\google\protobuf\protobuf-java\3.6.1\protobuf-java-3.6.1.jar; -sourcepath C:\Users\User1\eclipse-workspace\cToric\src;C:\Users\User1\eclipse-workspace\cToric\target\generated-sources\annotations; -s C:\Users\User1\eclipse-workspace\cToric\target\generated-sources\annotations -g -nowarn -target 1.8 -source 1.8
    [WARNING] File encoding has not been set, using platform encoding Cp1252, i.e. build is platform dependent!
    [DEBUG] incrementalBuildHelper#beforeRebuildExecution
    [INFO] Compiling 3 source files to C:\Users\User1\eclipse-workspace\cToric\target\classes
    [DEBUG] incrementalBuildHelper#afterRebuildExecution
    [INFO] -------------------------------------------------------------
    [ERROR] COMPILATION ERROR : 
    [INFO] -------------------------------------------------------------
    [ERROR] No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?
    [INFO] 1 error
    [INFO] -------------------------------------------------------------
    [INFO] ------------------------------------------------------------------------
    [INFO] BUILD FAILURE
    [INFO] ------------------------------------------------------------------------
    [INFO] Total time: 1.024 s
    [INFO] Finished at: 2019-03-30T09:34:32+01:00
    [INFO] Final Memory: 9M/243M
    [INFO] ------------------------------------------------------------------------
    [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.7.0:compile (default-compile) on project cToric: Compilation failure
    [ERROR] No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?
    [ERROR] -> [Help 1]
    org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.7.0:compile (default-compile) on project cToric: Compilation failure
    No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?
     
    	at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:212)
    	at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)
    	at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)
    	at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:116)
    	at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:80)
    	at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51)
    	at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:128)
    	at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:307)
    	at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:193)
    	at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:106)
    	at org.apache.maven.cli.MavenCli.execute(MavenCli.java:863)
    	at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:288)
    	at org.apache.maven.cli.MavenCli.main(MavenCli.java:199)
    	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    	at java.lang.reflect.Method.invoke(Unknown Source)
    	at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)
    	at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)
    	at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)
    	at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)
    Caused by: org.apache.maven.plugin.compiler.CompilationFailureException: Compilation failure
    No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?
     
    	at org.apache.maven.plugin.compiler.AbstractCompilerMojo.execute(AbstractCompilerMojo.java:1161)
    	at org.apache.maven.plugin.compiler.CompilerMojo.execute(CompilerMojo.java:168)
    	at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:134)
    	at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:207)
    	... 20 more
    [ERROR] 
    [ERROR] 
    [ERROR] For more information about the errors and possible solutions, please read the following articles:
    [ERROR] [Help 1] <a href="http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException" target="_blank">http://cwiki.apache.org/confluence/d...ilureException</a>
    - La communication consiste a comprendre celui qui ecoute !
    - Qui veut faire quelquechose trouve un moyen, qui ne veut rien faire trouve une excuse

  4. #4
    Membre chevronné Avatar de jeffray03
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Juillet 2008
    Messages
    1 501
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Allemagne

    Informations professionnelles :
    Activité : Développeur informatique

    Informations forums :
    Inscription : Juillet 2008
    Messages : 1 501
    Points : 2 120
    Points
    2 120
    Par défaut
    salut,
    ah oui je vois ou est ce qu´il ya probleme.
    tu deploies ton appli avec jre et non jdk.
    fais ceci:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    click droit sur le projet --> build path --> configure build path --> sur l´onglet lirairies --> assures toi que ton Java pointe bien sur jdk et non sur  jre.
    Eric

  5. #5
    Membre actif Avatar de Elwe31
    Profil pro
    Inscrit en
    Octobre 2004
    Messages
    487
    Détails du profil
    Informations personnelles :
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations forums :
    Inscription : Octobre 2004
    Messages : 487
    Points : 220
    Points
    220
    Par défaut
    Salut,

    Alors j'ai mis jdk1.8.0_202
    Et plus d'erreur (fin du log):
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
     
    [INFO] ------------------------------------------------------------------------
    [INFO] BUILD SUCCESS
    [INFO] ------------------------------------------------------------------------
    [INFO] Total time: 17.281 s
    [INFO] Finished at: 2019-03-30T18:52:54+01:00
    [INFO] Final Memory: 21M/164M
    [INFO] ------------------------------------------------------------------------
    Par contre, toujours le petit icone rouge sur le projet et le serveur Tomcat qui ne démarre pas !
    (pourquoi le petit icone est rouge et que l'on voit pas le probleme les éléments du projet ?)

    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
     
     
    mars 30, 2019 6:55:27 PM org.apache.tomcat.util.digester.SetPropertiesRule begin
    AVERTISSEMENT: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:cToric' did not find a matching property.
    mars 30, 2019 6:55:27 PM org.apache.catalina.startup.VersionLoggerListener log
    INFOS: Server version:        Apache Tomcat/8.5.28
    mars 30, 2019 6:55:27 PM org.apache.catalina.startup.VersionLoggerListener log
    INFOS: Server built:          Feb 6 2018 23:10:25 UTC
    mars 30, 2019 6:55:27 PM org.apache.catalina.startup.VersionLoggerListener log
    INFOS: Server number:         8.5.28.0
    mars 30, 2019 6:55:27 PM org.apache.catalina.startup.VersionLoggerListener log
    INFOS: OS Name:               Windows 10
    mars 30, 2019 6:55:27 PM org.apache.catalina.startup.VersionLoggerListener log
    INFOS: OS Version:            10.0
    mars 30, 2019 6:55:27 PM org.apache.catalina.startup.VersionLoggerListener log
    INFOS: Architecture:          amd64
    mars 30, 2019 6:55:27 PM org.apache.catalina.startup.VersionLoggerListener log
    INFOS: Java Home:             C:\Program Files\Java\jdk1.8.0_202\jre
    mars 30, 2019 6:55:27 PM org.apache.catalina.startup.VersionLoggerListener log
    INFOS: JVM Version:           1.8.0_202-b08
    mars 30, 2019 6:55:27 PM org.apache.catalina.startup.VersionLoggerListener log
    INFOS: JVM Vendor:            Oracle Corporation
    mars 30, 2019 6:55:27 PM org.apache.catalina.startup.VersionLoggerListener log
    INFOS: CATALINA_BASE:         C:\Users\User1\eclipse-workspace\.metadata\.plugins\org.eclipse.wst.server.core\tmp1
    mars 30, 2019 6:55:27 PM org.apache.catalina.startup.VersionLoggerListener log
    INFOS: CATALINA_HOME:         C:\Program Files\Apache Software Foundation\Tomcat 8.5
    mars 30, 2019 6:55:27 PM org.apache.catalina.startup.VersionLoggerListener log
    INFOS: Command line argument: -Dcatalina.base=C:\Users\User1\eclipse-workspace\.metadata\.plugins\org.eclipse.wst.server.core\tmp1
    mars 30, 2019 6:55:27 PM org.apache.catalina.startup.VersionLoggerListener log
    INFOS: Command line argument: -Dcatalina.home=C:\Program Files\Apache Software Foundation\Tomcat 8.5
    mars 30, 2019 6:55:27 PM org.apache.catalina.startup.VersionLoggerListener log
    INFOS: Command line argument: -Dwtp.deploy=C:\Users\User1\eclipse-workspace\.metadata\.plugins\org.eclipse.wst.server.core\tmp1\wtpwebapps
    mars 30, 2019 6:55:27 PM org.apache.catalina.startup.VersionLoggerListener log
    INFOS: Command line argument: -Djava.endorsed.dirs=C:\Program Files\Apache Software Foundation\Tomcat 8.5\endorsed
    mars 30, 2019 6:55:27 PM org.apache.catalina.startup.VersionLoggerListener log
    INFOS: Command line argument: -Dfile.encoding=Cp1252
    mars 30, 2019 6:55:27 PM org.apache.catalina.core.AprLifecycleListener lifecycleEvent
    INFOS: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: [C:\Program Files\Java\jdk1.8.0_202\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:/Program Files/Java/jre1.8.0_161/bin/server;C:/Program Files/Java/jre1.8.0_161/bin;C:/Program Files/Java/jre1.8.0_161/lib/amd64;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\PuTTY\;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET Web Pages\v1.0\;C:\Program Files (x86)\Windows Kits\8.0\Windows Performance Toolkit\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Programs\apache-maven-3.6.0\bin;C:\Users\User1\AppData\Local\Microsoft\WindowsApps;;C:\Users\User1\Desktop;;.]
    mars 30, 2019 6:55:27 PM org.apache.coyote.AbstractProtocol init
    INFOS: Initializing ProtocolHandler ["http-nio-8080"]
    mars 30, 2019 6:55:27 PM org.apache.tomcat.util.net.NioSelectorPool getSharedSelector
    INFOS: Using a shared selector for servlet write/read
    mars 30, 2019 6:55:27 PM org.apache.coyote.AbstractProtocol init
    INFOS: Initializing ProtocolHandler ["ajp-nio-8009"]
    mars 30, 2019 6:55:27 PM org.apache.tomcat.util.net.NioSelectorPool getSharedSelector
    INFOS: Using a shared selector for servlet write/read
    mars 30, 2019 6:55:27 PM org.apache.catalina.startup.Catalina load
    INFOS: Initialization processed in 814 ms
    mars 30, 2019 6:55:27 PM org.apache.tomcat.dbcp.dbcp2.BasicDataSourceFactory getObjectInstance
    AVERTISSEMENT: Name = calculateurdb Property maxActive is not used in DBCP2, use maxTotal instead. maxTotal default value is 8. You have set value of "4" for "maxActive" property, which is being ignored.
    mars 30, 2019 6:55:27 PM org.apache.tomcat.dbcp.dbcp2.BasicDataSourceFactory getObjectInstance
    AVERTISSEMENT: Name = calculateurdb Property maxWait is not used in DBCP2 , use maxWaitMillis instead. maxWaitMillis default value is -1. You have set value of "5000" for "maxWait" property, which is being ignored.
    mars 30, 2019 6:55:27 PM org.apache.catalina.core.StandardService startInternal
    INFOS: Démarrage du service [Catalina]
    mars 30, 2019 6:55:27 PM org.apache.catalina.core.StandardEngine startInternal
    INFOS: Starting Servlet Engine: Apache Tomcat/8.5.28
    mars 30, 2019 6:55:31 PM org.apache.jasper.servlet.TldScanner scanJars
    INFOS: At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found in them. Skipping unneeded JARs during scanning can improve startup time and JSP compilation time.
    mars 30, 2019 6:55:31 PM org.apache.catalina.core.ContainerBase startInternal
    GRAVE: A child container failed during start
    java.util.concurrent.ExecutionException: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext[/cToric]]
    	at java.util.concurrent.FutureTask.report(FutureTask.java:122)
    	at java.util.concurrent.FutureTask.get(FutureTask.java:192)
    	at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:939)
    	at org.apache.catalina.core.StandardHost.startInternal(StandardHost.java:872)
    	at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
    	at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1419)
    	at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1409)
    	at java.util.concurrent.FutureTask.run(FutureTask.java:266)
    	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
    	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    	at java.lang.Thread.run(Thread.java:748)
    Caused by: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext[/cToric]]
    	at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:167)
    	... 6 more
    Caused by: org.apache.catalina.LifecycleException: Failed to start component [org.apache.catalina.webresources.StandardRoot@74eead4b]
    	at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:167)
    	at org.apache.catalina.core.StandardContext.resourcesStart(StandardContext.java:4868)
    	at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5003)
    	at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
    	... 6 more
    Caused by: org.apache.catalina.LifecycleException: Failed to initialize component [org.apache.catalina.webresources.JarResourceSet@444cbe01]
    	at org.apache.catalina.util.LifecycleBase.init(LifecycleBase.java:113)
    	at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:140)
    	at org.apache.catalina.webresources.StandardRoot.startInternal(StandardRoot.java:724)
    	at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
    	... 9 more
    Caused by: java.lang.IllegalArgumentException: java.util.zip.ZipException: invalid CEN header (bad signature)
    	at org.apache.catalina.webresources.AbstractSingleArchiveResourceSet.initInternal(AbstractSingleArchiveResourceSet.java:142)
    	at org.apache.catalina.util.LifecycleBase.init(LifecycleBase.java:107)
    	... 12 more
    Caused by: java.util.zip.ZipException: invalid CEN header (bad signature)
    	at java.util.zip.ZipFile.open(Native Method)
    	at java.util.zip.ZipFile.<init>(ZipFile.java:225)
    	at java.util.zip.ZipFile.<init>(ZipFile.java:155)
    	at java.util.jar.JarFile.<init>(JarFile.java:166)
    	at java.util.jar.JarFile.<init>(JarFile.java:130)
    	at org.apache.tomcat.util.compat.JreCompat.jarFileNewInstance(JreCompat.java:188)
    	at org.apache.tomcat.util.compat.JreCompat.jarFileNewInstance(JreCompat.java:173)
    	at org.apache.catalina.webresources.AbstractSingleArchiveResourceSet.initInternal(AbstractSingleArchiveResourceSet.java:139)
    	... 13 more
     
    mars 30, 2019 6:55:31 PM org.apache.catalina.core.ContainerBase startInternal
    GRAVE: A child container failed during start
    java.util.concurrent.ExecutionException: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost]]
    	at java.util.concurrent.FutureTask.report(FutureTask.java:122)
    	at java.util.concurrent.FutureTask.get(FutureTask.java:192)
    	at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:939)
    	at org.apache.catalina.core.StandardEngine.startInternal(StandardEngine.java:262)
    	at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
    	at org.apache.catalina.core.StandardService.startInternal(StandardService.java:422)
    	at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
    	at org.apache.catalina.core.StandardServer.startInternal(StandardServer.java:793)
    	at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
    	at org.apache.catalina.startup.Catalina.start(Catalina.java:681)
    	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    	at java.lang.reflect.Method.invoke(Method.java:498)
    	at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:353)
    	at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:493)
    Caused by: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost]]
    	at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:167)
    	at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1419)
    	at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1409)
    	at java.util.concurrent.FutureTask.run(FutureTask.java:266)
    	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
    	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    	at java.lang.Thread.run(Thread.java:748)
    Caused by: org.apache.catalina.LifecycleException: A child container failed during start
    	at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:948)
    	at org.apache.catalina.core.StandardHost.startInternal(StandardHost.java:872)
    	at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
    	... 6 more
     
    mars 30, 2019 6:55:31 PM org.apache.catalina.startup.Catalina start
    GRAVE: The required Server component failed to start so Tomcat is unable to start.
    org.apache.catalina.LifecycleException: Failed to start component [StandardServer[8005]]
    	at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:167)
    	at org.apache.catalina.startup.Catalina.start(Catalina.java:681)
    	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    	at java.lang.reflect.Method.invoke(Method.java:498)
    	at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:353)
    	at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:493)
    Caused by: org.apache.catalina.LifecycleException: Failed to start component [StandardService[Catalina]]
    	at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:167)
    	at org.apache.catalina.core.StandardServer.startInternal(StandardServer.java:793)
    	at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
    	... 7 more
    Caused by: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina]]
    	at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:167)
    	at org.apache.catalina.core.StandardService.startInternal(StandardService.java:422)
    	at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
    	... 9 more
    Caused by: org.apache.catalina.LifecycleException: A child container failed during start
    	at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:948)
    	at org.apache.catalina.core.StandardEngine.startInternal(StandardEngine.java:262)
    	at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
    	... 11 more
     
    mars 30, 2019 6:55:31 PM org.apache.coyote.AbstractProtocol pause
    INFOS: Pausing ProtocolHandler ["http-nio-8080"]
    mars 30, 2019 6:55:31 PM org.apache.coyote.AbstractProtocol pause
    INFOS: Pausing ProtocolHandler ["ajp-nio-8009"]
    mars 30, 2019 6:55:31 PM org.apache.catalina.core.StandardService stopInternal
    INFOS: Arrêt du service [Catalina]
    mars 30, 2019 6:55:31 PM org.apache.coyote.AbstractProtocol destroy
    INFOS: Destroying ProtocolHandler ["http-nio-8080"]
    mars 30, 2019 6:55:31 PM org.apache.coyote.AbstractProtocol destroy
    INFOS: Destroying ProtocolHandler ["ajp-nio-8009"]
    - La communication consiste a comprendre celui qui ecoute !
    - Qui veut faire quelquechose trouve un moyen, qui ne veut rien faire trouve une excuse

  6. #6
    Membre chevronné Avatar de jeffray03
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Juillet 2008
    Messages
    1 501
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Allemagne

    Informations professionnelles :
    Activité : Développeur informatique

    Informations forums :
    Inscription : Juillet 2008
    Messages : 1 501
    Points : 2 120
    Points
    2 120
    Par défaut
    salut,
    regardes si ta compilation level n´est pas a java 5

    Eric

  7. #7
    Membre actif Avatar de Elwe31
    Profil pro
    Inscrit en
    Octobre 2004
    Messages
    487
    Détails du profil
    Informations personnelles :
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations forums :
    Inscription : Octobre 2004
    Messages : 487
    Points : 220
    Points
    220
    Par défaut
    C'est dans propriete -> java compiler
    Compiler compliance 1.8

    je viens d'enlever dans pom.xml Hibernate, j'ai plus de petit icone rouge sur le projet, mais le serveur ne démarre plus avec ce projet !(alors qu'il démarre avec d'autre)
    toujours le même log.
    - La communication consiste a comprendre celui qui ecoute !
    - Qui veut faire quelquechose trouve un moyen, qui ne veut rien faire trouve une excuse

  8. #8
    Membre chevronné Avatar de jeffray03
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Juillet 2008
    Messages
    1 501
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Allemagne

    Informations professionnelles :
    Activité : Développeur informatique

    Informations forums :
    Inscription : Juillet 2008
    Messages : 1 501
    Points : 2 120
    Points
    2 120
    Par défaut
    salut,
    peux-tu m´envoyer le contenu de ta pom.xml ,
    ou comment est ce que tu actives Tomcat dans ta pom.xml.
    le point rouge, ou est ce qu´il pointe finalement.
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    Fais un click droit sur la pom.xml , run as -> maven build... -> goal: package install
    Eric

  9. #9
    Membre actif Avatar de Elwe31
    Profil pro
    Inscrit en
    Octobre 2004
    Messages
    487
    Détails du profil
    Informations personnelles :
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations forums :
    Inscription : Octobre 2004
    Messages : 487
    Points : 220
    Points
    220
    Par défaut
    J'ai suivi ce post
    https://stackoverflow.com/questions/...tack-trace-whi

    arrêt de eclipse,
    vider le dossier \.metadata\.plugins\org.eclipse.core.resources
    redémarrer eclipse
    ajouter serveur
    ajouter projet.

    le serveur redémarre correctement, mais toujours le point rouge a la racine du projet.
    Voila le pom.xls
    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
    <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/xsd/maven-4.0.0.xsd">
      <modelVersion>4.0.0</modelVersion>
      <groupId>cToric</groupId>
      <artifactId>cToric</artifactId>
      <version>0.0.1-SNAPSHOT</version>
      <packaging>war</packaging>
       <url>http://maven.apache.org</url>
       <name>cToric</name>
      <dependencies>
        <!-- Primefaces --> 
         <dependency>
           <groupId>org.primefaces</groupId>
           <artifactId>primefaces</artifactId>
           <version>6.2</version>
           <scope>provided</scope>
       </dependency>
       <!-- JSF 2 API -->
       <dependency>
           <groupId>com.sun.faces</groupId>
           <artifactId>jsf-api</artifactId>
           <version>2.2.18</version>
           <scope>provided</scope>
       </dependency>
       <dependency>
        	<groupId>com.sun.faces</groupId>
        	<artifactId>jsf-impl</artifactId>
        	<version>2.2.18</version>
       		<scope>provided</scope>
       </dependency>
       <dependency>
        <groupId>commons-logging</groupId>
        <artifactId>commons-logging</artifactId>
        <version>1.2</version>
        <scope>provided</scope>
    </dependency>
    <dependency>
        <groupId>javax.servlet</groupId>
        <artifactId>servlet-api</artifactId>
        <version>2.5</version>
        <scope>provided</scope>
    </dependency>
       <dependency>
        	<groupId>javax.validation</groupId>
        	<artifactId>validation-api</artifactId>
        	<version>2.0.1.Final</version>
        	<scope>provided</scope>
    	</dependency>
    	<dependency>
        	<groupId>log4j</groupId>
        	<artifactId>log4j</artifactId>
        	<version>1.2.17</version>
        	<scope>provided</scope>
    	</dependency>
    	<dependency>
         <groupId>org.json</groupId>
         <artifactId>json</artifactId>
         <version>20180813</version>
         <scope>provided</scope>
    	</dependency>
       <!-- Hibernat et Database  -->
       <dependency>
        <groupId>org.hibernate</groupId>
        <artifactId>hibernate-core</artifactId>
        <version>5.4.2.Final</version>
    </dependency>
     
    	<dependency>
        	<groupId>mysql</groupId>
        	<artifactId>mysql-connector-java</artifactId>
        	<version>8.0.15</version>
     
    	</dependency>
     </dependencies>
     <repositories>
         <repository>
             <id>primefaces-repository</id>
             <name>Primefaces repository</name>
             <url>http://repository.primefaces.org</url>
         </repository>
     
     </repositories>
     
      <build>
        <sourceDirectory>src</sourceDirectory>
        <plugins>
          <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.7.0</version>
            <configuration>
              <source>1.8</source>
              <target>1.8</target>
            </configuration>
          </plugin>
          <plugin>
            <artifactId>maven-war-plugin</artifactId>
            <version>3.0.0</version>
            <configuration>
              <warSourceDirectory>WebContent</warSourceDirectory>
            </configuration>
          </plugin>
        </plugins>
      </build>
    </project>
    - La communication consiste a comprendre celui qui ecoute !
    - Qui veut faire quelquechose trouve un moyen, qui ne veut rien faire trouve une excuse

  10. #10
    Membre chevronné Avatar de jeffray03
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Juillet 2008
    Messages
    1 501
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Allemagne

    Informations professionnelles :
    Activité : Développeur informatique

    Informations forums :
    Inscription : Juillet 2008
    Messages : 1 501
    Points : 2 120
    Points
    2 120
    Par défaut
    Salut ,
    regardes bien :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    [C:\Program Files\Java\jdk1.8.0_202\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:/Program Files/Java/jre1.8.0_161/bin/server;C:/Program Files/Java/jre1.8.0_161/bin;C:/Program Files/Java/jre1.8.0_161/lib/amd64;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\PuTTY\;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET Web Pages\v1.0\;C:\Program Files (x86)\Windows Kits\8.0\Windows Performance Toolkit\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Programs\apache-maven-3.6.0\bin;C:\Users\User1\AppData\Local\Microsoft\WindowsApps;;C:\Users\User1\Desktop;;.]
    mars 30, 2019 6:55:27 PM org.apache.coyote.AbstractProtocol init
    INFOS: Initializing ProtocolHandler ["http-nio-8080"]
    mars 30, 2019 6:55:27 PM org.apache.tomcat.util.net.NioSelectorPool getSharedSelector
    INFOS: Using a shared selector for servlet write/read
    mars 30, 2019 6:55:27 PM org.apache.coyote.AbstractProtocol init
    INFOS: Initializing ProtocolHandler ["ajp-nio-8009"]
    mars 30, 2019 6:55:27 PM org.apache.tomcat.util.net.NioSelectorPool getSharedSelector
    Tu as toujours le jre, cela ne peut pas marcher comme ca.

    Eric

  11. #11
    Membre actif Avatar de Elwe31
    Profil pro
    Inscrit en
    Octobre 2004
    Messages
    487
    Détails du profil
    Informations personnelles :
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations forums :
    Inscription : Octobre 2004
    Messages : 487
    Points : 220
    Points
    220
    Par défaut
    merci,
    je cherche comment le modifier.
    - La communication consiste a comprendre celui qui ecoute !
    - Qui veut faire quelquechose trouve un moyen, qui ne veut rien faire trouve une excuse

  12. #12
    Membre actif Avatar de Elwe31
    Profil pro
    Inscrit en
    Octobre 2004
    Messages
    487
    Détails du profil
    Informations personnelles :
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations forums :
    Inscription : Octobre 2004
    Messages : 487
    Points : 220
    Points
    220
    Par défaut
    je ne vois pas ou je peux le changer !
    - La communication consiste a comprendre celui qui ecoute !
    - Qui veut faire quelquechose trouve un moyen, qui ne veut rien faire trouve une excuse

  13. #13
    Membre actif Avatar de Elwe31
    Profil pro
    Inscrit en
    Octobre 2004
    Messages
    487
    Détails du profil
    Informations personnelles :
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations forums :
    Inscription : Octobre 2004
    Messages : 487
    Points : 220
    Points
    220
    Par défaut
    Ah voila il n'y a plus !
    Mais toujours le petit icone rouge a la racine du projet.

    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
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
    607
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    618
    619
    620
    621
    622
    623
    624
    625
    626
    627
    628
    629
    630
    631
    632
    633
    634
    635
    636
    637
    638
    639
    640
    641
    642
    643
    644
    645
    646
    647
    648
    649
    650
    651
    652
    653
    654
    655
    656
    657
    658
    659
    660
    661
    662
    663
    664
    665
    666
    667
    668
    669
    670
    671
    672
    673
    674
    675
    676
    677
    678
    679
    680
    681
    682
    683
    684
    685
    686
    687
    688
    689
    690
    691
    692
    693
    694
    695
    696
    697
    698
    699
    700
    701
    702
    703
    704
    705
    706
    707
    708
    709
    710
    711
    712
    713
    714
    715
    716
    717
    718
    719
    720
    721
    722
    723
    724
    725
    726
    727
    728
    729
    730
    731
    732
    733
    734
    735
    736
    737
    738
    739
    740
    741
    742
    743
    744
    745
    746
    747
    748
    749
    750
    751
    752
    753
    754
    755
    756
    757
    758
    759
    760
    761
    762
    763
    764
    765
    766
    767
    768
    769
    770
    771
    772
    773
    774
    775
    776
    777
    778
    779
    780
    781
    782
    783
    784
    785
    786
    787
    788
    789
    790
    791
    792
    793
    794
    795
    796
    797
    798
    799
    800
    801
    802
    803
    804
    805
    806
    807
    808
    809
    810
    811
    812
    813
    814
    815
    816
    817
    818
    819
    820
    821
    822
    823
    824
    825
    826
    827
    828
    829
    830
    831
    832
    833
    834
    835
    836
    837
    838
    839
    840
    841
    842
    843
    844
    845
    846
    847
    848
    849
    850
    851
    852
    853
    854
    855
    856
    857
    858
    859
    860
    861
    862
    863
    864
    865
    866
    867
    868
    869
    870
    871
    872
    873
    874
    875
    876
    877
    878
    879
    880
    881
    882
    883
    884
    885
    Apache Maven 3.3.9 (bb52d8502b132ec0a5a3f4c09453c07478323dc5; 2015-11-10T17:41:47+01:00)
    Maven home: C:\Users\User1\eclipse-workspace\cToric\EMBEDDED
    Java version: 1.8.0_202, vendor: Oracle Corporation
    Java home: C:\Program Files\Java\jdk1.8.0_202\jre
    Default locale: fr_FR, platform encoding: Cp1252
    OS name: "windows 10", version: "10.0", arch: "amd64", family: "dos"
    [DEBUG] Created new class realm maven.api
    [DEBUG] Importing foreign packages into class realm maven.api
    [DEBUG]   Imported: javax.enterprise.inject.* < plexus.core
    [DEBUG]   Imported: javax.enterprise.util.* < plexus.core
    [DEBUG]   Imported: javax.inject.* < plexus.core
    [DEBUG]   Imported: org.apache.maven.* < plexus.core
    [DEBUG]   Imported: org.apache.maven.artifact < plexus.core
    [DEBUG]   Imported: org.apache.maven.classrealm < plexus.core
    [DEBUG]   Imported: org.apache.maven.cli < plexus.core
    [DEBUG]   Imported: org.apache.maven.configuration < plexus.core
    [DEBUG]   Imported: org.apache.maven.exception < plexus.core
    [DEBUG]   Imported: org.apache.maven.execution < plexus.core
    [DEBUG]   Imported: org.apache.maven.execution.scope < plexus.core
    [DEBUG]   Imported: org.apache.maven.lifecycle < plexus.core
    [DEBUG]   Imported: org.apache.maven.model < plexus.core
    [DEBUG]   Imported: org.apache.maven.monitor < plexus.core
    [DEBUG]   Imported: org.apache.maven.plugin < plexus.core
    [DEBUG]   Imported: org.apache.maven.profiles < plexus.core
    [DEBUG]   Imported: org.apache.maven.project < plexus.core
    [DEBUG]   Imported: org.apache.maven.reporting < plexus.core
    [DEBUG]   Imported: org.apache.maven.repository < plexus.core
    [DEBUG]   Imported: org.apache.maven.rtinfo < plexus.core
    [DEBUG]   Imported: org.apache.maven.settings < plexus.core
    [DEBUG]   Imported: org.apache.maven.toolchain < plexus.core
    [DEBUG]   Imported: org.apache.maven.usability < plexus.core
    [DEBUG]   Imported: org.apache.maven.wagon.* < plexus.core
    [DEBUG]   Imported: org.apache.maven.wagon.authentication < plexus.core
    [DEBUG]   Imported: org.apache.maven.wagon.authorization < plexus.core
    [DEBUG]   Imported: org.apache.maven.wagon.events < plexus.core
    [DEBUG]   Imported: org.apache.maven.wagon.observers < plexus.core
    [DEBUG]   Imported: org.apache.maven.wagon.proxy < plexus.core
    [DEBUG]   Imported: org.apache.maven.wagon.repository < plexus.core
    [DEBUG]   Imported: org.apache.maven.wagon.resource < plexus.core
    [DEBUG]   Imported: org.codehaus.classworlds < plexus.core
    [DEBUG]   Imported: org.codehaus.plexus.* < plexus.core
    [DEBUG]   Imported: org.codehaus.plexus.classworlds < plexus.core
    [DEBUG]   Imported: org.codehaus.plexus.component < plexus.core
    [DEBUG]   Imported: org.codehaus.plexus.configuration < plexus.core
    [DEBUG]   Imported: org.codehaus.plexus.container < plexus.core
    [DEBUG]   Imported: org.codehaus.plexus.context < plexus.core
    [DEBUG]   Imported: org.codehaus.plexus.lifecycle < plexus.core
    [DEBUG]   Imported: org.codehaus.plexus.logging < plexus.core
    [DEBUG]   Imported: org.codehaus.plexus.personality < plexus.core
    [DEBUG]   Imported: org.codehaus.plexus.util.xml.Xpp3Dom < plexus.core
    [DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser < plexus.core
    [DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlPullParserException < plexus.core
    [DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer < plexus.core
    [DEBUG]   Imported: org.eclipse.aether.* < plexus.core
    [DEBUG]   Imported: org.eclipse.aether.artifact < plexus.core
    [DEBUG]   Imported: org.eclipse.aether.collection < plexus.core
    [DEBUG]   Imported: org.eclipse.aether.deployment < plexus.core
    [DEBUG]   Imported: org.eclipse.aether.graph < plexus.core
    [DEBUG]   Imported: org.eclipse.aether.impl < plexus.core
    [DEBUG]   Imported: org.eclipse.aether.installation < plexus.core
    [DEBUG]   Imported: org.eclipse.aether.internal.impl < plexus.core
    [DEBUG]   Imported: org.eclipse.aether.metadata < plexus.core
    [DEBUG]   Imported: org.eclipse.aether.repository < plexus.core
    [DEBUG]   Imported: org.eclipse.aether.resolution < plexus.core
    [DEBUG]   Imported: org.eclipse.aether.spi < plexus.core
    [DEBUG]   Imported: org.eclipse.aether.transfer < plexus.core
    [DEBUG]   Imported: org.eclipse.aether.version < plexus.core
    [DEBUG]   Imported: org.slf4j.* < plexus.core
    [DEBUG]   Imported: org.slf4j.helpers.* < plexus.core
    [DEBUG]   Imported: org.slf4j.spi.* < plexus.core
    [DEBUG] Populating class realm maven.api
    [INFO] Error stacktraces are turned on.
    [DEBUG] Reading global settings from EMBEDDED\conf\settings.xml
    [DEBUG] Reading user settings from C:\Users\User1\.m2\settings.xml
    [DEBUG] Reading global toolchains from EMBEDDED\conf\toolchains.xml
    [DEBUG] Reading user toolchains from C:\Users\User1\.m2\toolchains.xml
    [DEBUG] Using local repository at C:\Users\User1\.m2\repository
    [DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10.0 for C:\Users\User1\.m2\repository
    [INFO] Scanning for projects...
    [DEBUG] Extension realms for project cToric:cToric: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: cToric:cToric:war:0.0.1-SNAPSHOT
    [DEBUG] Tasks:   [package]
    [DEBUG] Style:   Regular
    [DEBUG] =======================================================================
    [INFO]                                                                         
    [INFO] ------------------------------------------------------------------------
    [INFO] Building cToric 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] 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] 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:       cToric:cToric:0.0.1-SNAPSHOT
    [DEBUG] Dependencies (collect): []
    [DEBUG] Dependencies (resolve): [compile, runtime, test]
    [DEBUG] Repositories (dependencies): [primefaces-repository (<a href="http://repository.primefaces.org" target="_blank">http://repository.primefaces.org</a>, default, releases+snapshots), central (<a href="https://repo.maven.apache.org/maven2" target="_blank">https://repo.maven.apache.org/maven2</a>, default, releases)]
    [DEBUG] Repositories (plugins)     : [central (<a href="https://repo.maven.apache.org/maven2" target="_blank">https://repo.maven.apache.org/maven2</a>, default, releases)]
    [DEBUG] -----------------------------------------------------------------------
    [DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.6: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:3.7.0: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}"/>
      <compilePath 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>
      <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
      <forceJavacCompilerUse default-value="false">${maven.compiler.forceJavacCompilerUse}</forceJavacCompilerUse>
      <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>
      <mojoExecution default-value="${mojoExecution}"/>
      <optimize default-value="false">${maven.compiler.optimize}</optimize>
      <outputDirectory default-value="${project.build.outputDirectory}"/>
      <parameters default-value="false">${maven.compiler.parameters}</parameters>
      <project default-value="${project}"/>
      <projectArtifact default-value="${project.artifact}"/>
      <release>${maven.compiler.release}</release>
      <session default-value="${session}"/>
      <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
      <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
      <skipMain>${maven.main.skip}</skipMain>
      <skipMultiThreadWarning default-value="false">${maven.compiler.skipMultiThreadWarning}</skipMultiThreadWarning>
      <source default-value="1.5">1.8</source>
      <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
      <target default-value="1.5">1.8</target>
      <useIncrementalCompilation default-value="true">${maven.compiler.useIncrementalCompilation}</useIncrementalCompilation>
      <verbose default-value="false">${maven.compiler.verbose}</verbose>
    </configuration>
    [DEBUG] -----------------------------------------------------------------------
    [DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.6:testResources (default-testResources)
    [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.testOutputDirectory}"/>
      <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
      <project default-value="${project}"/>
      <resources default-value="${project.testResources}"/>
      <session default-value="${session}"/>
      <skip>${maven.test.skip}</skip>
      <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:3.7.0:testCompile (default-testCompile)
    [DEBUG] Style:         Regular
    [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
    <configuration>
      <basedir default-value="${basedir}"/>
      <buildDirectory default-value="${project.build.directory}"/>
      <compilePath default-value="${project.compileClasspathElements}"/>
      <compileSourceRoots default-value="${project.testCompileSourceRoots}"/>
      <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>
      <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
      <forceJavacCompilerUse default-value="false">${maven.compiler.forceJavacCompilerUse}</forceJavacCompilerUse>
      <fork default-value="false">${maven.compiler.fork}</fork>
      <generatedTestSourcesDirectory default-value="${project.build.directory}/generated-test-sources/test-annotations"/>
      <maxmem>${maven.compiler.maxmem}</maxmem>
      <meminitial>${maven.compiler.meminitial}</meminitial>
      <mojoExecution default-value="${mojoExecution}"/>
      <optimize default-value="false">${maven.compiler.optimize}</optimize>
      <outputDirectory default-value="${project.build.testOutputDirectory}"/>
      <parameters default-value="false">${maven.compiler.parameters}</parameters>
      <project default-value="${project}"/>
      <release>${maven.compiler.release}</release>
      <session default-value="${session}"/>
      <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
      <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
      <skip>${maven.test.skip}</skip>
      <skipMultiThreadWarning default-value="false">${maven.compiler.skipMultiThreadWarning}</skipMultiThreadWarning>
      <source default-value="1.5">1.8</source>
      <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
      <target default-value="1.5">1.8</target>
      <testPath default-value="${project.testClasspathElements}"/>
      <testRelease>${maven.compiler.testRelease}</testRelease>
      <testSource>${maven.compiler.testSource}</testSource>
      <testTarget>${maven.compiler.testTarget}</testTarget>
      <useIncrementalCompilation default-value="true">${maven.compiler.useIncrementalCompilation}</useIncrementalCompilation>
      <verbose default-value="false">${maven.compiler.verbose}</verbose>
    </configuration>
    [DEBUG] -----------------------------------------------------------------------
    [DEBUG] Goal:          org.apache.maven.plugins:maven-surefire-plugin:2.12.4:test (default-test)
    [DEBUG] Style:         Regular
    [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
    <configuration>
      <argLine>${argLine}</argLine>
      <basedir default-value="${basedir}"/>
      <childDelegation default-value="false">${childDelegation}</childDelegation>
      <classesDirectory default-value="${project.build.outputDirectory}"/>
      <debugForkedProcess>${maven.surefire.debug}</debugForkedProcess>
      <disableXmlReport default-value="false">${disableXmlReport}</disableXmlReport>
      <enableAssertions default-value="true">${enableAssertions}</enableAssertions>
      <excludedGroups>${excludedGroups}</excludedGroups>
      <failIfNoSpecifiedTests>${surefire.failIfNoSpecifiedTests}</failIfNoSpecifiedTests>
      <failIfNoTests>${failIfNoTests}</failIfNoTests>
      <forkMode default-value="once">${forkMode}</forkMode>
      <forkedProcessTimeoutInSeconds>${surefire.timeout}</forkedProcessTimeoutInSeconds>
      <groups>${groups}</groups>
      <junitArtifactName default-value="junit:junit">${junitArtifactName}</junitArtifactName>
      <jvm>${jvm}</jvm>
      <localRepository default-value="${localRepository}"/>
      <objectFactory>${objectFactory}</objectFactory>
      <parallel>${parallel}</parallel>
      <parallelMavenExecution default-value="${session.parallel}"/>
      <perCoreThreadCount default-value="true">${perCoreThreadCount}</perCoreThreadCount>
      <pluginArtifactMap>${plugin.artifactMap}</pluginArtifactMap>
      <pluginDescriptor default-value="${plugin}"/>
      <printSummary default-value="true">${surefire.printSummary}</printSummary>
      <projectArtifactMap>${project.artifactMap}</projectArtifactMap>
      <redirectTestOutputToFile default-value="false">${maven.test.redirectTestOutputToFile}</redirectTestOutputToFile>
      <remoteRepositories default-value="${project.pluginArtifactRepositories}"/>
      <reportFormat default-value="brief">${surefire.reportFormat}</reportFormat>
      <reportNameSuffix default-value="">${surefire.reportNameSuffix}</reportNameSuffix>
      <reportsDirectory default-value="${project.build.directory}/surefire-reports"/>
      <runOrder default-value="filesystem"/>
      <skip default-value="false">${maven.test.skip}</skip>
      <skipExec>${maven.test.skip.exec}</skipExec>
      <skipTests default-value="false">${skipTests}</skipTests>
      <test>${test}</test>
      <testClassesDirectory default-value="${project.build.testOutputDirectory}"/>
      <testFailureIgnore default-value="false">${maven.test.failure.ignore}</testFailureIgnore>
      <testNGArtifactName default-value="org.testng:testng">${testNGArtifactName}</testNGArtifactName>
      <testSourceDirectory default-value="${project.build.testSourceDirectory}"/>
      <threadCount>${threadCount}</threadCount>
      <trimStackTrace default-value="true">${trimStackTrace}</trimStackTrace>
      <useFile default-value="true">${surefire.useFile}</useFile>
      <useManifestOnlyJar default-value="true">${surefire.useManifestOnlyJar}</useManifestOnlyJar>
      <useSystemClassLoader default-value="true">${surefire.useSystemClassLoader}</useSystemClassLoader>
      <useUnlimitedThreads default-value="false">${useUnlimitedThreads}</useUnlimitedThreads>
      <workingDirectory>${basedir}</workingDirectory>
      <project default-value="${project}"/>
      <session default-value="${session}"/>
    </configuration>
    [DEBUG] -----------------------------------------------------------------------
    [DEBUG] Goal:          org.apache.maven.plugins:maven-war-plugin:3.0.0:war (default-war)
    [DEBUG] Style:         Regular
    [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
    <configuration>
      <archiveClasses default-value="false"/>
      <attachClasses default-value="false"/>
      <cacheFile default-value="${project.build.directory}/war/work/webapp-cache.xml"/>
      <classesClassifier default-value="classes"/>
      <classesDirectory default-value="${project.build.outputDirectory}"/>
      <escapedBackslashesInFilePath default-value="false"/>
      <failOnMissingWebXml default-value="false"/>
      <filteringDeploymentDescriptors default-value="false"/>
      <includeEmptyDirectories default-value="false"/>
      <outputDirectory default-value="${project.build.directory}"/>
      <primaryArtifact default-value="true"/>
      <project default-value="${project}"/>
      <recompressZippedFiles default-value="true"/>
      <resourceEncoding default-value="${project.build.sourceEncoding}"/>
      <session default-value="${session}"/>
      <skip default-value="false">${maven.war.skip}</skip>
      <supportMultiLineFiltering default-value="false"/>
      <useCache default-value="false"/>
      <useDefaultDelimiters default-value="true"/>
      <useJvmChmod default-value="true"/>
      <warName default-value="${project.build.finalName}"/>
      <warSourceDirectory default-value="${basedir}/src/main/webapp">WebContent</warSourceDirectory>
      <warSourceIncludes default-value="**"/>
      <webappDirectory default-value="${project.build.directory}/${project.build.finalName}"/>
      <workDirectory default-value="${project.build.directory}/war/work"/>
    </configuration>
    [DEBUG] =======================================================================
    [DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=1, ConflictMarker.markTime=1, ConflictMarker.nodeCount=34, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=28, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=4, ConflictResolver.conflictItemCount=32, DefaultDependencyCollector.collectTime=183, DefaultDependencyCollector.transformTime=8}
    [DEBUG] cToric:cToric:war:0.0.1-SNAPSHOT
    [DEBUG]    org.primefaces:primefaces:jar:6.2:provided
    [DEBUG]    com.sun.faces:jsf-api:jar:2.2.18:provided
    [DEBUG]    com.sun.faces:jsf-impl:jar:2.2.18:provided
    [DEBUG]    commons-logging:commons-logging:jar:1.2:provided
    [DEBUG]    javax.servlet:servlet-api:jar:2.5:provided
    [DEBUG]    javax.validation:validation-api:jar:2.0.1.Final:provided
    [DEBUG]    log4j:log4j:jar:1.2.17:provided
    [DEBUG]    org.json:json:jar:20180813:provided
    [DEBUG]    org.hibernate:hibernate-core:jar:5.4.2.Final:compile
    [DEBUG]       org.jboss.logging:jboss-logging:jar:3.3.2.Final:compile
    [DEBUG]       javax.persistence:javax.persistence-api:jar:2.2:compile
    [DEBUG]       org.javassist:javassist:jar:3.24.0-GA:compile
    [DEBUG]       net.bytebuddy:byte-buddy:jar:1.9.10:compile
    [DEBUG]       antlr:antlr:jar:2.7.7:compile
    [DEBUG]       org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:jar:1.1.1.Final:compile
    [DEBUG]       org.jboss:jandex:jar:2.0.5.Final:compile
    [DEBUG]       com.fasterxml:classmate:jar:1.3.4:compile
    [DEBUG]       javax.activation:javax.activation-api:jar:1.2.0:compile
    [DEBUG]       org.dom4j:dom4j:jar:2.1.1:compile
    [DEBUG]       org.hibernate.common:hibernate-commons-annotations:jar:5.1.0.Final:compile
    [DEBUG]       javax.xml.bind:jaxb-api:jar:2.3.1:compile
    [DEBUG]       org.glassfish.jaxb:jaxb-runtime:jar:2.3.1:compile
    [DEBUG]          org.glassfish.jaxb:txw2:jar:2.3.1:compile
    [DEBUG]          com.sun.istack:istack-commons-runtime:jar:3.0.7:compile
    [DEBUG]          org.jvnet.staxex:stax-ex:jar:1.8:compile
    [DEBUG]          com.sun.xml.fastinfoset:FastInfoset:jar:1.2.15:compile
    [DEBUG]    mysql:mysql-connector-java:jar:8.0.15:compile
    [DEBUG]       com.google.protobuf:protobuf-java:jar:3.6.1:compile
    [INFO] 
    [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ cToric ---
    [DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=0, ConflictMarker.nodeCount=77, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=26, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=1, ConflictResolver.conflictItemCount=74, DefaultDependencyCollector.collectTime=151, DefaultDependencyCollector.transformTime=1}
    [DEBUG] org.apache.maven.plugins:maven-resources-plugin:jar:2.6:
    [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.1: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.6
    [DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.6
    [DEBUG]   Imported:  < maven.api
    [DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.6
    [DEBUG]   Included: org.apache.maven.plugins:maven-resources-plugin:jar:2.6
    [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.1
    [DEBUG]   Included: org.sonatype.plexus:plexus-build-api:jar:0.0.4
    [DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.13
    [DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.6:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.6, parent: sun.misc.Launcher$AppClassLoader@4e25154f]
    [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.6:resources' with basic configurator -->
    [DEBUG]   (f) buildFilters = []
    [DEBUG]   (f) escapeWindowsPaths = true
    [DEBUG]   (s) includeEmptyDirs = false
    [DEBUG]   (s) outputDirectory = C:\Users\User1\eclipse-workspace\cToric\target\classes
    [DEBUG]   (s) overwrite = false
    [DEBUG]   (f) project = MavenProject: cToric:cToric:0.0.1-SNAPSHOT @ C:\Users\User1\eclipse-workspace\cToric\pom.xml
    [DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Users\User1\eclipse-workspace\cToric\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
    [DEBUG]   (f) session = org.apache.maven.execution.MavenSession@53ab0286
    [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, env.USERDOMAIN_ROAMINGPROFILE=CUTTING-EDGE, env.DEFLOGDIR=C:\ProgramData\McAfee\DesktopProtection, sun.java.launcher=SUN_STANDARD, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.ONEDRIVE=C:\Users\User1\OneDrive, os.name=Windows 10, sun.boot.class.path=C:\Program Files\Java\jdk1.8.0_202\jre\lib\resources.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\rt.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\sunrsasign.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\jsse.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\jce.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\charsets.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\jfr.jar;C:\Program Files\Java\jdk1.8.0_202\jre\classes, env.COMPUTERNAME=TLSGITELRW102, env.ALLUSERSPROFILE=C:\ProgramData, sun.desktop=windows, java.vm.specification.vendor=Oracle Corporation, java.runtime.version=1.8.0_202-b08, env.HOMEPATH=\Users\User1, user.name=GitelR, maven.build.version=Apache Maven 3.3.9 (bb52d8502b132ec0a5a3f4c09453c07478323dc5; 2015-11-10T17:41:47+01:00), env.PATH=C:/Program Files/Java/jdk1.8.0_202/bin/../jre/bin/server;C:/Program Files/Java/jdk1.8.0_202/bin/../jre/bin;C:/Program Files/Java/jdk1.8.0_202/bin/../jre/lib/amd64;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\PuTTY\;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET Web Pages\v1.0\;C:\Program Files (x86)\Windows Kits\8.0\Windows Performance Toolkit\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Programs\apache-maven-3.6.0\bin;C:\Users\User1\AppData\Local\Microsoft\WindowsApps;;C:\Users\User1\Desktop;, user.language=fr, env.WINDIR=C:\Windows, sun.boot.library.path=C:\Program Files\Java\jdk1.8.0_202\jre\bin, classworlds.conf=C:\Users\User1\eclipse-workspace\.metadata\.plugins\org.eclipse.m2e.launching\launches\m2conf2173078848685055778.tmp, java.version=1.8.0_202, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 158 Stepping 9, GenuineIntel, user.timezone=Europe/Paris, env.TEMP=C:\Users\GITELR~1.CUT\AppData\Local\Temp, sun.arch.data.model=64, java.endorsed.dirs=C:\Program Files\Java\jdk1.8.0_202\jre\lib\endorsed, env.VSEDEFLOGDIR=C:\ProgramData\McAfee\DesktopProtection, sun.cpu.isalist=amd64, env.HOMEDRIVE=C:, sun.jnu.encoding=Cp1252, file.encoding.pkg=sun.io, env.VS110COMNTOOLS=C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\Tools\, env.SYSTEMDRIVE=C:, file.separator=\, java.specification.name=Java Platform API Specification, java.class.version=52.0, org.slf4j.simpleLogger.defaultLogLevel=debug, user.country=FR, java.home=C:\Program Files\Java\jdk1.8.0_202\jre, env.APPDATA=C:\Users\User1\AppData\Roaming, env.CONFIGSETROOT=C:\Windows\ConfigSetRoot, env.PUBLIC=C:\Users\Public, java.vm.info=mixed mode, env.OS=Windows_NT, os.version=10.0, env.=::=::\, path.separator=;, java.vm.version=25.202-b08, env.ASL.LOG=Destination=file, env.USERPROFILE=C:\Users\User1, user.variant=, java.awt.printerjob=sun.awt.windows.WPrinterJob, env.TMP=C:\Users\GITELR~1.CUT\AppData\Local\Temp, env.PROGRAMFILES=C:\Program Files, sun.io.unicode.encoding=UnicodeLittle, awt.toolkit=sun.awt.windows.WToolkit, user.script=, user.home=C:\Users\User1, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, env.SESSIONNAME=Console, java.specification.vendor=Oracle Corporation, env.NUMBER_OF_PROCESSORS=8, java.library.path=C:\Program Files\Java\jdk1.8.0_202\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:/Program Files/Java/jdk1.8.0_202/bin/../jre/bin/server;C:/Program Files/Java/jdk1.8.0_202/bin/../jre/bin;C:/Program Files/Java/jdk1.8.0_202/bin/../jre/lib/amd64;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\PuTTY\;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET Web Pages\v1.0\;C:\Program Files (x86)\Windows Kits\8.0\Windows Performance Toolkit\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Programs\apache-maven-3.6.0\bin;C:\Users\User1\AppData\Local\Microsoft\WindowsApps;;C:\Users\User1\Desktop;;., java.vendor.url=http://java.oracle.com/, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.USERDNSDOMAIN=CUTTING-EDGE.FR, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules, java.vm.vendor=Oracle Corporation, maven.home=C:\Users\User1\eclipse-workspace\cToric\EMBEDDED, java.runtime.name=Java(TM) SE Runtime Environment, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher -B -X -e package, java.class.path=C:\Users\User1\.p2\pool\plugins\org.eclipse.m2e.maven.runtime_1.8.2.20171007-0216\jars\plexus-classworlds-2.5.2.jar, env.PROGRAMW6432=C:\Program Files, maven.version=3.3.9, env.PROGRAMFILES(X86)=C:\Program Files (x86), java.vm.specification.name=Java Virtual Machine Specification, env.LOGONSERVER=\\ARTHUR, java.vm.specification.version=1.8, env.PROCESSOR_ARCHITECTURE=AMD64, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, sun.cpu.endian=little, sun.os.patch.level=, env.PROCESSOR_REVISION=9e09, java.io.tmpdir=C:\Users\GITELR~1.CUT\AppData\Local\Temp\, java.vendor.url.bug=http://bugreport.sun.com/bugreport/, maven.multiModuleProjectDirectory=C:\Users\User1\eclipse-workspace\cToric, env.PROGRAMDATA=C:\ProgramData, env.COMSPEC=C:\Windows\system32\cmd.exe, os.arch=amd64, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, java.ext.dirs=C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext;C:\Windows\Sun\Java\lib\ext, env.LOCALAPPDATA=C:\Users\User1\AppData\Local, user.dir=C:\Users\User1\eclipse-workspace\cToric, line.separator=
    , java.vm.name=Java HotSpot(TM) 64-Bit Server VM, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, env.CAB_HOME_R14=C:\Program Files (x86)\CA\SharedComponents\ARCserve Backup\Setup\r16\, env.USERNAME=GitelR, file.encoding=Cp1252, env.USERDOMAIN=CUTTING-EDGE, java.specification.version=1.8, env.PROCESSOR_LEVEL=6}
    [WARNING] Using platform encoding (Cp1252 actually) to copy filtered resources, i.e. build is platform dependent!
    [DEBUG] resource with targetPath null
    directory C:\Users\User1\eclipse-workspace\cToric\src\main\resources
    excludes []
    includes []
    [INFO] skip non existing resourceDirectory C:\Users\User1\eclipse-workspace\cToric\src\main\resources
    [DEBUG] no use filter components
    [INFO] 
    [INFO] --- maven-compiler-plugin:3.7.0:compile (default-compile) @ cToric ---
    [DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=0, ConflictMarker.nodeCount=118, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=45, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=2, ConflictResolver.conflictItemCount=72, DefaultDependencyCollector.collectTime=497, DefaultDependencyCollector.transformTime=2}
    [DEBUG] org.apache.maven.plugins:maven-compiler-plugin:jar:3.7.0:
    [DEBUG]    org.apache.maven:maven-plugin-api:jar:3.0:compile
    [DEBUG]       org.apache.maven:maven-model:jar:3.0:compile
    [DEBUG]       org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile
    [DEBUG]          org.sonatype.sisu:sisu-inject-bean:jar:1.4.2:compile
    [DEBUG]             org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7:compile
    [DEBUG]    org.apache.maven:maven-artifact:jar:3.0:compile
    [DEBUG]       org.codehaus.plexus:plexus-utils:jar:2.0.4:compile
    [DEBUG]    org.apache.maven:maven-core:jar:3.0:compile
    [DEBUG]       org.apache.maven:maven-settings:jar:3.0:compile
    [DEBUG]       org.apache.maven:maven-settings-builder:jar:3.0:compile
    [DEBUG]       org.apache.maven:maven-repository-metadata:jar:3.0:compile
    [DEBUG]       org.apache.maven:maven-model-builder:jar:3.0:compile
    [DEBUG]       org.apache.maven:maven-aether-provider:jar:3.0:runtime
    [DEBUG]       org.sonatype.aether:aether-impl:jar:1.7:compile
    [DEBUG]          org.sonatype.aether:aether-spi:jar:1.7:compile
    [DEBUG]       org.sonatype.aether:aether-api:jar:1.7:compile
    [DEBUG]       org.sonatype.aether:aether-util:jar:1.7:compile
    [DEBUG]       org.codehaus.plexus:plexus-interpolation:jar:1.14:compile
    [DEBUG]       org.codehaus.plexus:plexus-classworlds:jar:2.2.3:compile
    [DEBUG]       org.codehaus.plexus:plexus-component-annotations:jar:1.6:compile
    [DEBUG]       org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile
    [DEBUG]          org.sonatype.plexus:plexus-cipher:jar:1.4:compile
    [DEBUG]    org.apache.maven.shared:maven-shared-utils:jar:3.1.0:compile
    [DEBUG]       commons-io:commons-io:jar:2.5:compile
    [DEBUG]    org.apache.maven.shared:maven-shared-incremental:jar:1.1:compile
    [DEBUG]    org.codehaus.plexus:plexus-java:jar:0.9.2:compile
    [DEBUG]       org.ow2.asm:asm:jar:6.0_BETA:compile
    [DEBUG]       com.thoughtworks.qdox:qdox:jar:2.0-M7:compile
    [DEBUG]    org.codehaus.plexus:plexus-compiler-api:jar:2.8.2:compile
    [DEBUG]    org.codehaus.plexus:plexus-compiler-manager:jar:2.8.2:compile
    [DEBUG]    org.codehaus.plexus:plexus-compiler-javac:jar:2.8.2:runtime
    [DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.7.0
    [DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.7.0
    [DEBUG]   Imported:  < maven.api
    [DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.7.0
    [DEBUG]   Included: org.apache.maven.plugins:maven-compiler-plugin:jar:3.7.0
    [DEBUG]   Included: org.sonatype.sisu:sisu-inject-bean:jar:1.4.2
    [DEBUG]   Included: org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7
    [DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:2.0.4
    [DEBUG]   Included: org.sonatype.aether:aether-util:jar:1.7
    [DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.14
    [DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:1.6
    [DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3
    [DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.4
    [DEBUG]   Included: org.apache.maven.shared:maven-shared-utils:jar:3.1.0
    [DEBUG]   Included: commons-io:commons-io:jar:2.5
    [DEBUG]   Included: org.apache.maven.shared:maven-shared-incremental:jar:1.1
    [DEBUG]   Included: org.codehaus.plexus:plexus-java:jar:0.9.2
    [DEBUG]   Included: org.ow2.asm:asm:jar:6.0_BETA
    [DEBUG]   Included: com.thoughtworks.qdox:qdox:jar:2.0-M7
    [DEBUG]   Included: org.codehaus.plexus:plexus-compiler-api:jar:2.8.2
    [DEBUG]   Included: org.codehaus.plexus:plexus-compiler-manager:jar:2.8.2
    [DEBUG]   Included: org.codehaus.plexus:plexus-compiler-javac:jar:2.8.2
    [DEBUG] Configuring mojo org.apache.maven.plugins:maven-compiler-plugin:3.7.0:compile from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-compiler-plugin:3.7.0, parent: sun.misc.Launcher$AppClassLoader@4e25154f]
    [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-compiler-plugin:3.7.0:compile' with basic configurator -->
    [DEBUG]   (f) basedir = C:\Users\User1\eclipse-workspace\cToric
    [DEBUG]   (f) buildDirectory = C:\Users\User1\eclipse-workspace\cToric\target
    [DEBUG]   (f) compilePath = [C:\Users\User1\eclipse-workspace\cToric\target\classes, C:\Users\User1\.m2\repository\org\primefaces\primefaces\6.2\primefaces-6.2.jar, C:\Users\User1\.m2\repository\com\sun\faces\jsf-api\2.2.18\jsf-api-2.2.18.jar, C:\Users\User1\.m2\repository\com\sun\faces\jsf-impl\2.2.18\jsf-impl-2.2.18.jar, C:\Users\User1\.m2\repository\commons-logging\commons-logging\1.2\commons-logging-1.2.jar, C:\Users\User1\.m2\repository\javax\servlet\servlet-api\2.5\servlet-api-2.5.jar, C:\Users\User1\.m2\repository\javax\validation\validation-api\2.0.1.Final\validation-api-2.0.1.Final.jar, C:\Users\User1\.m2\repository\log4j\log4j\1.2.17\log4j-1.2.17.jar, C:\Users\User1\.m2\repository\org\json\json\20180813\json-20180813.jar, C:\Users\User1\.m2\repository\org\hibernate\hibernate-core\5.4.2.Final\hibernate-core-5.4.2.Final.jar, C:\Users\User1\.m2\repository\org\jboss\logging\jboss-logging\3.3.2.Final\jboss-logging-3.3.2.Final.jar, C:\Users\User1\.m2\repository\javax\persistence\javax.persistence-api\2.2\javax.persistence-api-2.2.jar, C:\Users\User1\.m2\repository\org\javassist\javassist\3.24.0-GA\javassist-3.24.0-GA.jar, C:\Users\User1\.m2\repository\net\bytebuddy\byte-buddy\1.9.10\byte-buddy-1.9.10.jar, C:\Users\User1\.m2\repository\antlr\antlr\2.7.7\antlr-2.7.7.jar, C:\Users\User1\.m2\repository\org\jboss\spec\javax\transaction\jboss-transaction-api_1.2_spec\1.1.1.Final\jboss-transaction-api_1.2_spec-1.1.1.Final.jar, C:\Users\User1\.m2\repository\org\jboss\jandex\2.0.5.Final\jandex-2.0.5.Final.jar, C:\Users\User1\.m2\repository\com\fasterxml\classmate\1.3.4\classmate-1.3.4.jar, C:\Users\User1\.m2\repository\javax\activation\javax.activation-api\1.2.0\javax.activation-api-1.2.0.jar, C:\Users\User1\.m2\repository\org\dom4j\dom4j\2.1.1\dom4j-2.1.1.jar, C:\Users\User1\.m2\repository\org\hibernate\common\hibernate-commons-annotations\5.1.0.Final\hibernate-commons-annotations-5.1.0.Final.jar, C:\Users\User1\.m2\repository\javax\xml\bind\jaxb-api\2.3.1\jaxb-api-2.3.1.jar, C:\Users\User1\.m2\repository\org\glassfish\jaxb\jaxb-runtime\2.3.1\jaxb-runtime-2.3.1.jar, C:\Users\User1\.m2\repository\org\glassfish\jaxb\txw2\2.3.1\txw2-2.3.1.jar, C:\Users\User1\.m2\repository\com\sun\istack\istack-commons-runtime\3.0.7\istack-commons-runtime-3.0.7.jar, C:\Users\User1\.m2\repository\org\jvnet\staxex\stax-ex\1.8\stax-ex-1.8.jar, C:\Users\User1\.m2\repository\com\sun\xml\fastinfoset\FastInfoset\1.2.15\FastInfoset-1.2.15.jar, C:\Users\User1\.m2\repository\mysql\mysql-connector-java\8.0.15\mysql-connector-java-8.0.15.jar, C:\Users\User1\.m2\repository\com\google\protobuf\protobuf-java\3.6.1\protobuf-java-3.6.1.jar]
    [DEBUG]   (f) compileSourceRoots = [C:\Users\User1\eclipse-workspace\cToric\src]
    [DEBUG]   (f) compilerId = javac
    [DEBUG]   (f) debug = true
    [DEBUG]   (f) failOnError = true
    [DEBUG]   (f) failOnWarning = false
    [DEBUG]   (f) forceJavacCompilerUse = false
    [DEBUG]   (f) fork = false
    [DEBUG]   (f) generatedSourcesDirectory = C:\Users\User1\eclipse-workspace\cToric\target\generated-sources\annotations
    [DEBUG]   (f) mojoExecution = org.apache.maven.plugins:maven-compiler-plugin:3.7.0:compile {execution: default-compile}
    [DEBUG]   (f) optimize = false
    [DEBUG]   (f) outputDirectory = C:\Users\User1\eclipse-workspace\cToric\target\classes
    [DEBUG]   (f) parameters = false
    [DEBUG]   (f) project = MavenProject: cToric:cToric:0.0.1-SNAPSHOT @ C:\Users\User1\eclipse-workspace\cToric\pom.xml
    [DEBUG]   (f) projectArtifact = cToric:cToric:war:0.0.1-SNAPSHOT
    [DEBUG]   (f) session = org.apache.maven.execution.MavenSession@53ab0286
    [DEBUG]   (f) showDeprecation = false
    [DEBUG]   (f) showWarnings = false
    [DEBUG]   (f) skipMultiThreadWarning = false
    [DEBUG]   (f) source = 1.8
    [DEBUG]   (f) staleMillis = 0
    [DEBUG]   (f) target = 1.8
    [DEBUG]   (f) useIncrementalCompilation = true
    [DEBUG]   (f) verbose = false
    [DEBUG] -- end configuration --
    [DEBUG] Using compiler 'javac'.
    [DEBUG] Adding C:\Users\User1\eclipse-workspace\cToric\target\generated-sources\annotations to compile source roots:
      C:\Users\User1\eclipse-workspace\cToric\src
    [DEBUG] New compile source roots:
      C:\Users\User1\eclipse-workspace\cToric\src
      C:\Users\User1\eclipse-workspace\cToric\target\generated-sources\annotations
    [DEBUG] CompilerReuseStrategy: reuseCreated
    [DEBUG] useIncrementalCompilation enabled
    [INFO] Nothing to compile - all classes are up to date
    [INFO] 
    [INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ cToric ---
    [DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.6:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.6, parent: sun.misc.Launcher$AppClassLoader@4e25154f]
    [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.6:testResources' with basic configurator -->
    [DEBUG]   (f) buildFilters = []
    [DEBUG]   (f) escapeWindowsPaths = true
    [DEBUG]   (s) includeEmptyDirs = false
    [DEBUG]   (s) outputDirectory = C:\Users\User1\eclipse-workspace\cToric\target\test-classes
    [DEBUG]   (s) overwrite = false
    [DEBUG]   (f) project = MavenProject: cToric:cToric:0.0.1-SNAPSHOT @ C:\Users\User1\eclipse-workspace\cToric\pom.xml
    [DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Users\User1\eclipse-workspace\cToric\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
    [DEBUG]   (f) session = org.apache.maven.execution.MavenSession@53ab0286
    [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, env.USERDOMAIN_ROAMINGPROFILE=CUTTING-EDGE, env.DEFLOGDIR=C:\ProgramData\McAfee\DesktopProtection, sun.java.launcher=SUN_STANDARD, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.ONEDRIVE=C:\Users\User1\OneDrive, os.name=Windows 10, sun.boot.class.path=C:\Program Files\Java\jdk1.8.0_202\jre\lib\resources.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\rt.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\sunrsasign.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\jsse.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\jce.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\charsets.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\jfr.jar;C:\Program Files\Java\jdk1.8.0_202\jre\classes, env.COMPUTERNAME=TLSGITELRW102, env.ALLUSERSPROFILE=C:\ProgramData, sun.desktop=windows, java.vm.specification.vendor=Oracle Corporation, java.runtime.version=1.8.0_202-b08, env.HOMEPATH=\Users\User1, user.name=GitelR, maven.build.version=Apache Maven 3.3.9 (bb52d8502b132ec0a5a3f4c09453c07478323dc5; 2015-11-10T17:41:47+01:00), env.PATH=C:/Program Files/Java/jdk1.8.0_202/bin/../jre/bin/server;C:/Program Files/Java/jdk1.8.0_202/bin/../jre/bin;C:/Program Files/Java/jdk1.8.0_202/bin/../jre/lib/amd64;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\PuTTY\;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET Web Pages\v1.0\;C:\Program Files (x86)\Windows Kits\8.0\Windows Performance Toolkit\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Programs\apache-maven-3.6.0\bin;C:\Users\User1\AppData\Local\Microsoft\WindowsApps;;C:\Users\User1\Desktop;, user.language=fr, env.WINDIR=C:\Windows, sun.boot.library.path=C:\Program Files\Java\jdk1.8.0_202\jre\bin, classworlds.conf=C:\Users\User1\eclipse-workspace\.metadata\.plugins\org.eclipse.m2e.launching\launches\m2conf2173078848685055778.tmp, java.version=1.8.0_202, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 158 Stepping 9, GenuineIntel, user.timezone=Europe/Paris, env.TEMP=C:\Users\GITELR~1.CUT\AppData\Local\Temp, sun.arch.data.model=64, java.endorsed.dirs=C:\Program Files\Java\jdk1.8.0_202\jre\lib\endorsed, env.VSEDEFLOGDIR=C:\ProgramData\McAfee\DesktopProtection, sun.cpu.isalist=amd64, env.HOMEDRIVE=C:, sun.jnu.encoding=Cp1252, file.encoding.pkg=sun.io, env.VS110COMNTOOLS=C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\Tools\, env.SYSTEMDRIVE=C:, file.separator=\, java.specification.name=Java Platform API Specification, java.class.version=52.0, org.slf4j.simpleLogger.defaultLogLevel=debug, user.country=FR, java.home=C:\Program Files\Java\jdk1.8.0_202\jre, env.APPDATA=C:\Users\User1\AppData\Roaming, env.CONFIGSETROOT=C:\Windows\ConfigSetRoot, env.PUBLIC=C:\Users\Public, java.vm.info=mixed mode, env.OS=Windows_NT, os.version=10.0, env.=::=::\, path.separator=;, java.vm.version=25.202-b08, env.ASL.LOG=Destination=file, env.USERPROFILE=C:\Users\User1, user.variant=, java.awt.printerjob=sun.awt.windows.WPrinterJob, env.TMP=C:\Users\GITELR~1.CUT\AppData\Local\Temp, env.PROGRAMFILES=C:\Program Files, sun.io.unicode.encoding=UnicodeLittle, awt.toolkit=sun.awt.windows.WToolkit, user.script=, user.home=C:\Users\User1, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, env.SESSIONNAME=Console, java.specification.vendor=Oracle Corporation, env.NUMBER_OF_PROCESSORS=8, java.library.path=C:\Program Files\Java\jdk1.8.0_202\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:/Program Files/Java/jdk1.8.0_202/bin/../jre/bin/server;C:/Program Files/Java/jdk1.8.0_202/bin/../jre/bin;C:/Program Files/Java/jdk1.8.0_202/bin/../jre/lib/amd64;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\PuTTY\;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET Web Pages\v1.0\;C:\Program Files (x86)\Windows Kits\8.0\Windows Performance Toolkit\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Programs\apache-maven-3.6.0\bin;C:\Users\User1\AppData\Local\Microsoft\WindowsApps;;C:\Users\User1\Desktop;;., java.vendor.url=http://java.oracle.com/, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.USERDNSDOMAIN=CUTTING-EDGE.FR, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules, java.vm.vendor=Oracle Corporation, maven.home=C:\Users\User1\eclipse-workspace\cToric\EMBEDDED, java.runtime.name=Java(TM) SE Runtime Environment, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher -B -X -e package, java.class.path=C:\Users\User1\.p2\pool\plugins\org.eclipse.m2e.maven.runtime_1.8.2.20171007-0216\jars\plexus-classworlds-2.5.2.jar, env.PROGRAMW6432=C:\Program Files, maven.version=3.3.9, env.PROGRAMFILES(X86)=C:\Program Files (x86), java.vm.specification.name=Java Virtual Machine Specification, env.LOGONSERVER=\\ARTHUR, java.vm.specification.version=1.8, env.PROCESSOR_ARCHITECTURE=AMD64, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, sun.cpu.endian=little, sun.os.patch.level=, env.PROCESSOR_REVISION=9e09, java.io.tmpdir=C:\Users\GITELR~1.CUT\AppData\Local\Temp\, java.vendor.url.bug=http://bugreport.sun.com/bugreport/, maven.multiModuleProjectDirectory=C:\Users\User1\eclipse-workspace\cToric, env.PROGRAMDATA=C:\ProgramData, env.COMSPEC=C:\Windows\system32\cmd.exe, os.arch=amd64, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, java.ext.dirs=C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext;C:\Windows\Sun\Java\lib\ext, env.LOCALAPPDATA=C:\Users\User1\AppData\Local, user.dir=C:\Users\User1\eclipse-workspace\cToric, line.separator=
    , java.vm.name=Java HotSpot(TM) 64-Bit Server VM, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, env.CAB_HOME_R14=C:\Program Files (x86)\CA\SharedComponents\ARCserve Backup\Setup\r16\, env.USERNAME=GitelR, file.encoding=Cp1252, env.USERDOMAIN=CUTTING-EDGE, java.specification.version=1.8, env.PROCESSOR_LEVEL=6}
    [WARNING] Using platform encoding (Cp1252 actually) to copy filtered resources, i.e. build is platform dependent!
    [DEBUG] resource with targetPath null
    directory C:\Users\User1\eclipse-workspace\cToric\src\test\resources
    excludes []
    includes []
    [INFO] skip non existing resourceDirectory C:\Users\User1\eclipse-workspace\cToric\src\test\resources
    [DEBUG] no use filter components
    [INFO] 
    [INFO] --- maven-compiler-plugin:3.7.0:testCompile (default-testCompile) @ cToric ---
    [DEBUG] Configuring mojo org.apache.maven.plugins:maven-compiler-plugin:3.7.0:testCompile from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-compiler-plugin:3.7.0, parent: sun.misc.Launcher$AppClassLoader@4e25154f]
    [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-compiler-plugin:3.7.0:testCompile' with basic configurator -->
    [DEBUG]   (f) basedir = C:\Users\User1\eclipse-workspace\cToric
    [DEBUG]   (f) buildDirectory = C:\Users\User1\eclipse-workspace\cToric\target
    [DEBUG]   (f) compilePath = [C:\Users\User1\eclipse-workspace\cToric\target\classes, C:\Users\User1\.m2\repository\org\primefaces\primefaces\6.2\primefaces-6.2.jar, C:\Users\User1\.m2\repository\com\sun\faces\jsf-api\2.2.18\jsf-api-2.2.18.jar, C:\Users\User1\.m2\repository\com\sun\faces\jsf-impl\2.2.18\jsf-impl-2.2.18.jar, C:\Users\User1\.m2\repository\commons-logging\commons-logging\1.2\commons-logging-1.2.jar, C:\Users\User1\.m2\repository\javax\servlet\servlet-api\2.5\servlet-api-2.5.jar, C:\Users\User1\.m2\repository\javax\validation\validation-api\2.0.1.Final\validation-api-2.0.1.Final.jar, C:\Users\User1\.m2\repository\log4j\log4j\1.2.17\log4j-1.2.17.jar, C:\Users\User1\.m2\repository\org\json\json\20180813\json-20180813.jar, C:\Users\User1\.m2\repository\org\hibernate\hibernate-core\5.4.2.Final\hibernate-core-5.4.2.Final.jar, C:\Users\User1\.m2\repository\org\jboss\logging\jboss-logging\3.3.2.Final\jboss-logging-3.3.2.Final.jar, C:\Users\User1\.m2\repository\javax\persistence\javax.persistence-api\2.2\javax.persistence-api-2.2.jar, C:\Users\User1\.m2\repository\org\javassist\javassist\3.24.0-GA\javassist-3.24.0-GA.jar, C:\Users\User1\.m2\repository\net\bytebuddy\byte-buddy\1.9.10\byte-buddy-1.9.10.jar, C:\Users\User1\.m2\repository\antlr\antlr\2.7.7\antlr-2.7.7.jar, C:\Users\User1\.m2\repository\org\jboss\spec\javax\transaction\jboss-transaction-api_1.2_spec\1.1.1.Final\jboss-transaction-api_1.2_spec-1.1.1.Final.jar, C:\Users\User1\.m2\repository\org\jboss\jandex\2.0.5.Final\jandex-2.0.5.Final.jar, C:\Users\User1\.m2\repository\com\fasterxml\classmate\1.3.4\classmate-1.3.4.jar, C:\Users\User1\.m2\repository\javax\activation\javax.activation-api\1.2.0\javax.activation-api-1.2.0.jar, C:\Users\User1\.m2\repository\org\dom4j\dom4j\2.1.1\dom4j-2.1.1.jar, C:\Users\User1\.m2\repository\org\hibernate\common\hibernate-commons-annotations\5.1.0.Final\hibernate-commons-annotations-5.1.0.Final.jar, C:\Users\User1\.m2\repository\javax\xml\bind\jaxb-api\2.3.1\jaxb-api-2.3.1.jar, C:\Users\User1\.m2\repository\org\glassfish\jaxb\jaxb-runtime\2.3.1\jaxb-runtime-2.3.1.jar, C:\Users\User1\.m2\repository\org\glassfish\jaxb\txw2\2.3.1\txw2-2.3.1.jar, C:\Users\User1\.m2\repository\com\sun\istack\istack-commons-runtime\3.0.7\istack-commons-runtime-3.0.7.jar, C:\Users\User1\.m2\repository\org\jvnet\staxex\stax-ex\1.8\stax-ex-1.8.jar, C:\Users\User1\.m2\repository\com\sun\xml\fastinfoset\FastInfoset\1.2.15\FastInfoset-1.2.15.jar, C:\Users\User1\.m2\repository\mysql\mysql-connector-java\8.0.15\mysql-connector-java-8.0.15.jar, C:\Users\User1\.m2\repository\com\google\protobuf\protobuf-java\3.6.1\protobuf-java-3.6.1.jar]
    [DEBUG]   (f) compileSourceRoots = [C:\Users\User1\eclipse-workspace\cToric\src\test\java]
    [DEBUG]   (f) compilerId = javac
    [DEBUG]   (f) debug = true
    [DEBUG]   (f) failOnError = true
    [DEBUG]   (f) failOnWarning = false
    [DEBUG]   (f) forceJavacCompilerUse = false
    [DEBUG]   (f) fork = false
    [DEBUG]   (f) generatedTestSourcesDirectory = C:\Users\User1\eclipse-workspace\cToric\target\generated-test-sources\test-annotations
    [DEBUG]   (f) mojoExecution = org.apache.maven.plugins:maven-compiler-plugin:3.7.0:testCompile {execution: default-testCompile}
    [DEBUG]   (f) optimize = false
    [DEBUG]   (f) outputDirectory = C:\Users\User1\eclipse-workspace\cToric\target\test-classes
    [DEBUG]   (f) parameters = false
    [DEBUG]   (f) project = MavenProject: cToric:cToric:0.0.1-SNAPSHOT @ C:\Users\User1\eclipse-workspace\cToric\pom.xml
    [DEBUG]   (f) session = org.apache.maven.execution.MavenSession@53ab0286
    [DEBUG]   (f) showDeprecation = false
    [DEBUG]   (f) showWarnings = false
    [DEBUG]   (f) skipMultiThreadWarning = false
    [DEBUG]   (f) source = 1.8
    [DEBUG]   (f) staleMillis = 0
    [DEBUG]   (f) target = 1.8
    [DEBUG]   (f) testPath = [C:\Users\User1\eclipse-workspace\cToric\target\test-classes, C:\Users\User1\eclipse-workspace\cToric\target\classes, C:\Users\User1\.m2\repository\org\primefaces\primefaces\6.2\primefaces-6.2.jar, C:\Users\User1\.m2\repository\com\sun\faces\jsf-api\2.2.18\jsf-api-2.2.18.jar, C:\Users\User1\.m2\repository\com\sun\faces\jsf-impl\2.2.18\jsf-impl-2.2.18.jar, C:\Users\User1\.m2\repository\commons-logging\commons-logging\1.2\commons-logging-1.2.jar, C:\Users\User1\.m2\repository\javax\servlet\servlet-api\2.5\servlet-api-2.5.jar, C:\Users\User1\.m2\repository\javax\validation\validation-api\2.0.1.Final\validation-api-2.0.1.Final.jar, C:\Users\User1\.m2\repository\log4j\log4j\1.2.17\log4j-1.2.17.jar, C:\Users\User1\.m2\repository\org\json\json\20180813\json-20180813.jar, C:\Users\User1\.m2\repository\org\hibernate\hibernate-core\5.4.2.Final\hibernate-core-5.4.2.Final.jar, C:\Users\User1\.m2\repository\org\jboss\logging\jboss-logging\3.3.2.Final\jboss-logging-3.3.2.Final.jar, C:\Users\User1\.m2\repository\javax\persistence\javax.persistence-api\2.2\javax.persistence-api-2.2.jar, C:\Users\User1\.m2\repository\org\javassist\javassist\3.24.0-GA\javassist-3.24.0-GA.jar, C:\Users\User1\.m2\repository\net\bytebuddy\byte-buddy\1.9.10\byte-buddy-1.9.10.jar, C:\Users\User1\.m2\repository\antlr\antlr\2.7.7\antlr-2.7.7.jar, C:\Users\User1\.m2\repository\org\jboss\spec\javax\transaction\jboss-transaction-api_1.2_spec\1.1.1.Final\jboss-transaction-api_1.2_spec-1.1.1.Final.jar, C:\Users\User1\.m2\repository\org\jboss\jandex\2.0.5.Final\jandex-2.0.5.Final.jar, C:\Users\User1\.m2\repository\com\fasterxml\classmate\1.3.4\classmate-1.3.4.jar, C:\Users\User1\.m2\repository\javax\activation\javax.activation-api\1.2.0\javax.activation-api-1.2.0.jar, C:\Users\User1\.m2\repository\org\dom4j\dom4j\2.1.1\dom4j-2.1.1.jar, C:\Users\User1\.m2\repository\org\hibernate\common\hibernate-commons-annotations\5.1.0.Final\hibernate-commons-annotations-5.1.0.Final.jar, C:\Users\User1\.m2\repository\javax\xml\bind\jaxb-api\2.3.1\jaxb-api-2.3.1.jar, C:\Users\User1\.m2\repository\org\glassfish\jaxb\jaxb-runtime\2.3.1\jaxb-runtime-2.3.1.jar, C:\Users\User1\.m2\repository\org\glassfish\jaxb\txw2\2.3.1\txw2-2.3.1.jar, C:\Users\User1\.m2\repository\com\sun\istack\istack-commons-runtime\3.0.7\istack-commons-runtime-3.0.7.jar, C:\Users\User1\.m2\repository\org\jvnet\staxex\stax-ex\1.8\stax-ex-1.8.jar, C:\Users\User1\.m2\repository\com\sun\xml\fastinfoset\FastInfoset\1.2.15\FastInfoset-1.2.15.jar, C:\Users\User1\.m2\repository\mysql\mysql-connector-java\8.0.15\mysql-connector-java-8.0.15.jar, C:\Users\User1\.m2\repository\com\google\protobuf\protobuf-java\3.6.1\protobuf-java-3.6.1.jar]
    [DEBUG]   (f) useIncrementalCompilation = true
    [DEBUG]   (f) verbose = false
    [DEBUG] -- end configuration --
    [DEBUG] Using compiler 'javac'.
    [INFO] No sources to compile
    [INFO] 
    [INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ cToric ---
    [DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=1, ConflictMarker.markTime=0, ConflictMarker.nodeCount=132, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=27, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=1, ConflictResolver.conflictItemCount=77, DefaultDependencyCollector.collectTime=361, DefaultDependencyCollector.transformTime=2}
    [DEBUG] org.apache.maven.plugins:maven-surefire-plugin:jar:2.12.4:
    [DEBUG]    org.apache.maven:maven-plugin-api:jar:2.0.9:compile
    [DEBUG]    org.apache.maven.surefire:surefire-booter:jar:2.12.4:compile
    [DEBUG]       org.apache.maven.surefire:surefire-api:jar:2.12.4:compile
    [DEBUG]    org.apache.maven.surefire:maven-surefire-common:jar:2.12.4:compile
    [DEBUG]       org.apache.commons:commons-lang3:jar:3.1:compile
    [DEBUG]       org.apache.maven.shared:maven-common-artifact-filters:jar:1.3:compile
    [DEBUG]    org.codehaus.plexus:plexus-utils:jar:3.0.8:compile
    [DEBUG]    org.apache.maven:maven-artifact:jar:2.0.9:compile
    [DEBUG]    org.apache.maven:maven-project:jar:2.0.9:compile
    [DEBUG]       org.apache.maven:maven-settings: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-artifact-manager:jar:2.0.9:compile
    [DEBUG]       org.apache.maven:maven-plugin-registry:jar:2.0.9:compile
    [DEBUG]       org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
    [DEBUG]          junit:junit:jar:3.8.1:test
    [DEBUG]    org.apache.maven:maven-core:jar:2.0.9:compile
    [DEBUG]       org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.9:compile
    [DEBUG]       org.apache.maven.reporting:maven-reporting-api: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-plugin-descriptor:jar:2.0.9:compile
    [DEBUG]       org.apache.maven:maven-monitor:jar:2.0.9:compile
    [DEBUG]       classworlds:classworlds:jar:1.1:compile
    [DEBUG]    org.apache.maven:maven-toolchain:jar:2.0.9:compile
    [DEBUG]    org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.1:compile
    [DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-surefire-plugin:2.12.4
    [DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-surefire-plugin:2.12.4
    [DEBUG]   Imported:  < maven.api
    [DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-surefire-plugin:2.12.4
    [DEBUG]   Included: org.apache.maven.plugins:maven-surefire-plugin:jar:2.12.4
    [DEBUG]   Included: org.apache.maven.surefire:surefire-booter:jar:2.12.4
    [DEBUG]   Included: org.apache.maven.surefire:surefire-api:jar:2.12.4
    [DEBUG]   Included: org.apache.maven.surefire:maven-surefire-common:jar:2.12.4
    [DEBUG]   Included: org.apache.commons:commons-lang3:jar:3.1
    [DEBUG]   Included: org.apache.maven.shared:maven-common-artifact-filters:jar:1.3
    [DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.0.8
    [DEBUG]   Included: org.apache.maven.reporting:maven-reporting-api:jar:2.0.9
    [DEBUG]   Included: org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.1
    [DEBUG] Configuring mojo org.apache.maven.plugins:maven-surefire-plugin:2.12.4:test from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-surefire-plugin:2.12.4, parent: sun.misc.Launcher$AppClassLoader@4e25154f]
    [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-surefire-plugin:2.12.4:test' with basic configurator -->
    [DEBUG]   (s) basedir = C:\Users\User1\eclipse-workspace\cToric
    [DEBUG]   (s) childDelegation = false
    [DEBUG]   (s) classesDirectory = C:\Users\User1\eclipse-workspace\cToric\target\classes
    [DEBUG]   (s) disableXmlReport = false
    [DEBUG]   (s) enableAssertions = true
    [DEBUG]   (s) forkMode = once
    [DEBUG]   (s) junitArtifactName = junit:junit
    [DEBUG]   (s) localRepository =       id: local
          url: file:///C:/Users/User1/.m2/repository/
       layout: default
    snapshots: [enabled => true, update => always]
     releases: [enabled => true, update => always]
     
    [DEBUG]   (f) parallelMavenExecution = false
    [DEBUG]   (s) perCoreThreadCount = true
    [DEBUG]   (s) pluginArtifactMap = {org.apache.maven.plugins:maven-surefire-plugin=org.apache.maven.plugins:maven-surefire-plugin:maven-plugin:2.12.4:, org.apache.maven:maven-plugin-api=org.apache.maven:maven-plugin-api:jar:2.0.9:compile, org.apache.maven.surefire:surefire-booter=org.apache.maven.surefire:surefire-booter:jar:2.12.4:compile, org.apache.maven.surefire:surefire-api=org.apache.maven.surefire:surefire-api:jar:2.12.4:compile, org.apache.maven.surefire:maven-surefire-common=org.apache.maven.surefire:maven-surefire-common:jar:2.12.4:compile, org.apache.commons:commons-lang3=org.apache.commons:commons-lang3:jar:3.1:compile, org.apache.maven.shared:maven-common-artifact-filters=org.apache.maven.shared:maven-common-artifact-filters:jar:1.3:compile, org.codehaus.plexus:plexus-utils=org.codehaus.plexus:plexus-utils:jar:3.0.8:compile, org.apache.maven:maven-artifact=org.apache.maven:maven-artifact:jar:2.0.9:compile, org.apache.maven:maven-project=org.apache.maven:maven-project:jar:2.0.9:compile, org.apache.maven:maven-settings=org.apache.maven:maven-settings:jar:2.0.9:compile, org.apache.maven:maven-profile=org.apache.maven:maven-profile:jar:2.0.9:compile, org.apache.maven:maven-model=org.apache.maven:maven-model:jar:2.0.9:compile, org.apache.maven:maven-artifact-manager=org.apache.maven:maven-artifact-manager:jar:2.0.9:compile, org.apache.maven:maven-plugin-registry=org.apache.maven:maven-plugin-registry:jar:2.0.9:compile, org.codehaus.plexus:plexus-container-default=org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile, org.apache.maven:maven-core=org.apache.maven:maven-core:jar:2.0.9:compile, org.apache.maven:maven-plugin-parameter-documenter=org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.9:compile, org.apache.maven.reporting:maven-reporting-api=org.apache.maven.reporting:maven-reporting-api:jar:2.0.9:compile, org.apache.maven:maven-repository-metadata=org.apache.maven:maven-repository-metadata:jar:2.0.9:compile, org.apache.maven:maven-error-diagnostics=org.apache.maven:maven-error-diagnostics:jar:2.0.9:compile, org.apache.maven:maven-plugin-descriptor=org.apache.maven:maven-plugin-descriptor:jar:2.0.9:compile, org.apache.maven:maven-monitor=org.apache.maven:maven-monitor:jar:2.0.9:compile, classworlds:classworlds=classworlds:classworlds:jar:1.1:compile, org.apache.maven:maven-toolchain=org.apache.maven:maven-toolchain:jar:2.0.9:compile, org.apache.maven.plugin-tools:maven-plugin-annotations=org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.1:compile}
    [DEBUG]   (f) pluginDescriptor = Component Descriptor: role: 'org.apache.maven.plugin.Mojo', implementation: 'org.apache.maven.plugin.surefire.HelpMojo', role hint: 'org.apache.maven.plugins:maven-surefire-plugin:2.12.4:help'
    role: 'org.apache.maven.plugin.Mojo', implementation: 'org.apache.maven.plugin.surefire.SurefirePlugin', role hint: 'org.apache.maven.plugins:maven-surefire-plugin:2.12.4:test'
    ---
    [DEBUG]   (s) printSummary = true
    [DEBUG]   (s) projectArtifactMap = {org.primefaces:primefaces=org.primefaces:primefaces:jar:6.2:provided, com.sun.faces:jsf-api=com.sun.faces:jsf-api:jar:2.2.18:provided, com.sun.faces:jsf-impl=com.sun.faces:jsf-impl:jar:2.2.18:provided, commons-logging:commons-logging=commons-logging:commons-logging:jar:1.2:provided, javax.servlet:servlet-api=javax.servlet:servlet-api:jar:2.5:provided, javax.validation:validation-api=javax.validation:validation-api:jar:2.0.1.Final:provided, log4j:log4j=log4j:log4j:jar:1.2.17:provided, org.json:json=org.json:json:jar:20180813:provided, org.hibernate:hibernate-core=org.hibernate:hibernate-core:jar:5.4.2.Final:compile, org.jboss.logging:jboss-logging=org.jboss.logging:jboss-logging:jar:3.3.2.Final:compile, javax.persistence:javax.persistence-api=javax.persistence:javax.persistence-api:jar:2.2:compile, org.javassist:javassist=org.javassist:javassist:jar:3.24.0-GA:compile, net.bytebuddy:byte-buddy=net.bytebuddy:byte-buddy:jar:1.9.10:compile, antlr:antlr=antlr:antlr:jar:2.7.7:compile, org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec=org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:jar:1.1.1.Final:compile, org.jboss:jandex=org.jboss:jandex:jar:2.0.5.Final:compile, com.fasterxml:classmate=com.fasterxml:classmate:jar:1.3.4:compile, javax.activation:javax.activation-api=javax.activation:javax.activation-api:jar:1.2.0:compile, org.dom4j:dom4j=org.dom4j:dom4j:jar:2.1.1:compile, org.hibernate.common:hibernate-commons-annotations=org.hibernate.common:hibernate-commons-annotations:jar:5.1.0.Final:compile, javax.xml.bind:jaxb-api=javax.xml.bind:jaxb-api:jar:2.3.1:compile, org.glassfish.jaxb:jaxb-runtime=org.glassfish.jaxb:jaxb-runtime:jar:2.3.1:compile, org.glassfish.jaxb:txw2=org.glassfish.jaxb:txw2:jar:2.3.1:compile, com.sun.istack:istack-commons-runtime=com.sun.istack:istack-commons-runtime:jar:3.0.7:compile, org.jvnet.staxex:stax-ex=org.jvnet.staxex:stax-ex:jar:1.8:compile, com.sun.xml.fastinfoset:FastInfoset=com.sun.xml.fastinfoset:FastInfoset:jar:1.2.15:compile, mysql:mysql-connector-java=mysql:mysql-connector-java:jar:8.0.15:compile, com.google.protobuf:protobuf-java=com.google.protobuf:protobuf-java:jar:3.6.1:compile}
    [DEBUG]   (s) redirectTestOutputToFile = false
    [DEBUG]   (s) remoteRepositories = [      id: central
          url: <a href="https://repo.maven.apache.org/maven2" target="_blank">https://repo.maven.apache.org/maven2</a>
       layout: default
    snapshots: [enabled => false, update => daily]
     releases: [enabled => true, update => never]
    ]
    [DEBUG]   (s) reportFormat = brief
    [DEBUG]   (s) reportsDirectory = C:\Users\User1\eclipse-workspace\cToric\target\surefire-reports
    [DEBUG]   (s) runOrder = filesystem
    [DEBUG]   (s) skip = false
    [DEBUG]   (s) skipTests = false
    [DEBUG]   (s) testClassesDirectory = C:\Users\User1\eclipse-workspace\cToric\target\test-classes
    [DEBUG]   (s) testFailureIgnore = false
    [DEBUG]   (s) testNGArtifactName = org.testng:testng
    [DEBUG]   (s) testSourceDirectory = C:\Users\User1\eclipse-workspace\cToric\src\test\java
    [DEBUG]   (s) trimStackTrace = true
    [DEBUG]   (s) useFile = true
    [DEBUG]   (s) useManifestOnlyJar = true
    [DEBUG]   (s) useSystemClassLoader = true
    [DEBUG]   (s) useUnlimitedThreads = false
    [DEBUG]   (s) workingDirectory = C:\Users\User1\eclipse-workspace\cToric
    [DEBUG]   (s) project = MavenProject: cToric:cToric:0.0.1-SNAPSHOT @ C:\Users\User1\eclipse-workspace\cToric\pom.xml
    [DEBUG]   (s) session = org.apache.maven.execution.MavenSession@53ab0286
    [DEBUG] -- end configuration --
    [INFO] 
    [INFO] --- maven-war-plugin:3.0.0:war (default-war) @ cToric ---
    [DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=0, ConflictMarker.nodeCount=98, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=1, ConflictIdSorter.conflictIdCount=38, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=1, ConflictResolver.conflictItemCount=89, DefaultDependencyCollector.collectTime=98, DefaultDependencyCollector.transformTime=2}
    [DEBUG] org.apache.maven.plugins:maven-war-plugin:jar:3.0.0:
    [DEBUG]    org.apache.maven:maven-plugin-api:jar:3.0:compile
    [DEBUG]       org.apache.maven:maven-model:jar:3.0:compile
    [DEBUG]       org.apache.maven:maven-artifact:jar:3.0:compile
    [DEBUG]       org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile
    [DEBUG]          org.sonatype.sisu:sisu-inject-bean:jar:1.4.2:compile
    [DEBUG]             org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7:compile
    [DEBUG]    org.apache.maven:maven-core:jar:3.0:compile
    [DEBUG]       org.apache.maven:maven-settings:jar:3.0:compile
    [DEBUG]       org.apache.maven:maven-settings-builder:jar:3.0:compile
    [DEBUG]       org.apache.maven:maven-repository-metadata:jar:3.0:compile
    [DEBUG]       org.apache.maven:maven-model-builder:jar:3.0:compile
    [DEBUG]       org.apache.maven:maven-aether-provider:jar:3.0:runtime
    [DEBUG]       org.sonatype.aether:aether-impl:jar:1.7:compile
    [DEBUG]          org.sonatype.aether:aether-spi:jar:1.7:compile
    [DEBUG]       org.sonatype.aether:aether-api:jar:1.7:compile
    [DEBUG]       org.sonatype.aether:aether-util:jar:1.7:compile
    [DEBUG]       org.codehaus.plexus:plexus-classworlds:jar:2.2.3:compile
    [DEBUG]       org.codehaus.plexus:plexus-component-annotations:jar:1.6:compile
    [DEBUG]       org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile
    [DEBUG]          org.sonatype.plexus:plexus-cipher:jar:1.4:compile
    [DEBUG]    org.apache.maven:maven-archiver:jar:3.1.1:compile
    [DEBUG]       org.apache.maven.shared:maven-shared-utils:jar:3.0.1:compile
    [DEBUG]    commons-io:commons-io:jar:2.5:compile
    [DEBUG]    org.codehaus.plexus:plexus-archiver:jar:3.4:compile
    [DEBUG]       org.codehaus.plexus:plexus-io:jar:2.7.1:compile
    [DEBUG]       org.apache.commons:commons-compress:jar:1.11:compile
    [DEBUG]       org.iq80.snappy:snappy:jar:0.4:compile
    [DEBUG]       org.tukaani:xz:jar:1.5:runtime
    [DEBUG]    org.codehaus.plexus:plexus-interpolation:jar:1.22:compile
    [DEBUG]    com.thoughtworks.xstream:xstream:jar:1.4.9: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.24:compile
    [DEBUG]    org.apache.maven.shared:maven-filtering:jar:3.1.1:compile
    [DEBUG]       org.sonatype.plexus:plexus-build-api:jar:0.0.7:compile
    [DEBUG]    org.apache.maven.shared:maven-mapping:jar:3.0.0:compile
    [DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-war-plugin:3.0.0
    [DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-war-plugin:3.0.0
    [DEBUG]   Imported:  < maven.api
    [DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-war-plugin:3.0.0
    [DEBUG]   Included: org.apache.maven.plugins:maven-war-plugin:jar:3.0.0
    [DEBUG]   Included: org.sonatype.sisu:sisu-inject-bean:jar:1.4.2
    [DEBUG]   Included: org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7
    [DEBUG]   Included: org.sonatype.aether:aether-util:jar:1.7
    [DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:1.6
    [DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3
    [DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.4
    [DEBUG]   Included: org.apache.maven:maven-archiver:jar:3.1.1
    [DEBUG]   Included: org.apache.maven.shared:maven-shared-utils:jar:3.0.1
    [DEBUG]   Included: commons-io:commons-io:jar:2.5
    [DEBUG]   Included: org.codehaus.plexus:plexus-archiver:jar:3.4
    [DEBUG]   Included: org.codehaus.plexus:plexus-io:jar:2.7.1
    [DEBUG]   Included: org.apache.commons:commons-compress:jar:1.11
    [DEBUG]   Included: org.iq80.snappy:snappy:jar:0.4
    [DEBUG]   Included: org.tukaani:xz:jar:1.5
    [DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.22
    [DEBUG]   Included: com.thoughtworks.xstream:xstream:jar:1.4.9
    [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.24
    [DEBUG]   Included: org.apache.maven.shared:maven-filtering:jar:3.1.1
    [DEBUG]   Included: org.sonatype.plexus:plexus-build-api:jar:0.0.7
    [DEBUG]   Included: org.apache.maven.shared:maven-mapping:jar:3.0.0
    [DEBUG] Configuring mojo org.apache.maven.plugins:maven-war-plugin:3.0.0:war from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-war-plugin:3.0.0, parent: sun.misc.Launcher$AppClassLoader@4e25154f]
    [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-war-plugin:3.0.0:war' with basic configurator -->
    [DEBUG]   (s) archiveClasses = false
    [DEBUG]   (s) attachClasses = false
    [DEBUG]   (s) cacheFile = C:\Users\User1\eclipse-workspace\cToric\target\war\work\webapp-cache.xml
    [DEBUG]   (s) classesClassifier = classes
    [DEBUG]   (s) classesDirectory = C:\Users\User1\eclipse-workspace\cToric\target\classes
    [DEBUG]   (f) escapedBackslashesInFilePath = false
    [DEBUG]   (s) failOnMissingWebXml = false
    [DEBUG]   (f) filteringDeploymentDescriptors = false
    [DEBUG]   (f) includeEmptyDirectories = false
    [DEBUG]   (s) outputDirectory = C:\Users\User1\eclipse-workspace\cToric\target
    [DEBUG]   (s) primaryArtifact = true
    [DEBUG]   (s) project = MavenProject: cToric:cToric:0.0.1-SNAPSHOT @ C:\Users\User1\eclipse-workspace\cToric\pom.xml
    [DEBUG]   (f) recompressZippedFiles = true
    [DEBUG]   (f) session = org.apache.maven.execution.MavenSession@53ab0286
    [DEBUG]   (f) skip = false
    [DEBUG]   (f) supportMultiLineFiltering = false
    [DEBUG]   (s) useCache = false
    [DEBUG]   (f) useDefaultDelimiters = true
    [DEBUG]   (f) useJvmChmod = true
    [DEBUG]   (s) warName = cToric-0.0.1-SNAPSHOT
    [DEBUG]   (s) warSourceDirectory = C:\Users\User1\eclipse-workspace\cToric\WebContent
    [DEBUG]   (s) warSourceIncludes = **
    [DEBUG]   (s) webappDirectory = C:\Users\User1\eclipse-workspace\cToric\target\cToric-0.0.1-SNAPSHOT
    [DEBUG]   (s) workDirectory = C:\Users\User1\eclipse-workspace\cToric\target\war\work
    [DEBUG] -- end configuration --
    [INFO] Packaging webapp
    [INFO] Assembling webapp [cToric] in [C:\Users\User1\eclipse-workspace\cToric\target\cToric-0.0.1-SNAPSHOT]
    [DEBUG] properties used {java.vendor=Oracle Corporation, env.SYSTEMROOT=C:\Windows, env.USERDOMAIN_ROAMINGPROFILE=CUTTING-EDGE, env.DEFLOGDIR=C:\ProgramData\McAfee\DesktopProtection, sun.java.launcher=SUN_STANDARD, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.ONEDRIVE=C:\Users\User1\OneDrive, os.name=Windows 10, sun.boot.class.path=C:\Program Files\Java\jdk1.8.0_202\jre\lib\resources.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\rt.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\sunrsasign.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\jsse.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\jce.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\charsets.jar;C:\Program Files\Java\jdk1.8.0_202\jre\lib\jfr.jar;C:\Program Files\Java\jdk1.8.0_202\jre\classes, env.COMPUTERNAME=TLSGITELRW102, env.ALLUSERSPROFILE=C:\ProgramData, sun.desktop=windows, java.vm.specification.vendor=Oracle Corporation, java.runtime.version=1.8.0_202-b08, env.HOMEPATH=\Users\User1, user.name=GitelR, maven.build.version=Apache Maven 3.3.9 (bb52d8502b132ec0a5a3f4c09453c07478323dc5; 2015-11-10T17:41:47+01:00), env.PATH=C:/Program Files/Java/jdk1.8.0_202/bin/../jre/bin/server;C:/Program Files/Java/jdk1.8.0_202/bin/../jre/bin;C:/Program Files/Java/jdk1.8.0_202/bin/../jre/lib/amd64;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\PuTTY\;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET Web Pages\v1.0\;C:\Program Files (x86)\Windows Kits\8.0\Windows Performance Toolkit\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Programs\apache-maven-3.6.0\bin;C:\Users\User1\AppData\Local\Microsoft\WindowsApps;;C:\Users\User1\Desktop;, user.language=fr, env.WINDIR=C:\Windows, sun.boot.library.path=C:\Program Files\Java\jdk1.8.0_202\jre\bin, classworlds.conf=C:\Users\User1\eclipse-workspace\.metadata\.plugins\org.eclipse.m2e.launching\launches\m2conf2173078848685055778.tmp, java.version=1.8.0_202, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 158 Stepping 9, GenuineIntel, user.timezone=Europe/Paris, env.TEMP=C:\Users\GITELR~1.CUT\AppData\Local\Temp, sun.arch.data.model=64, java.endorsed.dirs=C:\Program Files\Java\jdk1.8.0_202\jre\lib\endorsed, env.VSEDEFLOGDIR=C:\ProgramData\McAfee\DesktopProtection, sun.cpu.isalist=amd64, env.HOMEDRIVE=C:, sun.jnu.encoding=Cp1252, file.encoding.pkg=sun.io, env.VS110COMNTOOLS=C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\Tools\, env.SYSTEMDRIVE=C:, file.separator=\, java.specification.name=Java Platform API Specification, java.class.version=52.0, org.slf4j.simpleLogger.defaultLogLevel=debug, user.country=FR, java.home=C:\Program Files\Java\jdk1.8.0_202\jre, env.APPDATA=C:\Users\User1\AppData\Roaming, env.CONFIGSETROOT=C:\Windows\ConfigSetRoot, env.PUBLIC=C:\Users\Public, java.vm.info=mixed mode, env.OS=Windows_NT, os.version=10.0, env.=::=::\, path.separator=;, java.vm.version=25.202-b08, env.ASL.LOG=Destination=file, env.USERPROFILE=C:\Users\User1, user.variant=, java.awt.printerjob=sun.awt.windows.WPrinterJob, env.TMP=C:\Users\GITELR~1.CUT\AppData\Local\Temp, env.PROGRAMFILES=C:\Program Files, sun.io.unicode.encoding=UnicodeLittle, awt.toolkit=sun.awt.windows.WToolkit, user.script=, user.home=C:\Users\User1, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, env.SESSIONNAME=Console, java.specification.vendor=Oracle Corporation, env.NUMBER_OF_PROCESSORS=8, java.library.path=C:\Program Files\Java\jdk1.8.0_202\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:/Program Files/Java/jdk1.8.0_202/bin/../jre/bin/server;C:/Program Files/Java/jdk1.8.0_202/bin/../jre/bin;C:/Program Files/Java/jdk1.8.0_202/bin/../jre/lib/amd64;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\PuTTY\;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET Web Pages\v1.0\;C:\Program Files (x86)\Windows Kits\8.0\Windows Performance Toolkit\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Programs\apache-maven-3.6.0\bin;C:\Users\User1\AppData\Local\Microsoft\WindowsApps;;C:\Users\User1\Desktop;;., java.vendor.url=http://java.oracle.com/, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.USERDNSDOMAIN=CUTTING-EDGE.FR, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules, java.vm.vendor=Oracle Corporation, java.runtime.name=Java(TM) SE Runtime Environment, maven.home=C:\Users\User1\eclipse-workspace\cToric\EMBEDDED, java.class.path=C:\Users\User1\.p2\pool\plugins\org.eclipse.m2e.maven.runtime_1.8.2.20171007-0216\jars\plexus-classworlds-2.5.2.jar, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher -B -X -e package, env.PROGRAMW6432=C:\Program Files, maven.version=3.3.9, env.PROGRAMFILES(X86)=C:\Program Files (x86), java.vm.specification.name=Java Virtual Machine Specification, env.LOGONSERVER=\\ARTHUR, env.PROCESSOR_ARCHITECTURE=AMD64, java.vm.specification.version=1.8, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, sun.os.patch.level=, sun.cpu.endian=little, java.io.tmpdir=C:\Users\GITELR~1.CUT\AppData\Local\Temp\, env.PROCESSOR_REVISION=9e09, maven.multiModuleProjectDirectory=C:\Users\User1\eclipse-workspace\cToric, 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=amd64, java.ext.dirs=C:\Program Files\Java\jdk1.8.0_202\jre\lib\ext;C:\Windows\Sun\Java\lib\ext, user.dir=C:\Users\User1\eclipse-workspace\cToric, env.LOCALAPPDATA=C:\Users\User1\AppData\Local, line.separator=
    , java.vm.name=Java HotSpot(TM) 64-Bit Server VM, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, env.CAB_HOME_R14=C:\Program Files (x86)\CA\SharedComponents\ARCserve Backup\Setup\r16\, env.USERNAME=GitelR, file.encoding=Cp1252, env.USERDOMAIN=CUTTING-EDGE, java.specification.version=1.8, env.PROCESSOR_LEVEL=6}
    [INFO] Processing war project
    [INFO] Copying webapp resources [C:\Users\User1\eclipse-workspace\cToric\WebContent]
    [DEBUG]  + index.xhtml has been copied.
    [DEBUG]  + META-INF/MANIFEST.MF has been copied.
    [DEBUG]  + WEB-INF/faces-config.xml has been copied.
    [DEBUG]  + WEB-INF/hibernate.cfg.xml has been copied.
    [DEBUG]  + WEB-INF/lib/jsf-api-2.2.8-31.jar has been copied.
    [DEBUG]  + WEB-INF/lib/jsf-impl-2.2.8-31.jar has been copied.
    [DEBUG]  + WEB-INF/web.xml has been copied.
    [DEBUG] Dump of the current build pathSet content -->
    [DEBUG] index.xhtml
    [DEBUG] META-INF/MANIFEST.MF
    [DEBUG] WEB-INF/faces-config.xml
    [DEBUG] WEB-INF/hibernate.cfg.xml
    [DEBUG] WEB-INF/lib/jsf-api-2.2.8-31.jar
    [DEBUG] WEB-INF/lib/jsf-impl-2.2.8-31.jar
    [DEBUG] WEB-INF/web.xml
    [DEBUG] -- end of dump --
    [DEBUG]  + WEB-INF/classes/cToric/form/validator/AngleValidator.class has been copied.
    [DEBUG]  + WEB-INF/classes/cToric/MyLog4.class has been copied.
    [DEBUG]  + WEB-INF/classes/cToric/test/Test.class has been copied.
    [DEBUG]  + WEB-INF/classes/log4j.properties has been copied.
    [DEBUG] Processing: hibernate-core-5.4.2.Final.jar
    [DEBUG]  + WEB-INF/lib/hibernate-core-5.4.2.Final.jar has been copied.
    [DEBUG] Processing: jboss-logging-3.3.2.Final.jar
    [DEBUG]  + WEB-INF/lib/jboss-logging-3.3.2.Final.jar has been copied.
    [DEBUG] Processing: javax.persistence-api-2.2.jar
    [DEBUG]  + WEB-INF/lib/javax.persistence-api-2.2.jar has been copied.
    [DEBUG] Processing: javassist-3.24.0-GA.jar
    [DEBUG]  + WEB-INF/lib/javassist-3.24.0-GA.jar has been copied.
    [DEBUG] Processing: byte-buddy-1.9.10.jar
    [DEBUG]  + WEB-INF/lib/byte-buddy-1.9.10.jar has been copied.
    [DEBUG] Processing: antlr-2.7.7.jar
    [DEBUG]  + WEB-INF/lib/antlr-2.7.7.jar has been copied.
    [DEBUG] Processing: jboss-transaction-api_1.2_spec-1.1.1.Final.jar
    [DEBUG]  + WEB-INF/lib/jboss-transaction-api_1.2_spec-1.1.1.Final.jar has been copied.
    [DEBUG] Processing: jandex-2.0.5.Final.jar
    [DEBUG]  + WEB-INF/lib/jandex-2.0.5.Final.jar has been copied.
    [DEBUG] Processing: classmate-1.3.4.jar
    [DEBUG]  + WEB-INF/lib/classmate-1.3.4.jar has been copied.
    [DEBUG] Processing: javax.activation-api-1.2.0.jar
    [DEBUG]  + WEB-INF/lib/javax.activation-api-1.2.0.jar has been copied.
    [DEBUG] Processing: dom4j-2.1.1.jar
    [DEBUG]  + WEB-INF/lib/dom4j-2.1.1.jar has been copied.
    [DEBUG] Processing: hibernate-commons-annotations-5.1.0.Final.jar
    [DEBUG]  + WEB-INF/lib/hibernate-commons-annotations-5.1.0.Final.jar has been copied.
    [DEBUG] Processing: jaxb-api-2.3.1.jar
    [DEBUG]  + WEB-INF/lib/jaxb-api-2.3.1.jar has been copied.
    [DEBUG] Processing: jaxb-runtime-2.3.1.jar
    [DEBUG]  + WEB-INF/lib/jaxb-runtime-2.3.1.jar has been copied.
    [DEBUG] Processing: txw2-2.3.1.jar
    [DEBUG]  + WEB-INF/lib/txw2-2.3.1.jar has been copied.
    [DEBUG] Processing: istack-commons-runtime-3.0.7.jar
    [DEBUG]  + WEB-INF/lib/istack-commons-runtime-3.0.7.jar has been copied.
    [DEBUG] Processing: stax-ex-1.8.jar
    [DEBUG]  + WEB-INF/lib/stax-ex-1.8.jar has been copied.
    [DEBUG] Processing: FastInfoset-1.2.15.jar
    [DEBUG]  + WEB-INF/lib/FastInfoset-1.2.15.jar has been copied.
    [DEBUG] Processing: mysql-connector-java-8.0.15.jar
    [DEBUG]  + WEB-INF/lib/mysql-connector-java-8.0.15.jar has been copied.
    [DEBUG] Processing: protobuf-java-3.6.1.jar
    [DEBUG]  + WEB-INF/lib/protobuf-java-3.6.1.jar has been copied.
    [INFO] Webapp assembled in [2091 msecs]
    [DEBUG] Excluding [] from the generated webapp archive.
    [DEBUG] Including [**] in the generated webapp archive.
    [DEBUG] Build won't fail if web.xml file is missing.
    [INFO] Building war: C:\Users\User1\eclipse-workspace\cToric\target\cToric-0.0.1-SNAPSHOT.war
    [DEBUG] adding directory META-INF/
    [DEBUG] adding entry META-INF/MANIFEST.MF
    [DEBUG] adding directory WEB-INF/
    [DEBUG] adding directory WEB-INF/classes/
    [DEBUG] adding directory WEB-INF/classes/cToric/
    [DEBUG] adding directory WEB-INF/classes/cToric/form/
    [DEBUG] adding directory WEB-INF/classes/cToric/form/validator/
    [DEBUG] adding directory WEB-INF/classes/cToric/test/
    [DEBUG] adding directory WEB-INF/lib/
    [DEBUG] adding entry index.xhtml
    [DEBUG] adding entry WEB-INF/classes/cToric/form/validator/AngleValidator.class
    [DEBUG] adding entry WEB-INF/classes/cToric/MyLog4.class
    [DEBUG] adding entry WEB-INF/classes/cToric/test/Test.class
    [DEBUG] adding entry WEB-INF/classes/log4j.properties
    [DEBUG] adding entry WEB-INF/faces-config.xml
    [DEBUG] adding entry WEB-INF/hibernate.cfg.xml
    [DEBUG] adding entry WEB-INF/lib/antlr-2.7.7.jar
    [DEBUG] adding entry WEB-INF/lib/byte-buddy-1.9.10.jar
    [DEBUG] adding entry WEB-INF/lib/classmate-1.3.4.jar
    [DEBUG] adding entry WEB-INF/lib/dom4j-2.1.1.jar
    [DEBUG] adding entry WEB-INF/lib/FastInfoset-1.2.15.jar
    [DEBUG] adding entry WEB-INF/lib/hibernate-commons-annotations-5.1.0.Final.jar
    [DEBUG] adding entry WEB-INF/lib/hibernate-core-5.4.2.Final.jar
    [DEBUG] adding entry WEB-INF/lib/istack-commons-runtime-3.0.7.jar
    [DEBUG] adding entry WEB-INF/lib/jandex-2.0.5.Final.jar
    [DEBUG] adding entry WEB-INF/lib/javassist-3.24.0-GA.jar
    [DEBUG] adding entry WEB-INF/lib/javax.activation-api-1.2.0.jar
    [DEBUG] adding entry WEB-INF/lib/javax.persistence-api-2.2.jar
    [DEBUG] adding entry WEB-INF/lib/jaxb-api-2.3.1.jar
    [DEBUG] adding entry WEB-INF/lib/jaxb-runtime-2.3.1.jar
    [DEBUG] adding entry WEB-INF/lib/jboss-logging-3.3.2.Final.jar
    [DEBUG] adding entry WEB-INF/lib/jboss-transaction-api_1.2_spec-1.1.1.Final.jar
    [DEBUG] adding entry WEB-INF/lib/jsf-api-2.2.18.jar
    [DEBUG] adding entry WEB-INF/lib/jsf-api-2.2.8-31.jar
    [DEBUG] adding entry WEB-INF/lib/jsf-impl-2.2.8-31.jar
    [DEBUG] adding entry WEB-INF/lib/json-20180813.jar
    [DEBUG] adding entry WEB-INF/lib/log4j-1.2.17.jar
    [DEBUG] adding entry WEB-INF/lib/mysql-connector-java-8.0.15.jar
    [DEBUG] adding entry WEB-INF/lib/primefaces-6.2.jar
    [DEBUG] adding entry WEB-INF/lib/protobuf-java-3.6.1.jar
    [DEBUG] adding entry WEB-INF/lib/stax-ex-1.8.jar
    [DEBUG] adding entry WEB-INF/lib/txw2-2.3.1.jar
    [DEBUG] adding entry WEB-INF/lib/validation-api-2.0.1.Final.jar
    [DEBUG] adding entry WEB-INF/web.xml
    [DEBUG] WEB-INF\web.xml already added, skipping
    [DEBUG] adding entry META-INF/maven/cToric/cToric/pom.xml
    [DEBUG] adding entry META-INF/maven/cToric/cToric/pom.properties
    [INFO] ------------------------------------------------------------------------
    [INFO] BUILD SUCCESS
    [INFO] ------------------------------------------------------------------------
    [INFO] Total time: 7.045 s
    [INFO] Finished at: 2019-04-01T08:54:34+02:00
    [INFO] Final Memory: 13M/243M
    [INFO] ------------------------------------------------------------------------
    - La communication consiste a comprendre celui qui ecoute !
    - Qui veut faire quelquechose trouve un moyen, qui ne veut rien faire trouve une excuse

  14. #14
    Membre chevronné Avatar de jeffray03
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Juillet 2008
    Messages
    1 501
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Allemagne

    Informations professionnelles :
    Activité : Développeur informatique

    Informations forums :
    Inscription : Juillet 2008
    Messages : 1 501
    Points : 2 120
    Points
    2 120
    Par défaut
    Salut,
    l´icone rouge est due probablement a la version de Java qui est activée dans le Projet Facets de ton projet.
    c´est sans doute encore a java 1.5

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    click droit sur ton projet -> properties --> projet facets -> voir quelle est la version de java qui est la bas.
    mais cela ne devrait gener en rien l´execution de ton projet.

    Eric

  15. #15
    Membre actif Avatar de Elwe31
    Profil pro
    Inscrit en
    Octobre 2004
    Messages
    487
    Détails du profil
    Informations personnelles :
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations forums :
    Inscription : Octobre 2004
    Messages : 487
    Points : 220
    Points
    220
    Par défaut
    Salut,

    c'est en 1.8...

    des que j'attache un projet avec Maven, a mon serveur Tomcat8.5, j'ai
    GRAVE: A child container failed during start
    java.util.concurrent.ExecutionException: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext
    Question, ou puis-je trouver un bon tuto(s)/cours sur l'environnement eclipse/Maven/tomcat/hibernate et a peu prés a jour ?

    Merci pour votre aide
    - La communication consiste a comprendre celui qui ecoute !
    - Qui veut faire quelquechose trouve un moyen, qui ne veut rien faire trouve une excuse

  16. #16
    Membre actif Avatar de Elwe31
    Profil pro
    Inscrit en
    Octobre 2004
    Messages
    487
    Détails du profil
    Informations personnelles :
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations forums :
    Inscription : Octobre 2004
    Messages : 487
    Points : 220
    Points
    220
    Par défaut
    Bon, c'est pas maven,
    j'ai ce message pour chaque projet "Dynamic web project" que j'ajoute au serveur Tomcat.
    - La communication consiste a comprendre celui qui ecoute !
    - Qui veut faire quelquechose trouve un moyen, qui ne veut rien faire trouve une excuse

  17. #17
    Membre chevronné Avatar de jeffray03
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Juillet 2008
    Messages
    1 501
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Allemagne

    Informations professionnelles :
    Activité : Développeur informatique

    Informations forums :
    Inscription : Juillet 2008
    Messages : 1 501
    Points : 2 120
    Points
    2 120
    Par défaut
    Salut,
    essaies ceci:

    - retire ton Serveur Tomcat d´eclipse si c´est possible
    - retire tout les projets presents dans tomcat et mets le encore dedans
    - ajoute ton serveur a eclipse
    - fait un clean et refresh du projet
    - et demarres tomcat en mode debug

    eric

  18. #18
    Membre actif Avatar de Elwe31
    Profil pro
    Inscrit en
    Octobre 2004
    Messages
    487
    Détails du profil
    Informations personnelles :
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations forums :
    Inscription : Octobre 2004
    Messages : 487
    Points : 220
    Points
    220
    Par défaut
    Salut,

    merci pour ton message
    mais pareil.

    avr. 02, 2019 9:30:16 PM org.apache.tomcat.util.digester.SetPropertiesRule begin
    AVERTISSEMENT: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:testFace' did not find a matching property.
    avr. 02, 2019 9:30:16 PM org.apache.catalina.startup.VersionLoggerListener log
    INFOS: Server version: Apache Tomcat/8.5.28
    avr. 02, 2019 9:30:16 PM org.apache.catalina.startup.VersionLoggerListener log
    INFOS: Server built: Feb 6 2018 23:10:25 UTC
    avr. 02, 2019 9:30:16 PM org.apache.catalina.startup.VersionLoggerListener log
    INFOS: Server number: 8.5.28.0
    avr. 02, 2019 9:30:16 PM org.apache.catalina.startup.VersionLoggerListener log
    INFOS: OS Name: Windows 10
    avr. 02, 2019 9:30:16 PM org.apache.catalina.startup.VersionLoggerListener log
    INFOS: OS Version: 10.0
    avr. 02, 2019 9:30:16 PM org.apache.catalina.startup.VersionLoggerListener log
    INFOS: Architecture: amd64
    avr. 02, 2019 9:30:16 PM org.apache.catalina.startup.VersionLoggerListener log
    INFOS: Java Home: C:\Program Files\Java\jdk1.8.0_202\jre
    avr. 02, 2019 9:30:16 PM org.apache.catalina.startup.VersionLoggerListener log
    INFOS: JVM Version: 1.8.0_202-b08
    avr. 02, 2019 9:30:16 PM org.apache.catalina.startup.VersionLoggerListener log
    INFOS: JVM Vendor: Oracle Corporation
    avr. 02, 2019 9:30:16 PM org.apache.catalina.startup.VersionLoggerListener log
    INFOS: CATALINA_BASE: C:\Users\gitelr.CUTTING-EDGE\eclipse-workspace2\.metadata\.plugins\org.eclipse.wst.server.core\tmp0
    avr. 02, 2019 9:30:16 PM org.apache.catalina.startup.VersionLoggerListener log
    INFOS: CATALINA_HOME: C:\Program Files\Apache Software Foundation\Tomcat 8.5
    avr. 02, 2019 9:30:16 PM org.apache.catalina.startup.VersionLoggerListener log
    INFOS: Command line argument: -agentlib:jdwp=transport=dt_socket,suspend=y,address=localhost:53777
    avr. 02, 2019 9:30:16 PM org.apache.catalina.startup.VersionLoggerListener log
    INFOS: Command line argument: -javaagent:C:\eclipse\jee-2019-03\eclipse\configuration\org.eclipse.osgi\409\0\.cp\lib\javaagent-shaded.jar
    avr. 02, 2019 9:30:16 PM org.apache.catalina.startup.VersionLoggerListener log
    INFOS: Command line argument: -Dcatalina.base=C:\Users\gitelr.CUTTING-EDGE\eclipse-workspace2\.metadata\.plugins\org.eclipse.wst.server.core\tmp0
    avr. 02, 2019 9:30:16 PM org.apache.catalina.startup.VersionLoggerListener log
    INFOS: Command line argument: -Dcatalina.home=C:\Program Files\Apache Software Foundation\Tomcat 8.5
    avr. 02, 2019 9:30:16 PM org.apache.catalina.startup.VersionLoggerListener log
    INFOS: Command line argument: -Dwtp.deploy=C:\Users\gitelr.CUTTING-EDGE\eclipse-workspace2\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps
    avr. 02, 2019 9:30:16 PM org.apache.catalina.startup.VersionLoggerListener log
    INFOS: Command line argument: -Djava.endorsed.dirs=C:\Program Files\Apache Software Foundation\Tomcat 8.5\endorsed
    avr. 02, 2019 9:30:16 PM org.apache.catalina.startup.VersionLoggerListener log
    INFOS: Command line argument: -Dfile.encoding=Cp1252
    avr. 02, 2019 9:30:16 PM org.apache.catalina.core.AprLifecycleListener lifecycleEvent
    INFOS: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: [C:\Program Files\Java\jdk1.8.0_202\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Program Files\Java\jdk1.8.0_202\jre\bin;C:/Program Files/Java/jdk1.8.0_202/bin/../jre/bin/server;C:/Program Files/Java/jdk1.8.0_202/bin/../jre/bin;C:/Program Files/Java/jdk1.8.0_202/bin/../jre/lib/amd64;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\PuTTY\;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET Web Pages\v1.0\;C:\Program Files (x86)\Windows Kits\8.0\Windows Performance Toolkit\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Programs\apache-maven-3.6.0\bin;C:\Users\gitelr.CUTTING-EDGE\AppData\Local\Microsoft\WindowsApps;;C:\eclipse\jee-2019-03\eclipse;;.]
    avr. 02, 2019 9:30:17 PM org.apache.coyote.AbstractProtocol init
    INFOS: Initializing ProtocolHandler ["http-nio-8080"]
    avr. 02, 2019 9:30:17 PM org.apache.tomcat.util.net.NioSelectorPool getSharedSelector
    INFOS: Using a shared selector for servlet write/read
    avr. 02, 2019 9:30:17 PM org.apache.coyote.AbstractProtocol init
    INFOS: Initializing ProtocolHandler ["ajp-nio-8009"]
    avr. 02, 2019 9:30:17 PM org.apache.tomcat.util.net.NioSelectorPool getSharedSelector
    INFOS: Using a shared selector for servlet write/read
    avr. 02, 2019 9:30:17 PM org.apache.catalina.startup.Catalina load
    INFOS: Initialization processed in 989 ms
    avr. 02, 2019 9:30:17 PM org.apache.catalina.core.StandardService startInternal
    INFOS: Démarrage du service [Catalina]
    avr. 02, 2019 9:30:17 PM org.apache.catalina.core.StandardEngine startInternal
    INFOS: Starting Servlet Engine: Apache Tomcat/8.5.28
    avr. 02, 2019 9:30:18 PM org.apache.jasper.servlet.TldScanner scanJars
    INFOS: At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found in them. Skipping unneeded JARs during scanning can improve startup time and JSP compilation time.
    avr. 02, 2019 9:30:20 PM org.apache.catalina.core.ContainerBase startInternal
    GRAVE: A child container failed during start
    java.util.concurrent.ExecutionException: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext[/testFace]]
    at java.util.concurrent.FutureTask.report(FutureTask.java:122)
    at java.util.concurrent.FutureTask.get(FutureTask.java:192)
    at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:939)
    at org.apache.catalina.core.StandardHost.startInternal(StandardHost.java:872)
    at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
    at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1419)
    at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1409)
    at java.util.concurrent.FutureTask.run(FutureTask.java:266)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    at java.lang.Thread.run(Thread.java:748)
    Caused by: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext[/testFace]]
    at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:167)
    ... 6 more
    Caused by: java.lang.NoClassDefFoundError: org/hibernate/service/ServiceRegistry
    at java.lang.Class.getDeclaredFields0(Native Method)
    at java.lang.Class.privateGetDeclaredFields(Class.java:2583)
    at java.lang.Class.getDeclaredFields(Class.java:1916)
    at org.apache.catalina.util.Introspection.getDeclaredFields(Introspection.java:110)
    at org.apache.catalina.startup.WebAnnotationSet.loadFieldsAnnotation(WebAnnotationSet.java:267)
    at org.apache.catalina.startup.WebAnnotationSet.loadApplicationListenerAnnotations(WebAnnotationSet.java:87)
    at org.apache.catalina.startup.WebAnnotationSet.loadApplicationAnnotations(WebAnnotationSet.java:65)
    at org.apache.catalina.startup.ContextConfig.applicationAnnotationsConfig(ContextConfig.java:328)
    at org.apache.catalina.startup.ContextConfig.configureStart(ContextConfig.java:777)
    at org.apache.catalina.startup.ContextConfig.lifecycleEvent(ContextConfig.java:299)
    at org.apache.catalina.util.LifecycleBase.fireLifecycleEvent(LifecycleBase.java:94)
    at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5113)
    at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
    ... 6 more
    Caused by: java.lang.ClassNotFoundException: org.hibernate.service.ServiceRegistry
    at org.apache.catalina.loader.WebappClassLoaderBase.loadClass(WebappClassLoaderBase.java:1291)
    at org.apache.catalina.loader.WebappClassLoaderBase.loadClass(WebappClassLoaderBase.java:1119)
    ... 19 more

    avr. 02, 2019 9:30:20 PM org.apache.catalina.core.ContainerBase startInternal
    GRAVE: A child container failed during start
    java.util.concurrent.ExecutionException: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost]]
    at java.util.concurrent.FutureTask.report(FutureTask.java:122)
    at java.util.concurrent.FutureTask.get(FutureTask.java:192)
    at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:939)
    at org.apache.catalina.core.StandardEngine.startInternal(StandardEngine.java:262)
    at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
    at org.apache.catalina.core.StandardService.startInternal(StandardService.java:422)
    at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
    at org.apache.catalina.core.StandardServer.startInternal(StandardServer.java:793)
    at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
    at org.apache.catalina.startup.Catalina.start(Catalina.java:681)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:353)
    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:493)
    Caused by: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost]]
    at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:167)
    at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1419)
    at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1409)
    at java.util.concurrent.FutureTask.run(FutureTask.java:266)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    at java.lang.Thread.run(Thread.java:748)
    Caused by: org.apache.catalina.LifecycleException: A child container failed during start
    at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:948)
    at org.apache.catalina.core.StandardHost.startInternal(StandardHost.java:872)
    at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
    ... 6 more

    avr. 02, 2019 9:30:20 PM org.apache.catalina.startup.Catalina start
    GRAVE: The required Server component failed to start so Tomcat is unable to start.
    org.apache.catalina.LifecycleException: Failed to start component [StandardServer[8005]]
    at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:167)
    at org.apache.catalina.startup.Catalina.start(Catalina.java:681)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:353)
    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:493)
    Caused by: org.apache.catalina.LifecycleException: Failed to start component [StandardService[Catalina]]
    at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:167)
    at org.apache.catalina.core.StandardServer.startInternal(StandardServer.java:793)
    at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
    ... 7 more
    Caused by: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina]]
    at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:167)
    at org.apache.catalina.core.StandardService.startInternal(StandardService.java:422)
    at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
    ... 9 more
    Caused by: org.apache.catalina.LifecycleException: A child container failed during start
    at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:948)
    at org.apache.catalina.core.StandardEngine.startInternal(StandardEngine.java:262)
    at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
    ... 11 more

    avr. 02, 2019 9:30:20 PM org.apache.coyote.AbstractProtocol pause
    INFOS: Pausing ProtocolHandler ["http-nio-8080"]
    avr. 02, 2019 9:30:20 PM org.apache.coyote.AbstractProtocol pause
    INFOS: Pausing ProtocolHandler ["ajp-nio-8009"]
    avr. 02, 2019 9:30:20 PM org.apache.catalina.core.StandardService stopInternal
    INFOS: Arrêt du service [Catalina]
    avr. 02, 2019 9:30:20 PM org.apache.coyote.AbstractProtocol destroy
    INFOS: Destroying ProtocolHandler ["http-nio-8080"]
    avr. 02, 2019 9:30:20 PM org.apache.coyote.AbstractProtocol destroy
    INFOS: Destroying ProtocolHandler ["ajp-nio-8009"]
    avr. 02, 2019 9:30:20 PM org.apache.catalina.deploy.NamingResourcesImpl cleanUp
    AVERTISSEMENT: Failed to retrieve JNDI naming context for container [StandardEngine[Catalina].StandardHost[localhost].StandardContext[/testFace]] so no cleanup was performed for that container
    javax.naming.NamingException: Aucun Contexte de nommage lié à ce chargeur de classes
    at org.apache.naming.ContextBindings.getClassLoader(ContextBindings.java:268)
    at org.apache.catalina.deploy.NamingResourcesImpl.cleanUp(NamingResourcesImpl.java:993)
    at org.apache.catalina.deploy.NamingResourcesImpl.stopInternal(NamingResourcesImpl.java:976)
    at org.apache.catalina.util.LifecycleBase.stop(LifecycleBase.java:226)
    at org.apache.catalina.core.StandardContext.stopInternal(StandardContext.java:5451)
    at org.apache.catalina.util.LifecycleBase.stop(LifecycleBase.java:226)
    at org.apache.catalina.util.LifecycleBase.destroy(LifecycleBase.java:264)
    at org.apache.catalina.core.ContainerBase.removeChild(ContainerBase.java:854)
    at org.apache.catalina.core.ContainerBase.destroyInternal(ContainerBase.java:1036)
    at org.apache.catalina.util.LifecycleBase.destroy(LifecycleBase.java:297)
    at org.apache.catalina.core.ContainerBase.removeChild(ContainerBase.java:854)
    at org.apache.catalina.core.ContainerBase.destroyInternal(ContainerBase.java:1036)
    at org.apache.catalina.util.LifecycleBase.destroy(LifecycleBase.java:297)
    at org.apache.catalina.core.StandardService.destroyInternal(StandardService.java:585)
    at org.apache.catalina.util.LifecycleBase.destroy(LifecycleBase.java:297)
    at org.apache.catalina.core.StandardServer.destroyInternal(StandardServer.java:883)
    at org.apache.catalina.util.LifecycleBase.destroy(LifecycleBase.java:297)
    at org.apache.catalina.startup.Catalina.start(Catalina.java:685)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:353)
    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:493)
    - La communication consiste a comprendre celui qui ecoute !
    - Qui veut faire quelquechose trouve un moyen, qui ne veut rien faire trouve une excuse

  19. #19
    Membre actif Avatar de Elwe31
    Profil pro
    Inscrit en
    Octobre 2004
    Messages
    487
    Détails du profil
    Informations personnelles :
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations forums :
    Inscription : Octobre 2004
    Messages : 487
    Points : 220
    Points
    220
    Par défaut
    Apres plusieurs essais,
    ce qui a l'air de fonctionner c'est de mettre les jar dans le dossier lib du serveur Tomcat.

    c'est par terrible !
    - La communication consiste a comprendre celui qui ecoute !
    - Qui veut faire quelquechose trouve un moyen, qui ne veut rien faire trouve une excuse

Discussions similaires

  1. Installation d'Hibernate dans Eclipse
    Par Ecureuil dans le forum Hibernate
    Réponses: 8
    Dernier message: 23/09/2011, 13h46
  2. déploiement projet eclipse dans webapps tomcat
    Par rc_29 dans le forum Eclipse Java
    Réponses: 3
    Dernier message: 23/03/2007, 09h44
  3. Réponses: 10
    Dernier message: 12/12/2006, 02h44
  4. Réponses: 2
    Dernier message: 26/09/2005, 09h29
  5. Lecture d'un fichier texte dans un projet TOMCAT
    Par brice_nice dans le forum Tomcat et TomEE
    Réponses: 2
    Dernier message: 03/07/2005, 16h04

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