Console Output

Skipping 816 KB.. Full Log
[INFO] Recompiling the module because of changed dependency.
[INFO] Compiling 3 source files with javac [forked debug deprecation release 11] to target/test-classes
[WARNING]   on the class path. A future release of javac may disable annotation processing
  unless at least one processor is specified by name (-processor), or a search
  path is specified (--processor-path, --processor-module-path), or annotation
  processing is enabled explicitly (-proc:only, -proc:full).
  Use -Xlint:-options to suppress this message.
  Use -proc:none to disable annotation processing.
/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample/src/test/java/it/tidalwave/thesefoolishthings/examples/jpafinderexample/impl/JpaFinderTest.java:[45,12] [rawtypes] found raw type: JpaFinder
  missing type arguments for generic class JpaFinder<T,E>
  where T,E are type-variables:
    T extends Object declared in class JpaFinder
    E extends Object declared in class JpaFinder
[WARNING] /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample/src/test/java/it/tidalwave/thesefoolishthings/examples/jpafinderexample/impl/JpaMockHelper.java:[49,18] [rawtypes] found raw type: TypedQuery
  missing type arguments for generic class TypedQuery<X>
  where X is a type-variable:
    X extends Object declared in interface TypedQuery
[INFO] 
[INFO] --- surefire:3.5.2:test (default-test) @ it-tidalwave-thesefoolishthings-examples-finderexample3 ---
[INFO] Using auto detected provider org.apache.maven.surefire.testng.TestNGProvider
[INFO] 
[INFO] -------------------------------------------------------
[INFO]  T E S T S
[INFO] -------------------------------------------------------
[INFO] Running TestSuite
21:50:33.008 [main                ] INFO  i.t.t.examples.jpafinderexample.MainTest           - STARTING TESTS OF it.tidalwave.thesefoolishthings.examples.jpafinderexample.MainTest
21:50:33.120 [main                ] INFO  i.t.t.examples.jpafinderexample.MainTest           - *********************
21:50:33.121 [main                ] INFO  i.t.t.examples.jpafinderexample.MainTest           - TEST "must not crash"
21:50:33.121 [main                ] INFO  i.t.t.examples.jpafinderexample.MainTest           - *********************
21:50:33.221 [main                ] DEBUG org.jboss.logging                                  - Logging Provider: org.jboss.logging.Slf4jLoggerProvider
21:50:33.466 [main                ] INFO  org.hibernate.jpa.internal.util.LogHelper          - HHH000204: Processing PersistenceUnitInfo [name: example]
21:50:33.584 [main                ] INFO  org.hibernate.Version                              - HHH000412: Hibernate ORM core version 5.6.15.Final
21:50:34.011 [main                ] INFO  org.hibernate.annotations.common.Version           - HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
21:50:34.420 [main                ] WARN  org.hibernate.orm.connections.pooling              - HHH10001002: Using Hibernate built-in connection pool (not for production use!)
21:50:34.429 [main                ] INFO  org.hibernate.orm.connections.pooling              - HHH10001005: using driver [org.h2.Driver] at URL [jdbc:h2:mem:memdb]
21:50:34.431 [main                ] INFO  org.hibernate.orm.connections.pooling              - HHH10001001: Connection properties: {password=****, user=}
21:50:34.433 [main                ] INFO  org.hibernate.orm.connections.pooling              - HHH10001003: Autocommit mode: false
21:50:34.442 [main                ] INFO  o.h.e.j.c.i.DriverManagerConnectionProviderImpl    - HHH000115: Hibernate connection pool size: 20 (min=1)
21:50:35.015 [main                ] INFO  org.hibernate.dialect.Dialect                      - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
21:50:36.658 [main                ] INFO  org.hibernate.orm.connections.access               - HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@623cd12e] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode.
21:50:36.682 [main                ] INFO  org.hibernate.orm.connections.access               - HHH10001501: Connection obtained from JdbcConnectionAccess [org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess@3b75b7b4] for (non-JTA) DDL execution was not in auto-commit mode; the Connection 'local transaction' will be committed and the Connection will be set into auto-commit mode.
21:50:36.741 [main                ] INFO  o.h.e.t.jta.platform.internal.JtaPlatformInitiator - HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
21:50:37.116 [main                ] INFO  i.t.t.examples.jpafinderexample.impl.JpaFinder     - >>>> SELECT p FROM PersonEntity p
21:50:37.406 [main                ] INFO  i.t.t.examples.jpafinderexample.Main               - ******** All: [Michelangelo Buonarroti, Lorenzo Bernini, Leonardo da Vinci, Pietro Perugino, Paolo Uccello, Andrea Mantegna, Ambrogio Lorenzetti, Piero della Francesca, Giotto da Bondone]
21:50:37.408 [main                ] INFO  i.t.t.examples.jpafinderexample.impl.JpaFinder     - >>>> SELECT COUNT(p) FROM PersonEntity p
21:50:37.418 [main                ] INFO  i.t.t.examples.jpafinderexample.Main               - ******** Count: 9
21:50:37.419 [main                ] INFO  i.t.t.examples.jpafinderexample.impl.JpaFinder     - >>>> SELECT p FROM PersonEntity p
21:50:37.423 [main                ] INFO  i.t.t.examples.jpafinderexample.Main               - ******** Two persons from the 3rd position: [Pietro Perugino, Paolo Uccello]
21:50:37.431 [main                ] INFO  i.t.t.examples.jpafinderexample.impl.JpaFinder     - >>>> SELECT p FROM PersonEntity p ORDER BY p.firstName
21:50:37.448 [main                ] INFO  i.t.t.examples.jpafinderexample.Main               - ******** All, sorted by first name: [Ambrogio Lorenzetti, Andrea Mantegna, Giotto da Bondone, Leonardo da Vinci, Lorenzo Bernini, Michelangelo Buonarroti, Paolo Uccello, Piero della Francesca, Pietro Perugino]
21:50:37.449 [main                ] INFO  i.t.t.examples.jpafinderexample.impl.JpaFinder     - >>>> SELECT p FROM PersonEntity p ORDER BY p.lastName DESC
21:50:37.461 [main                ] INFO  i.t.t.examples.jpafinderexample.Main               - ******** All, sorted by last name, descending: [Piero della Francesca, Leonardo da Vinci, Giotto da Bondone, Paolo Uccello, Pietro Perugino, Andrea Mantegna, Ambrogio Lorenzetti, Michelangelo Buonarroti, Lorenzo Bernini]
21:50:37.470 [main                ] INFO  it.tidalwave.role.impl.ServiceLoaderLocator        - OwnerRoleFactoryProvider instantiated from META-INF/services: it.tidalwave.role.impl.DefaultOwnerRoleFactoryProvider@54398386
21:50:37.476 [main                ] INFO  it.tidalwave.role.impl.ServiceLoaderLocator        - ContextManagerProvider instantiated from META-INF/services: it.tidalwave.role.impl.DefaultContextManagerProvider@603520f3
21:50:37.482 [main                ] TRACE it.tidalwave.role.impl.ContextSnapshot             - >>>> contexts for i.t.t.e.p.Person@d476a21/07b6b45f-eb0b-4328-a966-6f1bdd09c46a at construction time: []
21:50:37.483 [main                ] TRACE it.tidalwave.role.impl.DefaultOwnerRoleFactory     - as(i.t.t.e.j.r.Findable) for i.t.t.e.p.Person@d476a21/07b6b45f-eb0b-4328-a966-6f1bdd09c46a
21:50:37.483 [main                ] TRACE it.tidalwave.role.impl.DefaultOwnerRoleFactory     - >>>> contexts: ContextSnapshot[]
21:50:37.486 [main                ] TRACE it.tidalwave.role.impl.DefaultContextManager       - runWithContexts(i.t.u.ContextManager$$Lambda/0x00007bd9d44d7c18@69ef3847, [])
21:50:37.487 [main                ] TRACE it.tidalwave.role.impl.DefaultContextManager       - >>>> contexts now: [] - it.tidalwave.role.impl.DefaultContextManager@5a30ab46
21:50:37.495 [main                ] INFO  it.tidalwave.role.impl.ServiceLoaderLocator        - Too many instances of SystemRoleFactoryProvider, ignoring default providers ...
21:50:37.498 [main                ] INFO  it.tidalwave.role.impl.ServiceLoaderLocator        - SystemRoleFactoryProvider instantiated from META-INF/services: it.tidalwave.thesefoolishthings.examples.jpafinderexample.HardwiredSystemRoleFactoryProvider@7bbab132
21:50:37.503 [main                ] DEBUG it.tidalwave.role.spi.SystemRoleFactorySupport     - scan([i.t.t.e.j.i.PersonJpaPersistable])
21:50:37.508 [main                ] DEBUG it.tidalwave.role.spi.SystemRoleFactorySupport     - Configured roles:
21:50:37.510 [main                ] DEBUG it.tidalwave.role.spi.SystemRoleFactorySupport     - >>>> i.t.t.e.p.Person: i.t.r.Removable -> [i.t.t.e.j.i.PersonJpaPersistable]
21:50:37.510 [main                ] DEBUG it.tidalwave.role.spi.SystemRoleFactorySupport     - >>>> i.t.t.e.p.Person: i.t.r.i.Persistable -> [i.t.t.e.j.i.PersonJpaPersistable]
21:50:37.511 [main                ] DEBUG it.tidalwave.role.spi.SystemRoleFactorySupport     - >>>> i.t.t.e.p.Person: i.t.t.e.j.r.Findable -> [i.t.t.e.j.i.PersonJpaPersistable]
21:50:37.511 [main                ] TRACE it.tidalwave.role.spi.SystemRoleFactorySupport     - findRoles(i.t.t.e.p.Person@d476a21/07b6b45f-eb0b-4328-a966-6f1bdd09c46a, i.t.t.e.j.r.Findable)
21:50:37.512 [main                ] TRACE it.tidalwave.role.spi.SystemRoleFactorySupport     - >>>> trying constructor public it.tidalwave.thesefoolishthings.examples.jpafinderexample.impl.PersonJpaPersistable(it.tidalwave.thesefoolishthings.examples.person.Person)
21:50:37.512 [main                ] TRACE it.tidalwave.role.spi.SystemRoleFactorySupport     - >>>> constructor parameters: [ ]
21:50:37.514 [main                ] TRACE it.tidalwave.role.spi.SystemRoleFactorySupport     - >>>> findRoles() returning: [i.t.t.e.j.i.PersonJpaPersistable@2d34a88a]
21:50:37.515 [main                ] TRACE it.tidalwave.role.impl.DefaultContextManager       - >>>> runWithContexts(i.t.u.ContextManager$$Lambda/0x00007bd9d44d7c18@69ef3847, []) completed
21:50:37.515 [main                ] TRACE it.tidalwave.role.impl.DefaultOwnerRoleFactory     - >>>> as() returning [i.t.t.e.j.i.PersonJpaPersistable@2d34a88a]
21:50:37.517 [main                ] INFO  i.t.t.examples.jpafinderexample.impl.JpaFinder     - >>>> SELECT p FROM PersonEntity p ORDER BY p.lastName DESC
21:50:37.521 [main                ] INFO  i.t.t.examples.jpafinderexample.Main               - ******** Three persons from the 2nd position, with Person.as(): [Giotto da Bondone, Paolo Uccello, Pietro Perugino]
21:50:37.523 [main                ] INFO  org.hibernate.orm.connections.pooling              - HHH10001008: Cleaning up connection pool [jdbc:h2:mem:memdb]
21:50:37.529 [main                ] INFO  i.t.t.examples.jpafinderexample.MainTest           - TEST PASSED in 4409 msec
21:50:37.530 [main                ] INFO  i.t.t.examples.jpafinderexample.MainTest           - 
OpenJDK 64-Bit Server VM warning: Sharing is only supported for boot loader classes because bootstrap classpath has been appended
WARNING: A Java agent has been loaded dynamically (/var/jenkins_home/maven-repositories/2/net/bytebuddy/byte-buddy-agent/1.12.23/byte-buddy-agent-1.12.23.jar)
WARNING: If a serviceability tool is in use, please run with -XX:+EnableDynamicAgentLoading to hide this warning
WARNING: If a serviceability tool is not in use, please run with -Djdk.instrument.traceUsage for more information
WARNING: Dynamic loading of agents will be disallowed by default in a future release
21:50:39.163 [main                ] INFO  i.t.t.examples.jpafinderexample.impl.JpaFinderTest - ********************************************
21:50:39.164 [main                ] INFO  i.t.t.examples.jpafinderexample.impl.JpaFinderTest - TEST "testQueryWithAscendingSortAndFirstMax"
21:50:39.165 [main                ] INFO  i.t.t.examples.jpafinderexample.impl.JpaFinderTest - ********************************************
21:50:39.166 [main                ] INFO  i.t.t.examples.jpafinderexample.impl.JpaFinder     - >>>> SELECT p FROM PersonEntity p ORDER BY p.firstName
21:50:39.216 [main                ] INFO  i.t.t.examples.jpafinderexample.impl.JpaFinderTest - TEST PASSED in 52 msec
21:50:39.216 [main                ] INFO  i.t.t.examples.jpafinderexample.impl.JpaFinderTest - 
21:50:39.225 [main                ] INFO  i.t.t.examples.jpafinderexample.impl.JpaFinderTest - *************************
21:50:39.226 [main                ] INFO  i.t.t.examples.jpafinderexample.impl.JpaFinderTest - TEST "testQueryWithCount"
21:50:39.226 [main                ] INFO  i.t.t.examples.jpafinderexample.impl.JpaFinderTest - *************************
21:50:39.227 [main                ] INFO  i.t.t.examples.jpafinderexample.impl.JpaFinder     - >>>> SELECT COUNT(p) FROM PersonEntity p
21:50:39.233 [main                ] INFO  i.t.t.examples.jpafinderexample.impl.JpaFinderTest - TEST PASSED in 6 msec
21:50:39.233 [main                ] INFO  i.t.t.examples.jpafinderexample.impl.JpaFinderTest - 
21:50:39.241 [main                ] INFO  i.t.t.examples.jpafinderexample.impl.JpaFinderTest - *********************************************
21:50:39.242 [main                ] INFO  i.t.t.examples.jpafinderexample.impl.JpaFinderTest - TEST "testQueryWithDescendingSortAndFirstMax"
21:50:39.242 [main                ] INFO  i.t.t.examples.jpafinderexample.impl.JpaFinderTest - *********************************************
21:50:39.243 [main                ] INFO  i.t.t.examples.jpafinderexample.impl.JpaFinder     - >>>> SELECT p FROM PersonEntity p ORDER BY p.lastName DESC
21:50:39.246 [main                ] INFO  i.t.t.examples.jpafinderexample.impl.JpaFinderTest - TEST PASSED in 5 msec
21:50:39.247 [main                ] INFO  i.t.t.examples.jpafinderexample.impl.JpaFinderTest - 
21:50:39.254 [main                ] INFO  i.t.t.examples.jpafinderexample.impl.JpaFinderTest - ******************************
21:50:39.255 [main                ] INFO  i.t.t.examples.jpafinderexample.impl.JpaFinderTest - TEST "testQueryWithDoubleSort"
21:50:39.255 [main                ] INFO  i.t.t.examples.jpafinderexample.impl.JpaFinderTest - ******************************
21:50:39.257 [main                ] INFO  i.t.t.examples.jpafinderexample.impl.JpaFinder     - >>>> SELECT p FROM PersonEntity p ORDER BY p.lastName DESC, p.firstName
21:50:39.260 [main                ] INFO  i.t.t.examples.jpafinderexample.impl.JpaFinderTest - TEST PASSED in 5 msec
21:50:39.261 [main                ] INFO  i.t.t.examples.jpafinderexample.impl.JpaFinderTest - 
21:50:39.266 [main                ] INFO  i.t.t.examples.jpafinderexample.impl.JpaFinderTest - **********************
21:50:39.267 [main                ] INFO  i.t.t.examples.jpafinderexample.impl.JpaFinderTest - TEST "testSimpleQuery"
21:50:39.267 [main                ] INFO  i.t.t.examples.jpafinderexample.impl.JpaFinderTest - **********************
21:50:39.269 [main                ] INFO  i.t.t.examples.jpafinderexample.impl.JpaFinder     - >>>> SELECT p FROM PersonEntity p
21:50:39.272 [main                ] INFO  i.t.t.examples.jpafinderexample.impl.JpaFinderTest - TEST PASSED in 5 msec
21:50:39.273 [main                ] INFO  i.t.t.examples.jpafinderexample.impl.JpaFinderTest - 
21:50:39.274 [main                ] INFO  i.t.t.examples.jpafinderexample.MainTest           - FINISHED TESTS OF it.tidalwave.thesefoolishthings.examples.jpafinderexample.MainTest
[INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 7.940 s -- in TestSuite
[INFO] 
[INFO] Results:
[INFO] 
[INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0
[INFO] 
[JENKINS] Recording test results
[INFO] 
[INFO] --- jacoco:0.8.12:report (report) @ it-tidalwave-thesefoolishthings-examples-finderexample3 ---
[INFO] Loading execution data file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample/target/jacoco.exec
[INFO] Analyzed bundle 'TheseFoolishThings :: Examples :: Finder :: JPA Finder' with 14 classes
[INFO] 
[INFO] --- jar:3.4.2:jar (default-jar) @ it-tidalwave-thesefoolishthings-examples-finderexample3 ---
[INFO] Building jar: /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample/target/it-tidalwave-thesefoolishthings-examples-finderexample3-3.2-ALPHA-25-SNAPSHOT.d4d6ee276ae7.jar
[INFO] 
[INFO] --- jar:3.4.2:test-jar (default-test-jar) @ it-tidalwave-thesefoolishthings-examples-finderexample3 ---
[INFO] Building jar: /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample/target/it-tidalwave-thesefoolishthings-examples-finderexample3-3.2-ALPHA-25-SNAPSHOT.d4d6ee276ae7-tests.jar
[INFO] 
[INFO] --- install:3.1.3:install (default-install) @ it-tidalwave-thesefoolishthings-examples-finderexample3 ---
[INFO] Installing /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample/pom.xml to /var/jenkins_home/maven-repositories/2/it/tidalwave/thesefoolishthings/it-tidalwave-thesefoolishthings-examples-finderexample3/3.2-ALPHA-25-SNAPSHOT/it-tidalwave-thesefoolishthings-examples-finderexample3-3.2-ALPHA-25-SNAPSHOT.pom
[INFO] Installing /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample/target/it-tidalwave-thesefoolishthings-examples-finderexample3-3.2-ALPHA-25-SNAPSHOT.d4d6ee276ae7.jar to /var/jenkins_home/maven-repositories/2/it/tidalwave/thesefoolishthings/it-tidalwave-thesefoolishthings-examples-finderexample3/3.2-ALPHA-25-SNAPSHOT/it-tidalwave-thesefoolishthings-examples-finderexample3-3.2-ALPHA-25-SNAPSHOT.jar
[INFO] Installing /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample/target/it-tidalwave-thesefoolishthings-examples-finderexample3-3.2-ALPHA-25-SNAPSHOT.d4d6ee276ae7-tests.jar to /var/jenkins_home/maven-repositories/2/it/tidalwave/thesefoolishthings/it-tidalwave-thesefoolishthings-examples-finderexample3/3.2-ALPHA-25-SNAPSHOT/it-tidalwave-thesefoolishthings-examples-finderexample3-3.2-ALPHA-25-SNAPSHOT-tests.jar
[INFO] 
[INFO] >>> spotbugs:4.8.6.6:check (default-cli) > :spotbugs @ it-tidalwave-thesefoolishthings-examples-finderexample3 >>>
[INFO] 
[INFO] --- spotbugs:4.8.6.6:spotbugs (spotbugs) @ it-tidalwave-thesefoolishthings-examples-finderexample3 ---
[INFO] Fork Value is true
[INFO] Done SpotBugs Analysis....
[INFO] 
[INFO] <<< spotbugs:4.8.6.6:check (default-cli) < :spotbugs @ it-tidalwave-thesefoolishthings-examples-finderexample3 <<<
[INFO] 
[INFO] 
[INFO] --- spotbugs:4.8.6.6:check (default-cli) @ it-tidalwave-thesefoolishthings-examples-finderexample3 ---
[INFO] BugInstance size is 1
[INFO] Error size is 0
[INFO] Total bugs: 1
[ERROR] Medium: Exception thrown in class it.tidalwave.thesefoolishthings.examples.jpafinderexample.impl.JpaFinder at new it.tidalwave.thesefoolishthings.examples.jpafinderexample.impl.JpaFinder(Class, Function, TxManager) will leave the constructor. The object under construction remains partially initialized and may be vulnerable to Finalizer attacks. [it.tidalwave.thesefoolishthings.examples.jpafinderexample.impl.JpaFinder, it.tidalwave.thesefoolishthings.examples.jpafinderexample.impl.JpaFinder] At JpaFinder.java:[line 100]At JpaFinder.java:[line 100] CT_CONSTRUCTOR_THROW
[INFO] 


To see bug detail using the Spotbugs GUI, use the following command "mvn spotbugs:gui"



[INFO] 
[INFO] --- pmd:3.20.0:cpd (default-cli) @ it-tidalwave-thesefoolishthings-examples-finderexample3 ---
[WARNING]  Parameter 'aggregate' (user property 'aggregate') is deprecated: since 3.15.0 Use the goals <code>pmd:aggregate-pmd</code> and <code>pmd:aggregate-cpd</code>
instead.
[WARNING] Unable to locate Source XRef to link to - DISABLED
[WARNING] Unable to locate Source XRef to link to - DISABLED
[INFO] PMD version: 6.53.0
[INFO] Rendering content with org.apache.maven.skins:maven-default-skin:jar:1.3 skin.
[INFO] 
[INFO] --- pmd:3.20.0:pmd (default-cli) @ it-tidalwave-thesefoolishthings-examples-finderexample3 ---
[WARNING]  Parameter 'aggregate' (user property 'aggregate') is deprecated: since 3.15.0 Use the goals <code>pmd:aggregate-pmd</code> and <code>pmd:aggregate-cpd</code>
instead.
[WARNING] Unable to locate Source XRef to link to - DISABLED
[WARNING] Unable to locate Source XRef to link to - DISABLED
[INFO] PMD version: 6.53.0
[WARNING] Applying rule set filter: The rule "UnusedModifier" has been moved from ruleset "unusedcode" to "unnecessary". Please change your ruleset!
[WARNING] Applying rule set filter: The rule "UnusedModifier" has been renamed to "UnnecessaryModifier". Please change your ruleset!
[WARNING] The RuleSet rulesets/java/basic.xml has been deprecated and will be removed in PMD 7.0.0
[WARNING] The RuleSet rulesets/java/unusedcode.xml has been deprecated and will be removed in PMD 7.0.0
[WARNING] The RuleSet rulesets/java/imports.xml has been deprecated and will be removed in PMD 7.0.0
[WARNING] Applying rule set filter: The rule "UnusedModifier" has been moved from ruleset "unusedcode" to "unnecessary". Please change your ruleset!
[WARNING] Applying rule set filter: The rule "UnusedModifier" has been renamed to "UnnecessaryModifier". Please change your ruleset!
[WARNING] The RuleSet rulesets/java/basic.xml has been deprecated and will be removed in PMD 7.0.0
[WARNING] The RuleSet rulesets/java/unusedcode.xml has been deprecated and will be removed in PMD 7.0.0
[WARNING] The RuleSet rulesets/java/imports.xml has been deprecated and will be removed in PMD 7.0.0
[INFO] Rendering content with org.apache.maven.skins:maven-default-skin:jar:1.3 skin.
[INFO] 
[INFO] --- checkstyle:3.0.0:checkstyle (default-cli) @ it-tidalwave-thesefoolishthings-examples-finderexample3 ---
[INFO] There are 24 errors reported by Checkstyle 6.18 with it/tidalwave/checkstyle/checkstyle.xml ruleset.
[WARNING] Unable to locate Source XRef to link to - DISABLED
[INFO] 
[INFO] >>> dependency:3.8.1:analyze (default-cli) > test-compile @ it-tidalwave-thesefoolishthings-examples-finderexample3 >>>
[INFO] 
[INFO] --- buildnumber:3.2.1:create (default) @ it-tidalwave-thesefoolishthings-examples-finderexample3 ---
[INFO] ShortRevision tag detected. The value is '12'.
[INFO] Executing: /bin/sh -c cd '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample' && 'git' 'log' '-1' '--no-merges' '--format=format:%H %aI %aE %aN'
[INFO] Working directory: /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample
[INFO] Storing buildNumber: d4d6ee276ae7 at timestamp: 1734731449406
[INFO] Executing: /bin/sh -c cd '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample' && 'git' 'symbolic-ref' 'HEAD'
[INFO] Working directory: /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample
[WARNING] Cannot get the branch information from the git repository: 
Detecting the current branch failed: fatal: ref HEAD is not a symbolic ref

[INFO] ShortRevision tag detected. The value is '12'.
[INFO] Executing: /bin/sh -c cd '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample' && 'git' 'log' '-1' '--no-merges' '--format=format:%H %aI %aE %aN'
[INFO] Working directory: /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample
[INFO] Storing scmBranch: UNKNOWN
[INFO] 
[INFO] --- enforcer:3.5.0:enforce (enforce-maven) @ it-tidalwave-thesefoolishthings-examples-finderexample3 ---
[INFO] Rule 0: org.apache.maven.enforcer.rules.dependency.DependencyConvergence passed
[INFO] Rule 3: org.apache.maven.enforcer.rules.RequirePluginVersions passed
[INFO] 
[INFO] --- enforcer:3.5.0:enforce (enforce-banned-dependencies) @ it-tidalwave-thesefoolishthings-examples-finderexample3 ---
[INFO] Rule 0: org.apache.maven.enforcer.rules.dependency.BannedDependencies passed
[INFO] 
[INFO] --- antrun:3.1.0:run (generate-and-print-build-description) @ it-tidalwave-thesefoolishthings-examples-finderexample3 ---
[INFO] Executing tasks
[INFO]      [echo] DESCRIPTION: origin/feature/TFT-165 3.2-ALPHA-25-SNAPSHOT d4d6ee276ae7
[INFO]      [echo] Java Version: 21.0.5 -source 11 -target 11 -release 11
[INFO] Executed tasks
[INFO] 
[INFO] --- jacoco:0.8.12:prepare-agent (prepare-agent) @ it-tidalwave-thesefoolishthings-examples-finderexample3 ---
[INFO] tft.test.jacoco.argLine set to -javaagent:/var/jenkins_home/maven-repositories/2/org/jacoco/org.jacoco.agent/0.8.12/org.jacoco.agent-0.8.12-runtime.jar=destfile=/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample/target/jacoco.exec
[INFO] 
[INFO] --- resources:3.3.1:resources (default-resources) @ it-tidalwave-thesefoolishthings-examples-finderexample3 ---
[INFO] Copying 2 resources from src/main/resources to target/classes
[INFO] 
[INFO] --- compiler:3.13.0:compile (default-compile) @ it-tidalwave-thesefoolishthings-examples-finderexample3 ---
[INFO] Recompiling the module because of changed dependency.
[INFO] Compiling 11 source files with javac [forked debug deprecation release 11] to target/classes
[WARNING]   on the class path. A future release of javac may disable annotation processing
  unless at least one processor is specified by name (-processor), or a search
  path is specified (--processor-path, --processor-module-path), or annotation
  processing is enabled explicitly (-proc:only, -proc:full).
  Use -Xlint:-options to suppress this message.
  Use -proc:none to disable annotation processing.
/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample/src/main/java/it/tidalwave/thesefoolishthings/examples/jpafinderexample/impl/JpaFinder.java:[55,7] [serial] serializable class JpaFinder has no definition of serialVersionUID
[WARNING] /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample/src/main/java/it/tidalwave/thesefoolishthings/examples/jpafinderexample/impl/JpaFinder.java:[81,33] [serial] non-transient instance field of a serializable class declared with a non-serializable type
[WARNING] /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample/src/main/java/it/tidalwave/thesefoolishthings/examples/jpafinderexample/impl/JpaFinder.java:[84,28] [serial] non-transient instance field of a serializable class declared with a non-serializable type
[WARNING] /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample/src/main/java/it/tidalwave/thesefoolishthings/examples/jpafinderexample/impl/JpaFinder.java:[93,64] [serial] non-transient instance field of a serializable class declared with a non-serializable type
[WARNING] /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample/src/main/java/it/tidalwave/thesefoolishthings/examples/jpafinderexample/impl/PersonEntity.java:[46,7] [serial] serializable class PersonEntity has no definition of serialVersionUID
[WARNING] Overwriting artifact's file from /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample/target/it-tidalwave-thesefoolishthings-examples-finderexample3-3.2-ALPHA-25-SNAPSHOT.d4d6ee276ae7.jar to /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample/target/classes
[INFO] 
[INFO] --- resources:3.3.1:testResources (default-testResources) @ it-tidalwave-thesefoolishthings-examples-finderexample3 ---
[INFO] Copying 1 resource from src/test/resources to target/test-classes
[INFO] 
[INFO] --- compiler:3.13.0:testCompile (default-testCompile) @ it-tidalwave-thesefoolishthings-examples-finderexample3 ---
[INFO] Recompiling the module because of changed dependency.
[INFO] Compiling 3 source files with javac [forked debug deprecation release 11] to target/test-classes
[WARNING]   on the class path. A future release of javac may disable annotation processing
  unless at least one processor is specified by name (-processor), or a search
  path is specified (--processor-path, --processor-module-path), or annotation
  processing is enabled explicitly (-proc:only, -proc:full).
  Use -Xlint:-options to suppress this message.
  Use -proc:none to disable annotation processing.
/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample/src/test/java/it/tidalwave/thesefoolishthings/examples/jpafinderexample/impl/JpaFinderTest.java:[45,12] [rawtypes] found raw type: JpaFinder
  missing type arguments for generic class JpaFinder<T,E>
  where T,E are type-variables:
    T extends Object declared in class JpaFinder
    E extends Object declared in class JpaFinder
[WARNING] /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample/src/test/java/it/tidalwave/thesefoolishthings/examples/jpafinderexample/impl/JpaMockHelper.java:[49,18] [rawtypes] found raw type: TypedQuery
  missing type arguments for generic class TypedQuery<X>
  where X is a type-variable:
    X extends Object declared in interface TypedQuery
[WARNING] Failed to getClass for org.apache.maven.plugins.dependency.analyze.AnalyzeMojo
[INFO] 
[INFO] <<< dependency:3.8.1:analyze (default-cli) < test-compile @ it-tidalwave-thesefoolishthings-examples-finderexample3 <<<
[INFO] 
[INFO] 
[INFO] --- dependency:3.8.1:analyze (default-cli) @ it-tidalwave-thesefoolishthings-examples-finderexample3 ---
[WARNING] Used undeclared dependencies found:
[WARNING]    com.google.code.findbugs:jsr305:jar:3.0.2:compile
[WARNING]    javax.persistence:javax.persistence-api:jar:2.2:compile
[WARNING]    org.slf4j:slf4j-api:jar:2.0.16:compile
[WARNING] Unused declared dependencies found:
[WARNING]    com.h2database:h2:jar:2.3.232:compile
[WARNING]    org.hibernate:hibernate-core:jar:5.6.15.Final:compile
[WARNING]    org.hibernate:hibernate-entitymanager:jar:5.6.15.Final:compile
[WARNING]    ch.qos.logback:logback-classic:jar:1.5.12:runtime
[WARNING]    ch.qos.logback:logback-core:jar:1.5.12:runtime
[WARNING]    it.tidalwave.thesefoolishthings:it-tidalwave-util-test:jar:3.2-ALPHA-25-SNAPSHOT:compile
[WARNING]    javax.annotation:javax.annotation-api:jar:1.3.2:compile
[JENKINS] Archiving disabled
Started calculate disk usage of build
Finished Calculation of disk usage of build in 0 seconds
Started calculate disk usage of workspace
Finished Calculation of disk usage of workspace in 0 seconds
[INFO] 
[INFO] ---------< it.tidalwave.thesefoolishthings:project-archetype >----------
[INFO] Building TheseFoolishThings :: Project Archetype 3.2-ALPHA-25-SNAPSHOT [19/19]
[INFO]   from archetypes/project/pom.xml
[INFO] --------------------------[ maven-archetype ]---------------------------
[INFO] 
[INFO] --- clean:3.4.0:clean (default-clean) @ project-archetype ---
[INFO] 
[INFO] --- buildnumber:3.2.1:create (default) @ project-archetype ---
[INFO] ShortRevision tag detected. The value is '12'.
[INFO] Executing: /bin/sh -c cd '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/archetypes/project' && 'git' 'log' '-1' '--no-merges' '--format=format:%H %aI %aE %aN'
[INFO] Working directory: /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/archetypes/project
[INFO] Storing buildNumber: d4d6ee276ae7 at timestamp: 1734731457392
[INFO] Executing: /bin/sh -c cd '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/archetypes/project' && 'git' 'symbolic-ref' 'HEAD'
[INFO] Working directory: /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/archetypes/project
[WARNING] Cannot get the branch information from the git repository: 
Detecting the current branch failed: fatal: ref HEAD is not a symbolic ref

[INFO] ShortRevision tag detected. The value is '12'.
[INFO] Executing: /bin/sh -c cd '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/archetypes/project' && 'git' 'log' '-1' '--no-merges' '--format=format:%H %aI %aE %aN'
[INFO] Working directory: /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/archetypes/project
[INFO] Storing scmBranch: UNKNOWN
[INFO] 
[INFO] --- enforcer:3.5.0:enforce (enforce-maven) @ project-archetype ---
[INFO] Rule 0: org.apache.maven.enforcer.rules.dependency.DependencyConvergence passed
[INFO] Rule 1: org.apache.maven.enforcer.rules.version.RequireMavenVersion passed
[INFO] Rule 2: org.apache.maven.enforcer.rules.version.RequireJavaVersion passed
[INFO] Rule 3: org.apache.maven.enforcer.rules.RequirePluginVersions passed
[INFO] Rule 4: org.apache.maven.enforcer.rules.ReactorModuleConvergence passed
[INFO] 
[INFO] --- enforcer:3.5.0:enforce (enforce-banned-dependencies) @ project-archetype ---
[INFO] Rule 0: org.apache.maven.enforcer.rules.dependency.BannedDependencies passed
[INFO] 
[INFO] --- antrun:3.1.0:run (generate-and-print-build-description) @ project-archetype ---
[INFO] Executing tasks
[INFO]      [echo] DESCRIPTION: origin/feature/TFT-165 3.2-ALPHA-25-SNAPSHOT d4d6ee276ae7
[INFO]      [echo] Java Version: 21.0.5 -source 11 -target 11 -release 11
[INFO] Executed tasks
[INFO] 
[INFO] --- jacoco:0.8.12:prepare-agent (prepare-agent) @ project-archetype ---
[INFO] tft.test.jacoco.argLine set to -javaagent:/var/jenkins_home/maven-repositories/2/org/jacoco/org.jacoco.agent/0.8.12/org.jacoco.agent-0.8.12-runtime.jar=destfile=/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/archetypes/project/target/jacoco.exec
[INFO] 
[INFO] --- resources:3.3.1:resources (default-resources) @ project-archetype ---
[INFO] Copying 12 resources from src/main/resources to target/classes
[INFO] 
[INFO] --- resources:3.3.1:testResources (default-testResources) @ project-archetype ---
[INFO] skip non existing resourceDirectory /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/archetypes/project/src/test/resources
[INFO] 
[INFO] --- jacoco:0.8.12:report (report) @ project-archetype ---
[INFO] Skipping JaCoCo execution due to missing execution data file.
[INFO] 
[INFO] --- archetype:3.3.1:jar (default-jar) @ project-archetype ---
[INFO] Building archetype jar: /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/archetypes/project/target/project-archetype-3.2-ALPHA-25-SNAPSHOT.d4d6ee276ae7.jar
[INFO] Building jar: /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/archetypes/project/target/project-archetype-3.2-ALPHA-25-SNAPSHOT.d4d6ee276ae7.jar
[INFO] 
[INFO] --- jar:3.4.2:test-jar (default-test-jar) @ project-archetype ---
[INFO] Skipping packaging of the test-jar
[INFO] 
[INFO] --- archetype:3.3.1:integration-test (default-integration-test) @ project-archetype ---
[WARNING] No Archetype IT projects: root 'projects' directory not found.
[JENKINS] Recording test results
[INFO] 
[INFO] --- install:3.1.3:install (default-install) @ project-archetype ---
[INFO] Installing /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/archetypes/project/pom.xml to /var/jenkins_home/maven-repositories/2/it/tidalwave/thesefoolishthings/project-archetype/3.2-ALPHA-25-SNAPSHOT/project-archetype-3.2-ALPHA-25-SNAPSHOT.pom
[INFO] Installing /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/archetypes/project/target/project-archetype-3.2-ALPHA-25-SNAPSHOT.d4d6ee276ae7.jar to /var/jenkins_home/maven-repositories/2/it/tidalwave/thesefoolishthings/project-archetype/3.2-ALPHA-25-SNAPSHOT/project-archetype-3.2-ALPHA-25-SNAPSHOT.jar
[INFO] 
[INFO] --- archetype:3.3.1:update-local-catalog (default-update-local-catalog) @ project-archetype ---
[INFO] Updated local archetypes catalog /var/jenkins_home/maven-repositories/2/archetype-catalog.xml
[INFO] 
[INFO] >>> spotbugs:4.8.6.6:check (default-cli) > :spotbugs @ project-archetype >>>
[INFO] 
[INFO] --- spotbugs:4.8.6.6:spotbugs (spotbugs) @ project-archetype ---
[INFO] 
[INFO] <<< spotbugs:4.8.6.6:check (default-cli) < :spotbugs @ project-archetype <<<
[INFO] 
[INFO] 
[INFO] --- spotbugs:4.8.6.6:check (default-cli) @ project-archetype ---
[INFO] 
[INFO] --- pmd:3.20.0:cpd (default-cli) @ project-archetype ---
[WARNING]  Parameter 'aggregate' (user property 'aggregate') is deprecated: since 3.15.0 Use the goals <code>pmd:aggregate-pmd</code> and <code>pmd:aggregate-cpd</code>
instead.
[INFO] PMD version: 6.53.0
[INFO] Rendering content with org.apache.maven.skins:maven-default-skin:jar:1.3 skin.
[INFO] 
[INFO] --- pmd:3.20.0:pmd (default-cli) @ project-archetype ---
[WARNING]  Parameter 'aggregate' (user property 'aggregate') is deprecated: since 3.15.0 Use the goals <code>pmd:aggregate-pmd</code> and <code>pmd:aggregate-cpd</code>
instead.
[INFO] PMD version: 6.53.0
[WARNING] Applying rule set filter: The rule "UnusedModifier" has been moved from ruleset "unusedcode" to "unnecessary". Please change your ruleset!
[WARNING] Applying rule set filter: The rule "UnusedModifier" has been renamed to "UnnecessaryModifier". Please change your ruleset!
[WARNING] The RuleSet rulesets/java/basic.xml has been deprecated and will be removed in PMD 7.0.0
[WARNING] The RuleSet rulesets/java/unusedcode.xml has been deprecated and will be removed in PMD 7.0.0
[WARNING] The RuleSet rulesets/java/imports.xml has been deprecated and will be removed in PMD 7.0.0
[WARNING] Applying rule set filter: The rule "UnusedModifier" has been moved from ruleset "unusedcode" to "unnecessary". Please change your ruleset!
[WARNING] Applying rule set filter: The rule "UnusedModifier" has been renamed to "UnnecessaryModifier". Please change your ruleset!
[WARNING] The RuleSet rulesets/java/basic.xml has been deprecated and will be removed in PMD 7.0.0
[WARNING] The RuleSet rulesets/java/unusedcode.xml has been deprecated and will be removed in PMD 7.0.0
[WARNING] The RuleSet rulesets/java/imports.xml has been deprecated and will be removed in PMD 7.0.0
[INFO] Rendering content with org.apache.maven.skins:maven-default-skin:jar:1.3 skin.
[INFO] 
[INFO] --- checkstyle:3.0.0:checkstyle (default-cli) @ project-archetype ---
[INFO] 
[INFO] >>> dependency:3.8.1:analyze (default-cli) > test-compile @ project-archetype >>>
[INFO] 
[INFO] --- buildnumber:3.2.1:create (default) @ project-archetype ---
[INFO] ShortRevision tag detected. The value is '12'.
[INFO] Executing: /bin/sh -c cd '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/archetypes/project' && 'git' 'log' '-1' '--no-merges' '--format=format:%H %aI %aE %aN'
[INFO] Working directory: /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/archetypes/project
[INFO] Storing buildNumber: d4d6ee276ae7 at timestamp: 1734731464626
[INFO] Executing: /bin/sh -c cd '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/archetypes/project' && 'git' 'symbolic-ref' 'HEAD'
[INFO] Working directory: /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/archetypes/project
[WARNING] Cannot get the branch information from the git repository: 
Detecting the current branch failed: fatal: ref HEAD is not a symbolic ref

[INFO] ShortRevision tag detected. The value is '12'.
[INFO] Executing: /bin/sh -c cd '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/archetypes/project' && 'git' 'log' '-1' '--no-merges' '--format=format:%H %aI %aE %aN'
[INFO] Working directory: /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/archetypes/project
[INFO] Storing scmBranch: UNKNOWN
[INFO] 
[INFO] --- enforcer:3.5.0:enforce (enforce-maven) @ project-archetype ---
[INFO] Rule 0: org.apache.maven.enforcer.rules.dependency.DependencyConvergence passed
[INFO] Rule 3: org.apache.maven.enforcer.rules.RequirePluginVersions passed
[INFO] 
[INFO] --- enforcer:3.5.0:enforce (enforce-banned-dependencies) @ project-archetype ---
[INFO] Rule 0: org.apache.maven.enforcer.rules.dependency.BannedDependencies passed
[INFO] 
[INFO] --- antrun:3.1.0:run (generate-and-print-build-description) @ project-archetype ---
[INFO] Executing tasks
[INFO]      [echo] DESCRIPTION: origin/feature/TFT-165 3.2-ALPHA-25-SNAPSHOT d4d6ee276ae7
[INFO]      [echo] Java Version: 21.0.5 -source 11 -target 11 -release 11
[INFO] Executed tasks
[INFO] 
[INFO] --- jacoco:0.8.12:prepare-agent (prepare-agent) @ project-archetype ---
[INFO] tft.test.jacoco.argLine set to -javaagent:/var/jenkins_home/maven-repositories/2/org/jacoco/org.jacoco.agent/0.8.12/org.jacoco.agent-0.8.12-runtime.jar=destfile=/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/archetypes/project/target/jacoco.exec
[INFO] 
[INFO] --- resources:3.3.1:resources (default-resources) @ project-archetype ---
[INFO] Copying 12 resources from src/main/resources to target/classes
[INFO] 
[INFO] --- resources:3.3.1:testResources (default-testResources) @ project-archetype ---
[INFO] skip non existing resourceDirectory /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/archetypes/project/src/test/resources
[WARNING] Failed to getClass for org.apache.maven.plugins.dependency.analyze.AnalyzeMojo
[INFO] 
[INFO] <<< dependency:3.8.1:analyze (default-cli) < test-compile @ project-archetype <<<
[INFO] 
[INFO] 
[INFO] --- dependency:3.8.1:analyze (default-cli) @ project-archetype ---
[INFO] No dependency problems found
[JENKINS] Archiving disabled
Started calculate disk usage of build
Finished Calculation of disk usage of build in 0 seconds
Started calculate disk usage of workspace
Finished Calculation of disk usage of workspace in 0 seconds
[INFO] 
[INFO] ---------< it.tidalwave.thesefoolishthings:thesefoolishthings >---------
[INFO] Building TheseFoolishThings 3.2-ALPHA-25-SNAPSHOT                [20/19]
[INFO]   from pom.xml
[INFO] --------------------------------[ pom ]---------------------------------
[INFO] 
[INFO] --- dependency-check:11.1.1:aggregate (default-cli) @ thesefoolishthings ---
[INFO] Downloading from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/org/owasp/dependency-check-core/11.1.1/dependency-check-core-11.1.1.pom
[INFO] Downloaded from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/org/owasp/dependency-check-core/11.1.1/dependency-check-core-11.1.1.pom (26 kB at 14 kB/s)
[INFO] Downloading from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/org/apache/httpcomponents/client5/httpclient5/5.4.1/httpclient5-5.4.1.pom
[INFO] Downloaded from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/org/apache/httpcomponents/client5/httpclient5/5.4.1/httpclient5-5.4.1.pom (6.1 kB at 14 kB/s)
[INFO] Downloading from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/org/apache/httpcomponents/client5/httpclient5-parent/5.4.1/httpclient5-parent-5.4.1.pom
[INFO] Downloaded from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/org/apache/httpcomponents/client5/httpclient5-parent/5.4.1/httpclient5-parent-5.4.1.pom (16 kB at 35 kB/s)
[INFO] Downloading from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/org/apache/httpcomponents/core5/httpcore5/5.3.1/httpcore5-5.3.1.pom
[INFO] Downloaded from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/org/apache/httpcomponents/core5/httpcore5/5.3.1/httpcore5-5.3.1.pom (3.9 kB at 10 kB/s)
[INFO] Downloading from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/org/apache/httpcomponents/core5/httpcore5-parent/5.3.1/httpcore5-parent-5.3.1.pom
[INFO] Downloaded from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/org/apache/httpcomponents/core5/httpcore5-parent/5.3.1/httpcore5-parent-5.3.1.pom (14 kB at 37 kB/s)
[INFO] Downloading from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/org/apache/httpcomponents/core5/httpcore5-h2/5.3.1/httpcore5-h2-5.3.1.pom
[INFO] Downloaded from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/org/apache/httpcomponents/core5/httpcore5-h2/5.3.1/httpcore5-h2-5.3.1.pom (3.6 kB at 9.2 kB/s)
[INFO] Downloading from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-databind/2.18.2/jackson-databind-2.18.2.pom
[INFO] Downloaded from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-databind/2.18.2/jackson-databind-2.18.2.pom (21 kB at 24 kB/s)
[INFO] Downloading from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/com/fasterxml/jackson/jackson-base/2.18.2/jackson-base-2.18.2.pom
[INFO] Downloaded from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/com/fasterxml/jackson/jackson-base/2.18.2/jackson-base-2.18.2.pom (12 kB at 18 kB/s)
[INFO] Downloading from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-annotations/2.18.2/jackson-annotations-2.18.2.pom
[INFO] Downloaded from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-annotations/2.18.2/jackson-annotations-2.18.2.pom (7.1 kB at 10 kB/s)
[INFO] Downloading from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-core/2.18.2/jackson-core-2.18.2.pom
[INFO] Downloaded from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-core/2.18.2/jackson-core-2.18.2.pom (10 kB at 16 kB/s)
[INFO] Downloading from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.18.2/jackson-datatype-jsr310-2.18.2.pom
[INFO] Downloaded from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.18.2/jackson-datatype-jsr310-2.18.2.pom (4.9 kB at 7.4 kB/s)
[INFO] Downloading from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/com/fasterxml/jackson/module/jackson-modules-java8/2.18.2/jackson-modules-java8-2.18.2.pom
[INFO] Downloaded from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/com/fasterxml/jackson/module/jackson-modules-java8/2.18.2/jackson-modules-java8-2.18.2.pom (3.3 kB at 5.1 kB/s)
[INFO] Downloading from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/org/owasp/dependency-check-utils/11.1.1/dependency-check-utils-11.1.1.pom
[INFO] Downloaded from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/org/owasp/dependency-check-utils/11.1.1/dependency-check-utils-11.1.1.pom (4.5 kB at 6.8 kB/s)
[INFO] Downloading from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/commons-io/commons-io/2.18.0/commons-io-2.18.0.pom
[INFO] Downloaded from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/commons-io/commons-io/2.18.0/commons-io-2.18.0.pom (20 kB at 29 kB/s)
[INFO] Downloading from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/org/apache/commons/commons-parent/78/commons-parent-78.pom
[INFO] Downloaded from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/org/apache/commons/commons-parent/78/commons-parent-78.pom (78 kB at 183 kB/s)
[INFO] Downloading from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/org/jsoup/jsoup/1.18.3/jsoup-1.18.3.pom
[INFO] Downloaded from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/org/jsoup/jsoup/1.18.3/jsoup-1.18.3.pom (17 kB at 24 kB/s)
[INFO] Downloading from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/com/fasterxml/jackson/module/jackson-module-afterburner/2.18.2/jackson-module-afterburner-2.18.2.pom
[INFO] Downloaded from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/com/fasterxml/jackson/module/jackson-module-afterburner/2.18.2/jackson-module-afterburner-2.18.2.pom (5.8 kB at 8.0 kB/s)
[INFO] Downloading from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/com/fasterxml/jackson/module/jackson-modules-base/2.18.2/jackson-modules-base-2.18.2.pom
[INFO] Downloaded from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/com/fasterxml/jackson/module/jackson-modules-base/2.18.2/jackson-modules-base-2.18.2.pom (4.3 kB at 6.5 kB/s)
[INFO] Downloading from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/com/fasterxml/jackson/module/jackson-module-blackbird/2.18.2/jackson-module-blackbird-2.18.2.pom
[INFO] Downloaded from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/com/fasterxml/jackson/module/jackson-module-blackbird/2.18.2/jackson-module-blackbird-2.18.2.pom (3.5 kB at 5.2 kB/s)
[INFO] Downloading from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.18.2/jackson-dataformat-yaml-2.18.2.pom
[INFO] Downloaded from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.18.2/jackson-dataformat-yaml-2.18.2.pom (2.6 kB at 4.0 kB/s)
[INFO] Downloading from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.18.2/jackson-dataformats-text-2.18.2.pom
[INFO] Downloaded from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.18.2/jackson-dataformats-text-2.18.2.pom (3.7 kB at 5.8 kB/s)
[INFO] Downloading from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/org/owasp/dependency-check-core/11.1.1/dependency-check-core-11.1.1.jar
[INFO] Downloaded from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/org/owasp/dependency-check-core/11.1.1/dependency-check-core-11.1.1.jar (1.1 MB at 1.6 MB/s)
[INFO] Downloading from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/commons-io/commons-io/2.18.0/commons-io-2.18.0.jar
[INFO] Downloading from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/org/jsoup/jsoup/1.18.3/jsoup-1.18.3.jar
[INFO] Downloading from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-databind/2.18.2/jackson-databind-2.18.2.jar
[INFO] Downloading from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-annotations/2.18.2/jackson-annotations-2.18.2.jar
[INFO] Downloading from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-core/2.18.2/jackson-core-2.18.2.jar
[INFO] Downloaded from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/commons-io/commons-io/2.18.0/commons-io-2.18.0.jar (539 kB at 619 kB/s)
[INFO] Downloading from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.18.2/jackson-datatype-jsr310-2.18.2.jar
[INFO] Downloaded from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-core/2.18.2/jackson-core-2.18.2.jar (598 kB at 625 kB/s)
[INFO] Downloading from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/com/fasterxml/jackson/module/jackson-module-afterburner/2.18.2/jackson-module-afterburner-2.18.2.jar
[INFO] Downloaded from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/org/jsoup/jsoup/1.18.3/jsoup-1.18.3.jar (459 kB at 417 kB/s)
[INFO] Downloading from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/com/fasterxml/jackson/module/jackson-module-blackbird/2.18.2/jackson-module-blackbird-2.18.2.jar
[INFO] Downloaded from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-annotations/2.18.2/jackson-annotations-2.18.2.jar (78 kB at 68 kB/s)
[INFO] Downloading from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.18.2/jackson-dataformat-yaml-2.18.2.jar
[INFO] Downloaded from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-databind/2.18.2/jackson-databind-2.18.2.jar (1.7 MB at 1.4 MB/s)
[INFO] Downloading from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/org/owasp/dependency-check-utils/11.1.1/dependency-check-utils-11.1.1.jar
[INFO] Downloaded from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.18.2/jackson-datatype-jsr310-2.18.2.jar (133 kB at 89 kB/s)
[INFO] Downloading from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/org/apache/httpcomponents/client5/httpclient5/5.4.1/httpclient5-5.4.1.jar
[INFO] Downloaded from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/com/fasterxml/jackson/module/jackson-module-afterburner/2.18.2/jackson-module-afterburner-2.18.2.jar (218 kB at 133 kB/s)
[INFO] Downloading from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/org/apache/httpcomponents/core5/httpcore5/5.3.1/httpcore5-5.3.1.jar
[INFO] Downloaded from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/com/fasterxml/jackson/module/jackson-module-blackbird/2.18.2/jackson-module-blackbird-2.18.2.jar (65 kB at 37 kB/s)
[INFO] Downloading from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/org/apache/httpcomponents/core5/httpcore5-h2/5.3.1/httpcore5-h2-5.3.1.jar
[INFO] Downloaded from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/org/owasp/dependency-check-utils/11.1.1/dependency-check-utils-11.1.1.jar (62 kB at 33 kB/s)
[INFO] Downloaded from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.18.2/jackson-dataformat-yaml-2.18.2.jar (56 kB at 30 kB/s)
[INFO] Downloaded from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/org/apache/httpcomponents/client5/httpclient5/5.4.1/httpclient5-5.4.1.jar (908 kB at 474 kB/s)
[INFO] Downloaded from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/org/apache/httpcomponents/core5/httpcore5/5.3.1/httpcore5-5.3.1.jar (906 kB at 445 kB/s)
[INFO] Downloaded from maven-proxy.tidalwave.it: https://services.tidalwave.it/nexus/content/groups/public/org/apache/httpcomponents/core5/httpcore5-h2/5.3.1/httpcore5-h2-5.3.1.jar (241 kB at 114 kB/s)
[INFO] Skipping dependency-check:aggregate
[JENKINS] Archiving disabled
Started calculate disk usage of build
Finished Calculation of disk usage of build in 0 seconds
Started calculate disk usage of workspace
Finished Calculation of disk usage of workspace in 0 seconds
[JENKINS] Archiving disabled
[JENKINS] Archiving disabled
[JENKINS] Archiving disabled
[JENKINS] Archiving disabled
[JENKINS] Archiving disabled
[JENKINS] Archiving disabled
[JENKINS] Archiving disabled
[JENKINS] Archiving disabled
[JENKINS] Archiving disabled
[JENKINS] Archiving disabled
[JENKINS] Archiving disabled
[JENKINS] Archiving disabled
[JENKINS] Archiving disabled
[JENKINS] Archiving disabled
[JENKINS] Archiving disabled
[JENKINS] Archiving disabled
[JENKINS] Archiving disabled
[JENKINS] Archiving disabled
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary for TheseFoolishThings 3.2-ALPHA-25-SNAPSHOT:
[INFO] 
[INFO] TheseFoolishThings ................................. SUCCESS [ 17.852 s]
[INFO] TheseFoolishThings (modules) ....................... SUCCESS [  6.955 s]
[INFO] TheseFoolishThings :: MessageBus ................... SUCCESS [ 29.401 s]
[INFO] TheseFoolishThings :: Utilities .................... SUCCESS [01:11 min]
[INFO] TheseFoolishThings :: Actors ....................... SUCCESS [ 31.928 s]
[INFO] TheseFoolishThings :: Test Utilities ............... SUCCESS [ 24.592 s]
[INFO] TheseFoolishThings :: Roles ........................ SUCCESS [ 55.812 s]
[INFO] TheseFoolishThings :: MessageBus :: Spring ......... SUCCESS [ 52.521 s]
[JENKINS] Archiving disabled
[INFO] TheseFoolishThings :: Roles :: Spring .............. SUCCESS [ 47.696 s]
[INFO] TheseFoolishThings :: Examples (master) ............ SUCCESS [  1.439 s]
[INFO] TheseFoolishThings :: Examples :: Data ............. SUCCESS [ 19.728 s]
[INFO] TheseFoolishThings :: Examples :: DCI :: Displayable SUCCESS [ 31.668 s]
[INFO] TheseFoolishThings :: Examples :: DCI :: Marshal XStream SUCCESS [ 42.184 s]
[INFO] TheseFoolishThings :: Examples :: DCI :: Persistence JPA SUCCESS [ 51.327 s]
[INFO] TheseFoolishThings :: Examples :: DCI :: Swing ..... SUCCESS [ 22.309 s]
[INFO] TheseFoolishThings :: Examples :: Finder :: In-memory Finder SUCCESS [ 25.344 s]
[INFO] TheseFoolishThings :: Examples :: Finder :: Extended Finder SUCCESS [ 29.508 s]
[INFO] TheseFoolishThings :: Examples :: Finder :: JPA Finder SUCCESS [ 33.924 s]
[INFO] TheseFoolishThings :: Project Archetype ............ SUCCESS [  8.647 s]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  10:40 min
[INFO] Finished at: 2024-12-20T21:51:25Z
[INFO] ------------------------------------------------------------------------
[workspace] $ /bin/bash /tmp/jenkins16446725946213576490.sh
channel stopped
No post-build script.
TestNG Reports Processing: START
Looking for TestNG results report in workspace using pattern: **/target/**/testng-results.xml
Saving reports...
Processing '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/builds/15/testng/testng-results-1.xml'
Processing '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/builds/15/testng/testng-results-2.xml'
Processing '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/builds/15/testng/testng-results-3.xml'
Processing '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/builds/15/testng/testng-results-4.xml'
Processing '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/builds/15/testng/testng-results-5.xml'
Processing '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/builds/15/testng/testng-results-6.xml'
Processing '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/builds/15/testng/testng-results-7.xml'
Processing '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/builds/15/testng/testng-results-8.xml'
Processing '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/builds/15/testng/testng-results-9.xml'
Processing '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/builds/15/testng/testng-results.xml'
0.749064% of tests failed, which exceeded threshold of 0%. Marking build as UNSTABLE
TestNG Reports Processing: FINISH
[JaCoCo plugin] Collecting JaCoCo coverage data...
[JaCoCo plugin] Version: 3.3.3
[JaCoCo plugin] **/**.exec;**/classes;**/src/main/java; locations are configured
[JaCoCo plugin] Number of found exec files for pattern **/**.exec: 10
[JaCoCo plugin] Saving matched execfiles:  /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Roles/target/jacoco.exec /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/SpringMessageBus/target/jacoco.exec /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/SpringRoles/target/jacoco.exec /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Utilities/target/jacoco.exec /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciDisplayableExample/target/jacoco.exec /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciMarshalXStreamExample/target/jacoco.exec /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciPersistenceJpaExample/target/jacoco.exec /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/ExtendedFinderExample/target/jacoco.exec /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/InMemoryFinderExample/target/jacoco.exec /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample/target/jacoco.exec
[JaCoCo plugin] Saving matched class directories for class-pattern: **/classes: 
[JaCoCo plugin]  - /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/archetypes/project/target/classes 0 files
[JaCoCo plugin]  - /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Actors/target/classes 36 files
[JaCoCo plugin]  - /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/MessageBus/target/classes 19 files
[JaCoCo plugin]  - /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Roles/target/classes 78 files
[JaCoCo plugin]  - /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/SpringMessageBus/target/classes 5 files
[JaCoCo plugin]  - /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/SpringRoles/target/classes 6 files
[JaCoCo plugin]  - /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/TestUtilities/target/classes 8 files
[JaCoCo plugin]  - /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Utilities/target/classes 111 files
[JaCoCo plugin]  - /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/Data/target/classes 5 files
[JaCoCo plugin]  - /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciDisplayableExample/target/classes 5 files
[JaCoCo plugin]  - /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciMarshalXStreamExample/target/classes 18 files
[JaCoCo plugin]  - /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciPersistenceJpaExample/target/classes 8 files
[JaCoCo plugin]  - /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciSwingExample/target/classes 16 files
[JaCoCo plugin]  - /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/ExtendedFinderExample/target/classes 8 files
[JaCoCo plugin]  - /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/InMemoryFinderExample/target/classes 3 files
[JaCoCo plugin]  - /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample/target/classes 14 files
[JaCoCo plugin] Saving matched source directories for source-pattern: **/src/main/java: 
[JaCoCo plugin] Source Inclusions: null
[JaCoCo plugin] Source Exclusions: null
[JaCoCo plugin] - /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/archetypes/project/src/main/resources/archetype-resources/modules/Module1/src/main/java 1 files
[JaCoCo plugin] - /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/archetypes/project/target/classes/archetype-resources/modules/Module1/src/main/java 1 files
[JaCoCo plugin] - /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Actors/src/main/java 22 files
[JaCoCo plugin] - /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/MessageBus/src/main/java 10 files
[JaCoCo plugin] - /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Roles/src/main/java 65 files
[JaCoCo plugin] - /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/SpringMessageBus/src/main/java 2 files
[JaCoCo plugin] - /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/SpringRoles/src/main/java 5 files
[JaCoCo plugin] - /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/TestUtilities/src/main/java 6 files
[JaCoCo plugin] - /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Utilities/src/main/java 76 files
[JaCoCo plugin] - /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/Data/src/main/java 5 files
[JaCoCo plugin] - /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciDisplayableExample/src/main/java 5 files
[JaCoCo plugin] - /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciMarshalXStreamExample/src/main/java 17 files
[JaCoCo plugin] - /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciPersistenceJpaExample/src/main/java 8 files
[JaCoCo plugin] - /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciSwingExample/src/main/java 15 files
[JaCoCo plugin] - /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/ExtendedFinderExample/src/main/java 7 files
[JaCoCo plugin] - /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/InMemoryFinderExample/src/main/java 3 files
[JaCoCo plugin] - /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample/src/main/java 11 files
[JaCoCo plugin] Loading inclusions files..
[JaCoCo plugin] inclusions: []
[JaCoCo plugin] exclusions: [org/musicbrainz/**/*.class]
[JaCoCo plugin] Thresholds: JacocoHealthReportThresholds [minClass=0, maxClass=0, minMethod=0, maxMethod=0, minLine=0, maxLine=0, minBranch=0, maxBranch=0, minInstruction=0, maxInstruction=0, minComplexity=0, maxComplexity=0]
[JaCoCo plugin] Publishing the results..
[JaCoCo plugin] Loading packages..
[JaCoCo plugin] Done.
[JaCoCo plugin] Overall coverage: class: 53.846157, method: 46.350044, line: 45.271908, branch: 41.137123, instruction: 46.411625, complexity: 43.393604
[description-setter] Description set: origin/feature/TFT-165 3.2-ALPHA-25-SNAPSHOT d4d6ee276ae7
[Java Compiler] Parsing console log (workspace: '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace')
[Java Compiler] Successfully parsed console log
[Java Compiler] -> found 174 issues (skipped 126 duplicates)
[Java Compiler] Post processing issues on 'Master' with source code encoding 'UTF-8'
[Java Compiler] Creating SCM blamer to obtain author and commit information for affected files
[Java Compiler] -> No blamer installed yet. You need to install the 'git-forensics' plugin to enable blaming for Git.
[Java Compiler] Resolving file names for all issues in workspace '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace'
[Java Compiler] -> resolved paths in source directory (69 found, 0 not found)
[Java Compiler] Resolving module names from module definitions (build.xml, pom.xml, or Manifest.mf files)
[Java Compiler] -> resolved module names for 174 issues
[Java Compiler] Resolving package names (or namespaces) by parsing the affected files
[Java Compiler] -> resolved package names of 69 affected files
[Java Compiler] No filter has been set, publishing all 174 issues
[Java Compiler] Creating fingerprints for all affected code blocks to track issues over different builds
[Java Compiler] -> created fingerprints for 174 issues (skipped 0 issues)
[Java Compiler] Copying affected files to Jenkins' build folder '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/builds/15/files-with-issues'
[Java Compiler] -> 69 copied, 0 not in workspace, 0 not-found, 0 with I/O error
[Java Compiler] Repository miner is not configured, skipping repository mining
[Java Compiler] Parsing console log (workspace: '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace')
[Java Compiler] Successfully parsed console log
[Java Compiler] -> found 174 issues (skipped 126 duplicates)
[Java Compiler] Post processing issues on 'Master' with source code encoding 'UTF-8'
[Java Compiler] Creating SCM blamer to obtain author and commit information for affected files
[Java Compiler] -> No blamer installed yet. You need to install the 'git-forensics' plugin to enable blaming for Git.
[Java Compiler] Resolving file names for all issues in workspace '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace'
[Java Compiler] -> resolved paths in source directory (69 found, 0 not found)
[Java Compiler] Resolving module names from module definitions (build.xml, pom.xml, or Manifest.mf files)
[Java Compiler] -> resolved module names for 174 issues
[Java Compiler] Resolving package names (or namespaces) by parsing the affected files
[Java Compiler] -> resolved package names of 69 affected files
[Java Compiler] No filter has been set, publishing all 174 issues
[Java Compiler] Creating fingerprints for all affected code blocks to track issues over different builds
[Java Compiler] -> created fingerprints for 174 issues (skipped 0 issues)
[Java Compiler] Copying affected files to Jenkins' build folder '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/builds/15/files-with-issues'
[Java Compiler] -> 69 copied, 0 not in workspace, 0 not-found, 0 with I/O error
[Java Compiler] Repository miner is not configured, skipping repository mining
[Java Compiler] Reference build recorder is not configured
[Java Compiler] Obtaining reference build from same job (TheseFoolishThings :: Metrics (feature branches))
[Java Compiler] Using reference build 'TheseFoolishThings_Metrics_branches #13' to compute new, fixed, and outstanding issues
[Java Compiler] Issues delta (vs. reference build): outstanding: 128, new: 46, fixed: 20
[Java Compiler] No quality gates have been set - skipping
[Java Compiler] Health report is disabled - skipping
[Java Compiler] Created analysis result for 174 issues (found 46 new issues, fixed 20 issues)
[Java Compiler] Attaching ResultAction with ID 'java' to build 'TheseFoolishThings_Metrics_branches #15'.
[Checks API] No suitable checks publisher found.
[Maven] Parsing console log (workspace: '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace')
[Maven] -> found 177 issues (skipped 0 duplicates)
[Maven] Parsing console log (workspace: '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace')
[Maven] -> found 177 issues (skipped 0 duplicates)
[Maven] Successfully parsed console log
[Maven] -> found 177 issues (skipped 0 duplicates)
[Maven] Parsing console log (workspace: '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace')
[Maven] Skipping post processing
[Maven] No filter has been set, publishing all 177 issues
[Maven] Repository miner is not configured, skipping repository mining
[Maven] Successfully parsed console log
[Maven] -> found 177 issues (skipped 0 duplicates)
[Maven] Successfully parsed console log
[Maven] -> found 177 issues (skipped 0 duplicates)
[Maven] Successfully parsed console log
[Maven] -> found 177 issues (skipped 0 duplicates)
[Maven] Successfully parsed console log
[Maven] -> found 177 issues (skipped 0 duplicates)
[Maven] Parsing console log (workspace: '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace')
[Maven] Skipping post processing
[Maven] No filter has been set, publishing all 177 issues
[Maven] Repository miner is not configured, skipping repository mining
[Maven] Reference build recorder is not configured
[Maven] Obtaining reference build from same job (TheseFoolishThings :: Metrics (feature branches))
[Maven] Using reference build 'TheseFoolishThings_Metrics_branches #13' to compute new, fixed, and outstanding issues
[Maven] Issues delta (vs. reference build): outstanding: 177, new: 0, fixed: 0
[Maven] No quality gates have been set - skipping
[Maven] Health report is disabled - skipping
[Maven] Created analysis result for 177 issues (found 0 new issues, fixed 0 issues)
[Maven] Attaching ResultAction with ID 'maven-warnings' to build 'TheseFoolishThings_Metrics_branches #15'.
[Checks API] No suitable checks publisher found.
[CPD] Using default pattern '**/cpd.xml' since user defined pattern is not set
[CPD] Searching for all files in '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace' that match the pattern '**/cpd.xml'
[CPD] Traversing of symbolic links: enabled
[CPD] -> found 32 files
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/archetypes/project/target/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'archetypes/project/target/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/archetypes/project/target/site/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'archetypes/project/target/site/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Actors/target/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/Actors/target/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Actors/target/site/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/Actors/target/site/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/MessageBus/target/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/MessageBus/target/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/MessageBus/target/site/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/MessageBus/target/site/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Roles/target/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/Roles/target/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Roles/target/site/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/Roles/target/site/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/SpringMessageBus/target/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/SpringMessageBus/target/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/SpringMessageBus/target/site/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/SpringMessageBus/target/site/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/SpringRoles/target/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/SpringRoles/target/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/SpringRoles/target/site/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/SpringRoles/target/site/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/TestUtilities/target/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/TestUtilities/target/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/TestUtilities/target/site/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/TestUtilities/target/site/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Utilities/target/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/Utilities/target/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Utilities/target/site/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/Utilities/target/site/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/Data/target/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/examples/Data/target/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/Data/target/site/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/examples/Data/target/site/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciDisplayableExample/target/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/examples/DciDisplayableExample/target/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciDisplayableExample/target/site/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/examples/DciDisplayableExample/target/site/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciMarshalXStreamExample/target/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/examples/DciMarshalXStreamExample/target/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciMarshalXStreamExample/target/site/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/examples/DciMarshalXStreamExample/target/site/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciPersistenceJpaExample/target/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/examples/DciPersistenceJpaExample/target/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciPersistenceJpaExample/target/site/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/examples/DciPersistenceJpaExample/target/site/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciSwingExample/target/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/examples/DciSwingExample/target/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciSwingExample/target/site/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/examples/DciSwingExample/target/site/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/ExtendedFinderExample/target/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/examples/ExtendedFinderExample/target/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/ExtendedFinderExample/target/site/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/examples/ExtendedFinderExample/target/site/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/InMemoryFinderExample/target/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/examples/InMemoryFinderExample/target/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/InMemoryFinderExample/target/site/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/examples/InMemoryFinderExample/target/site/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample/target/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/examples/JPAFinderExample/target/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample/target/site/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/examples/JPAFinderExample/target/site/cpd.xml'
[CPD] Skipping post processing
[CPD] No filter has been set, publishing all 0 issues
[CPD] Repository miner is not configured, skipping repository mining
[CPD] Searching for all files in '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace' that match the pattern '**/cpd.xml'
[CPD] Traversing of symbolic links: enabled
[CPD] -> found 32 files
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/archetypes/project/target/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'archetypes/project/target/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/archetypes/project/target/site/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'archetypes/project/target/site/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Actors/target/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/Actors/target/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Actors/target/site/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/Actors/target/site/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/MessageBus/target/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/MessageBus/target/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/MessageBus/target/site/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/MessageBus/target/site/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Roles/target/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/Roles/target/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Roles/target/site/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/Roles/target/site/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/SpringMessageBus/target/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/SpringMessageBus/target/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/SpringMessageBus/target/site/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/SpringMessageBus/target/site/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/SpringRoles/target/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/SpringRoles/target/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/SpringRoles/target/site/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/SpringRoles/target/site/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/TestUtilities/target/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/TestUtilities/target/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/TestUtilities/target/site/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/TestUtilities/target/site/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Utilities/target/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/Utilities/target/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Utilities/target/site/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/Utilities/target/site/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/Data/target/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/examples/Data/target/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/Data/target/site/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/examples/Data/target/site/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciDisplayableExample/target/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/examples/DciDisplayableExample/target/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciDisplayableExample/target/site/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/examples/DciDisplayableExample/target/site/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciMarshalXStreamExample/target/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/examples/DciMarshalXStreamExample/target/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciMarshalXStreamExample/target/site/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/examples/DciMarshalXStreamExample/target/site/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciPersistenceJpaExample/target/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/examples/DciPersistenceJpaExample/target/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciPersistenceJpaExample/target/site/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/examples/DciPersistenceJpaExample/target/site/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciSwingExample/target/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/examples/DciSwingExample/target/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciSwingExample/target/site/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/examples/DciSwingExample/target/site/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/ExtendedFinderExample/target/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/examples/ExtendedFinderExample/target/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/ExtendedFinderExample/target/site/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/examples/ExtendedFinderExample/target/site/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/InMemoryFinderExample/target/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/examples/InMemoryFinderExample/target/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/InMemoryFinderExample/target/site/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/examples/InMemoryFinderExample/target/site/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample/target/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/examples/JPAFinderExample/target/cpd.xml'
[CPD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample/target/site/cpd.xml
[CPD] -> found 0 issues (skipped 0 duplicates)
[CPD] Successfully processed file 'modules/examples/JPAFinderExample/target/site/cpd.xml'
[CPD] Skipping post processing
[CPD] No filter has been set, publishing all 0 issues
[CPD] Repository miner is not configured, skipping repository mining
[CPD] Reference build recorder is not configured
[CPD] Obtaining reference build from same job (TheseFoolishThings :: Metrics (feature branches))
[CPD] Using reference build 'TheseFoolishThings_Metrics_branches #13' to compute new, fixed, and outstanding issues
[CPD] Issues delta (vs. reference build): outstanding: 0, new: 0, fixed: 0
[CPD] No quality gates have been set - skipping
[CPD] Health report is disabled - skipping
[CPD] Created analysis result for 0 issues (found 0 new issues, fixed 0 issues)
[CPD] Attaching ResultAction with ID 'cpd' to build 'TheseFoolishThings_Metrics_branches #15'.
[Checks API] No suitable checks publisher found.
[AspectJ] Parsing console log (workspace: '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace')
[AspectJ] -> found 9 issues (skipped 23 duplicates)
[AspectJ] Parsing console log (workspace: '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace')
[AspectJ] -> found 9 issues (skipped 23 duplicates)
[AspectJ] Successfully parsed console log
[AspectJ] -> found 9 issues (skipped 23 duplicates)
[AspectJ] Parsing console log (workspace: '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace')
[AspectJ] Post processing issues on 'Master' with source code encoding 'UTF-8'
[AspectJ] Creating SCM blamer to obtain author and commit information for affected files
[AspectJ] -> No blamer installed yet. You need to install the 'git-forensics' plugin to enable blaming for Git.
[AspectJ] Resolving file names for all issues in workspace '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace'
[AspectJ] -> resolved paths in source directory (0 found, 1 not found)
[AspectJ] Resolving module names from module definitions (build.xml, pom.xml, or Manifest.mf files)
[AspectJ] -> resolved module names for 9 issues
[AspectJ] Resolving package names (or namespaces) by parsing the affected files
[AspectJ] -> resolved package names of 2 affected files
[AspectJ] No filter has been set, publishing all 9 issues
[AspectJ] Creating fingerprints for all affected code blocks to track issues over different builds
[AspectJ] -> created fingerprints for 0 issues (skipped 9 issues)
[AspectJ] Copying affected files to Jenkins' build folder '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/builds/15/files-with-issues'
[AspectJ] -> 0 copied, 0 not in workspace, 9 not-found, 0 with I/O error
[AspectJ] Repository miner is not configured, skipping repository mining
[AspectJ] [-ERROR-] Can't create fingerprints for some files:
[AspectJ] [-ERROR-] - '<unknown source file>' file not found
[AspectJ] [-ERROR-] - '<unknown source file>' file not found
[AspectJ] Successfully parsed console log
[AspectJ] -> found 9 issues (skipped 23 duplicates)
[AspectJ] Successfully parsed console log
[AspectJ] -> found 9 issues (skipped 23 duplicates)
[AspectJ] Successfully parsed console log
[AspectJ] -> found 9 issues (skipped 23 duplicates)
[AspectJ] Successfully parsed console log
[AspectJ] -> found 9 issues (skipped 23 duplicates)
[AspectJ] Parsing console log (workspace: '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace')
[AspectJ] Post processing issues on 'Master' with source code encoding 'UTF-8'
[AspectJ] Creating SCM blamer to obtain author and commit information for affected files
[AspectJ] -> No blamer installed yet. You need to install the 'git-forensics' plugin to enable blaming for Git.
[AspectJ] Resolving file names for all issues in workspace '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace'
[AspectJ] -> resolved paths in source directory (0 found, 1 not found)
[AspectJ] Resolving module names from module definitions (build.xml, pom.xml, or Manifest.mf files)
[AspectJ] -> resolved module names for 9 issues
[AspectJ] Resolving package names (or namespaces) by parsing the affected files
[AspectJ] -> resolved package names of 2 affected files
[AspectJ] No filter has been set, publishing all 9 issues
[AspectJ] Creating fingerprints for all affected code blocks to track issues over different builds
[AspectJ] -> created fingerprints for 0 issues (skipped 9 issues)
[AspectJ] Copying affected files to Jenkins' build folder '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/builds/15/files-with-issues'
[AspectJ] -> 0 copied, 0 not in workspace, 9 not-found, 0 with I/O error
[AspectJ] Repository miner is not configured, skipping repository mining
[AspectJ] [-ERROR-] Can't create fingerprints for some files:
[AspectJ] [-ERROR-] - '<unknown source file>' file not found
[AspectJ] [-ERROR-] - '<unknown source file>' file not found
[AspectJ] Reference build recorder is not configured
[AspectJ] Obtaining reference build from same job (TheseFoolishThings :: Metrics (feature branches))
[AspectJ] Using reference build 'TheseFoolishThings_Metrics_branches #13' to compute new, fixed, and outstanding issues
[AspectJ] Issues delta (vs. reference build): outstanding: 9, new: 0, fixed: 6
[AspectJ] No quality gates have been set - skipping
[AspectJ] Health report is disabled - skipping
[AspectJ] Created analysis result for 9 issues (found 0 new issues, fixed 6 issues)
[AspectJ] Attaching ResultAction with ID 'aspectj' to build 'TheseFoolishThings_Metrics_branches #15'.
[Checks API] No suitable checks publisher found.
[Code Analysis] Parsing console log (workspace: '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace')
[Code Analysis] -> found 0 issues (skipped 0 duplicates)
[Code Analysis] Parsing console log (workspace: '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace')
[Code Analysis] -> found 0 issues (skipped 0 duplicates)
[Code Analysis] Successfully parsed console log
[Code Analysis] -> found 0 issues (skipped 0 duplicates)
[Code Analysis] Parsing console log (workspace: '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace')
[Code Analysis] Skipping post processing
[Code Analysis] No filter has been set, publishing all 0 issues
[Code Analysis] Repository miner is not configured, skipping repository mining
[Code Analysis] Successfully parsed console log
[Code Analysis] -> found 0 issues (skipped 0 duplicates)
[Code Analysis] Successfully parsed console log
[Code Analysis] -> found 0 issues (skipped 0 duplicates)
[Code Analysis] Successfully parsed console log
[Code Analysis] -> found 0 issues (skipped 0 duplicates)
[Code Analysis] Successfully parsed console log
[Code Analysis] -> found 0 issues (skipped 0 duplicates)
[Code Analysis] Parsing console log (workspace: '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace')
[Code Analysis] Skipping post processing
[Code Analysis] No filter has been set, publishing all 0 issues
[Code Analysis] Repository miner is not configured, skipping repository mining
[Code Analysis] Reference build recorder is not configured
[Code Analysis] Obtaining reference build from same job (TheseFoolishThings :: Metrics (feature branches))
[Code Analysis] Using reference build 'TheseFoolishThings_Metrics_branches #13' to compute new, fixed, and outstanding issues
[Code Analysis] Issues delta (vs. reference build): outstanding: 0, new: 0, fixed: 0
[Code Analysis] No quality gates have been set - skipping
[Code Analysis] Health report is disabled - skipping
[Code Analysis] Created analysis result for 0 issues (found 0 new issues, fixed 0 issues)
[Code Analysis] Attaching ResultAction with ID 'code-analysis' to build 'TheseFoolishThings_Metrics_branches #15'.
[Checks API] No suitable checks publisher found.
[SpotBugs] Searching for all files in '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace' that match the pattern '**/target/**/findbugsXml.xml,**/target/**/spotbugsXml.xml'
[SpotBugs] Traversing of symbolic links: enabled
[SpotBugs] -> found 15 files
[SpotBugs] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Actors/target/site/spotbugsXml.xml
[SpotBugs] -> found 3 issues (skipped 0 duplicates)
[SpotBugs] Successfully processed file 'modules/Actors/target/site/spotbugsXml.xml'
[SpotBugs] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/MessageBus/target/site/spotbugsXml.xml
[SpotBugs] -> found 4 issues (skipped 0 duplicates)
[SpotBugs] Successfully processed file 'modules/MessageBus/target/site/spotbugsXml.xml'
[SpotBugs] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Roles/target/site/spotbugsXml.xml
[SpotBugs] -> found 5 issues (skipped 0 duplicates)
[SpotBugs] Successfully processed file 'modules/Roles/target/site/spotbugsXml.xml'
[SpotBugs] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/SpringMessageBus/target/site/spotbugsXml.xml
[SpotBugs] -> found 4 issues (skipped 0 duplicates)
[SpotBugs] Successfully processed file 'modules/SpringMessageBus/target/site/spotbugsXml.xml'
[SpotBugs] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/SpringRoles/target/site/spotbugsXml.xml
[SpotBugs] -> found 8 issues (skipped 1 duplicate)
[SpotBugs] Successfully processed file 'modules/SpringRoles/target/site/spotbugsXml.xml'
[SpotBugs] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/TestUtilities/target/site/spotbugsXml.xml
[SpotBugs] -> found 1 issue (skipped 0 duplicates)
[SpotBugs] Successfully processed file 'modules/TestUtilities/target/site/spotbugsXml.xml'
[SpotBugs] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Utilities/target/site/spotbugsXml.xml
[SpotBugs] -> found 24 issues (skipped 0 duplicates)
[SpotBugs] Successfully processed file 'modules/Utilities/target/site/spotbugsXml.xml'
[SpotBugs] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/Data/target/site/spotbugsXml.xml
[SpotBugs] -> found 1 issue (skipped 0 duplicates)
[SpotBugs] Successfully processed file 'modules/examples/Data/target/site/spotbugsXml.xml'
[SpotBugs] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciDisplayableExample/target/site/spotbugsXml.xml
[SpotBugs] -> found 0 issues (skipped 0 duplicates)
[SpotBugs] Successfully processed file 'modules/examples/DciDisplayableExample/target/site/spotbugsXml.xml'
[SpotBugs] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciMarshalXStreamExample/target/site/spotbugsXml.xml
[SpotBugs] -> found 2 issues (skipped 0 duplicates)
[SpotBugs] Successfully processed file 'modules/examples/DciMarshalXStreamExample/target/site/spotbugsXml.xml'
[SpotBugs] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciPersistenceJpaExample/target/site/spotbugsXml.xml
[SpotBugs] -> found 0 issues (skipped 0 duplicates)
[SpotBugs] Successfully processed file 'modules/examples/DciPersistenceJpaExample/target/site/spotbugsXml.xml'
[SpotBugs] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciSwingExample/target/site/spotbugsXml.xml
[SpotBugs] -> found 2 issues (skipped 0 duplicates)
[SpotBugs] Successfully processed file 'modules/examples/DciSwingExample/target/site/spotbugsXml.xml'
[SpotBugs] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/ExtendedFinderExample/target/site/spotbugsXml.xml
[SpotBugs] -> found 4 issues (skipped 0 duplicates)
[SpotBugs] Successfully processed file 'modules/examples/ExtendedFinderExample/target/site/spotbugsXml.xml'
[SpotBugs] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/InMemoryFinderExample/target/site/spotbugsXml.xml
[SpotBugs] -> found 0 issues (skipped 0 duplicates)
[SpotBugs] Successfully processed file 'modules/examples/InMemoryFinderExample/target/site/spotbugsXml.xml'
[SpotBugs] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample/target/site/spotbugsXml.xml
[SpotBugs] -> found 1 issue (skipped 0 duplicates)
[SpotBugs] Successfully processed file 'modules/examples/JPAFinderExample/target/site/spotbugsXml.xml'
[SpotBugs] Post processing issues on 'Master' with source code encoding 'UTF-8'
[SpotBugs] Creating SCM blamer to obtain author and commit information for affected files
[SpotBugs] -> No blamer installed yet. You need to install the 'git-forensics' plugin to enable blaming for Git.
[SpotBugs] Resolving file names for all issues in workspace '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace'
[SpotBugs] -> resolved paths in source directory (34 found, 0 not found)
[SpotBugs] Resolving module names from module definitions (build.xml, pom.xml, or Manifest.mf files)
[SpotBugs] -> all issues already have a valid module name
[SpotBugs] Resolving package names (or namespaces) by parsing the affected files
[SpotBugs] -> all affected files already have a valid package name
[SpotBugs] No filter has been set, publishing all 59 issues
[SpotBugs] Creating fingerprints for all affected code blocks to track issues over different builds
[SpotBugs] -> created fingerprints for 0 issues (skipped 59 issues)
[SpotBugs] Copying affected files to Jenkins' build folder '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/builds/15/files-with-issues'
[SpotBugs] -> 18 copied, 0 not in workspace, 0 not-found, 0 with I/O error
[SpotBugs] Repository miner is not configured, skipping repository mining
[SpotBugs] Searching for all files in '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace' that match the pattern '**/target/**/findbugsXml.xml,**/target/**/spotbugsXml.xml'
[SpotBugs] Traversing of symbolic links: enabled
[SpotBugs] -> found 15 files
[SpotBugs] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Actors/target/site/spotbugsXml.xml
[SpotBugs] -> found 3 issues (skipped 0 duplicates)
[SpotBugs] Successfully processed file 'modules/Actors/target/site/spotbugsXml.xml'
[SpotBugs] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/MessageBus/target/site/spotbugsXml.xml
[SpotBugs] -> found 4 issues (skipped 0 duplicates)
[SpotBugs] Successfully processed file 'modules/MessageBus/target/site/spotbugsXml.xml'
[SpotBugs] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Roles/target/site/spotbugsXml.xml
[SpotBugs] -> found 5 issues (skipped 0 duplicates)
[SpotBugs] Successfully processed file 'modules/Roles/target/site/spotbugsXml.xml'
[SpotBugs] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/SpringMessageBus/target/site/spotbugsXml.xml
[SpotBugs] -> found 4 issues (skipped 0 duplicates)
[SpotBugs] Successfully processed file 'modules/SpringMessageBus/target/site/spotbugsXml.xml'
[SpotBugs] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/SpringRoles/target/site/spotbugsXml.xml
[SpotBugs] -> found 8 issues (skipped 1 duplicate)
[SpotBugs] Successfully processed file 'modules/SpringRoles/target/site/spotbugsXml.xml'
[SpotBugs] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/TestUtilities/target/site/spotbugsXml.xml
[SpotBugs] -> found 1 issue (skipped 0 duplicates)
[SpotBugs] Successfully processed file 'modules/TestUtilities/target/site/spotbugsXml.xml'
[SpotBugs] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Utilities/target/site/spotbugsXml.xml
[SpotBugs] -> found 24 issues (skipped 0 duplicates)
[SpotBugs] Successfully processed file 'modules/Utilities/target/site/spotbugsXml.xml'
[SpotBugs] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/Data/target/site/spotbugsXml.xml
[SpotBugs] -> found 1 issue (skipped 0 duplicates)
[SpotBugs] Successfully processed file 'modules/examples/Data/target/site/spotbugsXml.xml'
[SpotBugs] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciDisplayableExample/target/site/spotbugsXml.xml
[SpotBugs] -> found 0 issues (skipped 0 duplicates)
[SpotBugs] Successfully processed file 'modules/examples/DciDisplayableExample/target/site/spotbugsXml.xml'
[SpotBugs] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciMarshalXStreamExample/target/site/spotbugsXml.xml
[SpotBugs] -> found 2 issues (skipped 0 duplicates)
[SpotBugs] Successfully processed file 'modules/examples/DciMarshalXStreamExample/target/site/spotbugsXml.xml'
[SpotBugs] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciPersistenceJpaExample/target/site/spotbugsXml.xml
[SpotBugs] -> found 0 issues (skipped 0 duplicates)
[SpotBugs] Successfully processed file 'modules/examples/DciPersistenceJpaExample/target/site/spotbugsXml.xml'
[SpotBugs] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciSwingExample/target/site/spotbugsXml.xml
[SpotBugs] -> found 2 issues (skipped 0 duplicates)
[SpotBugs] Successfully processed file 'modules/examples/DciSwingExample/target/site/spotbugsXml.xml'
[SpotBugs] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/ExtendedFinderExample/target/site/spotbugsXml.xml
[SpotBugs] -> found 4 issues (skipped 0 duplicates)
[SpotBugs] Successfully processed file 'modules/examples/ExtendedFinderExample/target/site/spotbugsXml.xml'
[SpotBugs] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/InMemoryFinderExample/target/site/spotbugsXml.xml
[SpotBugs] -> found 0 issues (skipped 0 duplicates)
[SpotBugs] Successfully processed file 'modules/examples/InMemoryFinderExample/target/site/spotbugsXml.xml'
[SpotBugs] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample/target/site/spotbugsXml.xml
[SpotBugs] -> found 1 issue (skipped 0 duplicates)
[SpotBugs] Successfully processed file 'modules/examples/JPAFinderExample/target/site/spotbugsXml.xml'
[SpotBugs] Post processing issues on 'Master' with source code encoding 'UTF-8'
[SpotBugs] Creating SCM blamer to obtain author and commit information for affected files
[SpotBugs] -> No blamer installed yet. You need to install the 'git-forensics' plugin to enable blaming for Git.
[SpotBugs] Resolving file names for all issues in workspace '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace'
[SpotBugs] -> resolved paths in source directory (34 found, 0 not found)
[SpotBugs] Resolving module names from module definitions (build.xml, pom.xml, or Manifest.mf files)
[SpotBugs] -> all issues already have a valid module name
[SpotBugs] Resolving package names (or namespaces) by parsing the affected files
[SpotBugs] -> all affected files already have a valid package name
[SpotBugs] No filter has been set, publishing all 59 issues
[SpotBugs] Creating fingerprints for all affected code blocks to track issues over different builds
[SpotBugs] -> created fingerprints for 0 issues (skipped 59 issues)
[SpotBugs] Copying affected files to Jenkins' build folder '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/builds/15/files-with-issues'
[SpotBugs] -> 18 copied, 0 not in workspace, 0 not-found, 0 with I/O error
[SpotBugs] Repository miner is not configured, skipping repository mining
[SpotBugs] Reference build recorder is not configured
[SpotBugs] Obtaining reference build from same job (TheseFoolishThings :: Metrics (feature branches))
[SpotBugs] Using reference build 'TheseFoolishThings_Metrics_branches #13' to compute new, fixed, and outstanding issues
[SpotBugs] Issues delta (vs. reference build): outstanding: 59, new: 0, fixed: 3
[SpotBugs] No quality gates have been set - skipping
[SpotBugs] Health report is disabled - skipping
[SpotBugs] Created analysis result for 59 issues (found 0 new issues, fixed 3 issues)
[SpotBugs] Attaching ResultAction with ID 'spotbugs' to build 'TheseFoolishThings_Metrics_branches #15'.
[Checks API] No suitable checks publisher found.
[PMD] Using default pattern '**/pmd.xml' since user defined pattern is not set
[PMD] Searching for all files in '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace' that match the pattern '**/pmd.xml'
[PMD] Traversing of symbolic links: enabled
[PMD] -> found 32 files
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/archetypes/project/target/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'archetypes/project/target/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/archetypes/project/target/site/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'archetypes/project/target/site/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Actors/target/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/Actors/target/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Actors/target/site/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/Actors/target/site/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/MessageBus/target/pmd.xml
[PMD] -> found 1 issue (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/MessageBus/target/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/MessageBus/target/site/pmd.xml
[PMD] -> found 1 issue (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/MessageBus/target/site/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Roles/target/pmd.xml
[PMD] -> found 1 issue (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/Roles/target/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Roles/target/site/pmd.xml
[PMD] -> found 1 issue (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/Roles/target/site/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/SpringMessageBus/target/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/SpringMessageBus/target/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/SpringMessageBus/target/site/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/SpringMessageBus/target/site/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/SpringRoles/target/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/SpringRoles/target/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/SpringRoles/target/site/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/SpringRoles/target/site/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/TestUtilities/target/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/TestUtilities/target/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/TestUtilities/target/site/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/TestUtilities/target/site/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Utilities/target/pmd.xml
[PMD] -> found 3 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/Utilities/target/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Utilities/target/site/pmd.xml
[PMD] -> found 3 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/Utilities/target/site/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/Data/target/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/examples/Data/target/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/Data/target/site/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/examples/Data/target/site/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciDisplayableExample/target/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/examples/DciDisplayableExample/target/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciDisplayableExample/target/site/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/examples/DciDisplayableExample/target/site/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciMarshalXStreamExample/target/pmd.xml
[PMD] -> found 2 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/examples/DciMarshalXStreamExample/target/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciMarshalXStreamExample/target/site/pmd.xml
[PMD] -> found 2 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/examples/DciMarshalXStreamExample/target/site/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciPersistenceJpaExample/target/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/examples/DciPersistenceJpaExample/target/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciPersistenceJpaExample/target/site/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/examples/DciPersistenceJpaExample/target/site/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciSwingExample/target/pmd.xml
[PMD] -> found 1 issue (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/examples/DciSwingExample/target/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciSwingExample/target/site/pmd.xml
[PMD] -> found 1 issue (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/examples/DciSwingExample/target/site/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/ExtendedFinderExample/target/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/examples/ExtendedFinderExample/target/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/ExtendedFinderExample/target/site/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/examples/ExtendedFinderExample/target/site/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/InMemoryFinderExample/target/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/examples/InMemoryFinderExample/target/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/InMemoryFinderExample/target/site/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/examples/InMemoryFinderExample/target/site/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample/target/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/examples/JPAFinderExample/target/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample/target/site/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/examples/JPAFinderExample/target/site/pmd.xml'
[PMD] Post processing issues on 'Master' with source code encoding 'UTF-8'
[PMD] Creating SCM blamer to obtain author and commit information for affected files
[PMD] -> No blamer installed yet. You need to install the 'git-forensics' plugin to enable blaming for Git.
[PMD] Resolving file names for all issues in workspace '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace'
[PMD] -> resolved paths in source directory (7 found, 0 not found)
[PMD] Resolving module names from module definitions (build.xml, pom.xml, or Manifest.mf files)
[PMD] -> resolved module names for 16 issues
[PMD] Resolving package names (or namespaces) by parsing the affected files
[PMD] -> all affected files already have a valid package name
[PMD] No filter has been set, publishing all 8 issues
[PMD] Creating fingerprints for all affected code blocks to track issues over different builds
[PMD] -> created fingerprints for 8 issues (skipped 0 issues)
[PMD] Copying affected files to Jenkins' build folder '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/builds/15/files-with-issues'
[PMD] -> 3 copied, 0 not in workspace, 0 not-found, 0 with I/O error
[PMD] Repository miner is not configured, skipping repository mining
[PMD] Searching for all files in '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace' that match the pattern '**/pmd.xml'
[PMD] Traversing of symbolic links: enabled
[PMD] -> found 32 files
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/archetypes/project/target/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'archetypes/project/target/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/archetypes/project/target/site/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'archetypes/project/target/site/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Actors/target/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/Actors/target/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Actors/target/site/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/Actors/target/site/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/MessageBus/target/pmd.xml
[PMD] -> found 1 issue (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/MessageBus/target/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/MessageBus/target/site/pmd.xml
[PMD] -> found 1 issue (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/MessageBus/target/site/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Roles/target/pmd.xml
[PMD] -> found 1 issue (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/Roles/target/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Roles/target/site/pmd.xml
[PMD] -> found 1 issue (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/Roles/target/site/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/SpringMessageBus/target/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/SpringMessageBus/target/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/SpringMessageBus/target/site/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/SpringMessageBus/target/site/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/SpringRoles/target/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/SpringRoles/target/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/SpringRoles/target/site/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/SpringRoles/target/site/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/TestUtilities/target/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/TestUtilities/target/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/TestUtilities/target/site/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/TestUtilities/target/site/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Utilities/target/pmd.xml
[PMD] -> found 3 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/Utilities/target/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/Utilities/target/site/pmd.xml
[PMD] -> found 3 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/Utilities/target/site/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/Data/target/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/examples/Data/target/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/Data/target/site/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/examples/Data/target/site/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciDisplayableExample/target/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/examples/DciDisplayableExample/target/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciDisplayableExample/target/site/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/examples/DciDisplayableExample/target/site/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciMarshalXStreamExample/target/pmd.xml
[PMD] -> found 2 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/examples/DciMarshalXStreamExample/target/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciMarshalXStreamExample/target/site/pmd.xml
[PMD] -> found 2 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/examples/DciMarshalXStreamExample/target/site/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciPersistenceJpaExample/target/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/examples/DciPersistenceJpaExample/target/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciPersistenceJpaExample/target/site/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/examples/DciPersistenceJpaExample/target/site/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciSwingExample/target/pmd.xml
[PMD] -> found 1 issue (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/examples/DciSwingExample/target/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/DciSwingExample/target/site/pmd.xml
[PMD] -> found 1 issue (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/examples/DciSwingExample/target/site/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/ExtendedFinderExample/target/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/examples/ExtendedFinderExample/target/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/ExtendedFinderExample/target/site/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/examples/ExtendedFinderExample/target/site/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/InMemoryFinderExample/target/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/examples/InMemoryFinderExample/target/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/InMemoryFinderExample/target/site/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/examples/InMemoryFinderExample/target/site/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample/target/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/examples/JPAFinderExample/target/pmd.xml'
[PMD] Successfully parsed file /var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace/modules/examples/JPAFinderExample/target/site/pmd.xml
[PMD] -> found 0 issues (skipped 0 duplicates)
[PMD] Successfully processed file 'modules/examples/JPAFinderExample/target/site/pmd.xml'
[PMD] Post processing issues on 'Master' with source code encoding 'UTF-8'
[PMD] Creating SCM blamer to obtain author and commit information for affected files
[PMD] -> No blamer installed yet. You need to install the 'git-forensics' plugin to enable blaming for Git.
[PMD] Resolving file names for all issues in workspace '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace'
[PMD] -> resolved paths in source directory (7 found, 0 not found)
[PMD] Resolving module names from module definitions (build.xml, pom.xml, or Manifest.mf files)
[PMD] -> resolved module names for 16 issues
[PMD] Resolving package names (or namespaces) by parsing the affected files
[PMD] -> all affected files already have a valid package name
[PMD] No filter has been set, publishing all 8 issues
[PMD] Creating fingerprints for all affected code blocks to track issues over different builds
[PMD] -> created fingerprints for 8 issues (skipped 0 issues)
[PMD] Copying affected files to Jenkins' build folder '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/builds/15/files-with-issues'
[PMD] -> 3 copied, 0 not in workspace, 0 not-found, 0 with I/O error
[PMD] Repository miner is not configured, skipping repository mining
[PMD] Reference build recorder is not configured
[PMD] Obtaining reference build from same job (TheseFoolishThings :: Metrics (feature branches))
[PMD] Using reference build 'TheseFoolishThings_Metrics_branches #13' to compute new, fixed, and outstanding issues
[PMD] Issues delta (vs. reference build): outstanding: 6, new: 2, fixed: 0
[PMD] No quality gates have been set - skipping
[PMD] Health report is disabled - skipping
[PMD] Created analysis result for 8 issues (found 2 new issues, fixed 0 issues)
[PMD] Attaching ResultAction with ID 'pmd' to build 'TheseFoolishThings_Metrics_branches #15'.
[Checks API] No suitable checks publisher found.
[Open Tasks Scanner] Searching for files in workspace '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace' that match the include pattern '' and exclude pattern '**/target/**/*'
[Open Tasks Scanner] -> found 435 files that will be scanned
[Open Tasks Scanner] Using the following tasks patterns:
-> High: ^.*(\bFIXME\b)(.*)$
-> Normal: ^.*(\bTODO\b)(.*)$

[Open Tasks Scanner] Scanning all 435 files for open tasks
[Open Tasks Scanner] Found a total of 55 open tasks
[Open Tasks Scanner] -> FIXME: 34 open tasks
[Open Tasks Scanner] -> TODO: 21 open tasks
[Open Tasks Scanner] Post processing issues on 'Master' with source code encoding 'UTF-8'
[Open Tasks Scanner] Creating SCM blamer to obtain author and commit information for affected files
[Open Tasks Scanner] -> No blamer installed yet. You need to install the 'git-forensics' plugin to enable blaming for Git.
[Open Tasks Scanner] Resolving file names for all issues in workspace '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace'
[Open Tasks Scanner] -> resolved paths in source directory (40 found, 0 not found)
[Open Tasks Scanner] Resolving module names from module definitions (build.xml, pom.xml, or Manifest.mf files)
[Open Tasks Scanner] -> resolved module names for 55 issues
[Open Tasks Scanner] Resolving package names (or namespaces) by parsing the affected files
[Open Tasks Scanner] -> resolved package names of 40 affected files
[Open Tasks Scanner] No filter has been set, publishing all 55 issues
[Open Tasks Scanner] Creating fingerprints for all affected code blocks to track issues over different builds
[Open Tasks Scanner] -> created fingerprints for 55 issues (skipped 0 issues)
[Open Tasks Scanner] Copying affected files to Jenkins' build folder '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/builds/15/files-with-issues'
[Open Tasks Scanner] -> 18 copied, 0 not in workspace, 0 not-found, 0 with I/O error
[Open Tasks Scanner] Repository miner is not configured, skipping repository mining
[Open Tasks Scanner] Searching for files in workspace '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace' that match the include pattern '' and exclude pattern '**/target/**/*'
[Open Tasks Scanner] -> found 435 files that will be scanned
[Open Tasks Scanner] Using the following tasks patterns:
-> High: ^.*(\bFIXME\b)(.*)$
-> Normal: ^.*(\bTODO\b)(.*)$

[Open Tasks Scanner] Scanning all 435 files for open tasks
[Open Tasks Scanner] Found a total of 55 open tasks
[Open Tasks Scanner] -> FIXME: 34 open tasks
[Open Tasks Scanner] -> TODO: 21 open tasks
[Open Tasks Scanner] Post processing issues on 'Master' with source code encoding 'UTF-8'
[Open Tasks Scanner] Creating SCM blamer to obtain author and commit information for affected files
[Open Tasks Scanner] -> No blamer installed yet. You need to install the 'git-forensics' plugin to enable blaming for Git.
[Open Tasks Scanner] Resolving file names for all issues in workspace '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace'
[Open Tasks Scanner] -> resolved paths in source directory (40 found, 0 not found)
[Open Tasks Scanner] Resolving module names from module definitions (build.xml, pom.xml, or Manifest.mf files)
[Open Tasks Scanner] -> resolved module names for 55 issues
[Open Tasks Scanner] Resolving package names (or namespaces) by parsing the affected files
[Open Tasks Scanner] -> resolved package names of 40 affected files
[Open Tasks Scanner] No filter has been set, publishing all 55 issues
[Open Tasks Scanner] Creating fingerprints for all affected code blocks to track issues over different builds
[Open Tasks Scanner] -> created fingerprints for 55 issues (skipped 0 issues)
[Open Tasks Scanner] Searching for files in workspace '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace' that match the include pattern '' and exclude pattern '**/target/**/*'
[Open Tasks Scanner] -> found 435 files that will be scanned
[Open Tasks Scanner] Using the following tasks patterns:
-> High: ^.*(\bFIXME\b)(.*)$
-> Normal: ^.*(\bTODO\b)(.*)$

[Open Tasks Scanner] Scanning all 435 files for open tasks
[Open Tasks Scanner] Found a total of 55 open tasks
[Open Tasks Scanner] -> FIXME: 34 open tasks
[Open Tasks Scanner] -> TODO: 21 open tasks
[Open Tasks Scanner] Post processing issues on 'Master' with source code encoding 'UTF-8'
[Open Tasks Scanner] Creating SCM blamer to obtain author and commit information for affected files
[Open Tasks Scanner] -> No blamer installed yet. You need to install the 'git-forensics' plugin to enable blaming for Git.
[Open Tasks Scanner] Resolving file names for all issues in workspace '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace'
[Open Tasks Scanner] -> resolved paths in source directory (40 found, 0 not found)
[Open Tasks Scanner] Resolving module names from module definitions (build.xml, pom.xml, or Manifest.mf files)
[Open Tasks Scanner] -> resolved module names for 55 issues
[Open Tasks Scanner] Resolving package names (or namespaces) by parsing the affected files
[Open Tasks Scanner] -> resolved package names of 40 affected files
[Open Tasks Scanner] No filter has been set, publishing all 55 issues
[Open Tasks Scanner] Creating fingerprints for all affected code blocks to track issues over different builds
[Open Tasks Scanner] -> created fingerprints for 55 issues (skipped 0 issues)
[Open Tasks Scanner] Copying affected files to Jenkins' build folder '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/builds/15/files-with-issues'
[Open Tasks Scanner] -> 18 copied, 0 not in workspace, 0 not-found, 0 with I/O error
[Open Tasks Scanner] Repository miner is not configured, skipping repository mining
[Open Tasks Scanner] Reference build recorder is not configured
[Open Tasks Scanner] Obtaining reference build from same job (TheseFoolishThings :: Metrics (feature branches))
[Open Tasks Scanner] Using reference build 'TheseFoolishThings_Metrics_branches #13' to compute new, fixed, and outstanding issues
[Open Tasks Scanner] Issues delta (vs. reference build): outstanding: 53, new: 2, fixed: 4
[Open Tasks Scanner] No quality gates have been set - skipping
[Open Tasks Scanner] Health report is disabled - skipping
[Open Tasks Scanner] Created analysis result for 55 issues (found 2 new issues, fixed 4 issues)
[Open Tasks Scanner] Attaching ResultAction with ID 'open-tasks' to build 'TheseFoolishThings_Metrics_branches #15'.
[Checks API] No suitable checks publisher found.
[JavaDoc] Parsing console log (workspace: '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace')
[JavaDoc] -> found 0 issues (skipped 0 duplicates)
[JavaDoc] Parsing console log (workspace: '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace')
[JavaDoc] -> found 0 issues (skipped 0 duplicates)
[JavaDoc] Successfully parsed console log
[JavaDoc] -> found 0 issues (skipped 0 duplicates)
[JavaDoc] Parsing console log (workspace: '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace')
[JavaDoc] Skipping post processing
[JavaDoc] No filter has been set, publishing all 0 issues
[JavaDoc] Repository miner is not configured, skipping repository mining
[JavaDoc] Successfully parsed console log
[JavaDoc] -> found 0 issues (skipped 0 duplicates)
[JavaDoc] Successfully parsed console log
[JavaDoc] -> found 0 issues (skipped 0 duplicates)
[JavaDoc] Successfully parsed console log
[JavaDoc] -> found 0 issues (skipped 0 duplicates)
[JavaDoc] Successfully parsed console log
[JavaDoc] -> found 0 issues (skipped 0 duplicates)
[JavaDoc] Parsing console log (workspace: '/var/jenkins_home/jobs/TheseFoolishThings_Metrics_branches/workspace')
[JavaDoc] Skipping post processing
[JavaDoc] No filter has been set, publishing all 0 issues
[JavaDoc] Repository miner is not configured, skipping repository mining
[JavaDoc] Reference build recorder is not configured
[JavaDoc] Obtaining reference build from same job (TheseFoolishThings :: Metrics (feature branches))
[JavaDoc] Using reference build 'TheseFoolishThings_Metrics_branches #13' to compute new, fixed, and outstanding issues
[JavaDoc] Issues delta (vs. reference build): outstanding: 0, new: 0, fixed: 0
[JavaDoc] No quality gates have been set - skipping
[JavaDoc] Health report is disabled - skipping
[JavaDoc] Created analysis result for 0 issues (found 0 new issues, fixed 0 issues)
[JavaDoc] Attaching ResultAction with ID 'javadoc-warnings' to build 'TheseFoolishThings_Metrics_branches #15'.
[Checks API] No suitable checks publisher found.
Started calculate disk usage of build
Finished Calculation of disk usage of build in 0 seconds
Started calculate disk usage of workspace
Finished Calculation of disk usage of workspace in 0 seconds
Finished: UNSTABLE