You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@maven.apache.org by Apache Jenkins Server <je...@builds.apache.org> on 2016/08/11 19:20:34 UTC

Build failed in Jenkins: maven-plugin-tools-m2 #203

See <https://builds.apache.org/job/maven-plugin-tools-m2/203/changes>

Changes:

[Robert Scholte] [MPLUGIN-305] MojoAnnotationsScanner should have better control over dependency scanning
Improve documentation

------------------------------------------
[...truncated 2528 lines...]
       Setting it to false helps with some problems caused by conflicts between xml parsers in the classpath and the
       Java 5 provider parser.]]]], parameter[attributes={}; value=[name[attributes={}; value=[classpathDependencyExcludes]], type[attributes={}; value=[java.lang.String[]]], since[attributes={}; value=[2.6]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[List of dependencies to exclude from the test classpath. Each dependency string must follow the format
       <i>groupId:artifactId</i>. For example: <i>org.acme:project-a</i>]]]], parameter[attributes={}; value=[name[attributes={}; value=[classpathDependencyScopeExclude]], type[attributes={}; value=[java.lang.String]], since[attributes={}; value=[2.6]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[A dependency scope to exclude from the test classpath. The scope should be one of the scopes defined by
       org.apache.maven.artifact.Artifact. This includes the following:
       <p/>
       <ul>
       <li><i>compile</i> - system, provided, compile
       <li><i>runtime</i> - compile, runtime
       <li><i>compile+runtime</i> - system, provided, compile, runtime
       <li><i>runtime+system</i> - system, compile, runtime
       <li><i>test</i> - system, provided, compile, runtime, test
       </ul>]]]], parameter[attributes={}; value=[name[attributes={}; value=[dependenciesToScan]], type[attributes={}; value=[java.lang.String[]]], since[attributes={}; value=[2.15]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[List of dependencies to scan for test classes to include in the test run.
       The child elements of this element must be &lt;dependency&gt; elements, and the
       contents of each of these elements must be a string which follows the format:
        
       <i>groupId:artifactId</i>. For example: <i>org.acme:project-a</i>.]]]], parameter[attributes={}; value=[name[attributes={}; value=[disableXmlReport]], type[attributes={}; value=[boolean]], since[attributes={}; value=[2.2]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[Flag to disable the generation of report files in xml format.]]]], parameter[attributes={}; value=[name[attributes={}; value=[enableAssertions]], type[attributes={}; value=[boolean]], since[attributes={}; value=[2.3.1]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[By default, Surefire enables JVM assertions for the execution of your test cases. To disable the assertions, set
       this flag to "false".]]]], parameter[attributes={}; value=[name[attributes={}; value=[environmentVariables]], type[attributes={}; value=[java.util.Map]], since[attributes={}; value=[2.1.3]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[Additional environment variables to set on the command line.]]]], parameter[attributes={}; value=[name[attributes={}; value=[excludedGroups]], type[attributes={}; value=[java.lang.String]], since[attributes={}; value=[2.2]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[(TestNG/JUnit47 provider with JUnit4.8+ only) Excluded groups. Any methods/classes/etc with one of the groups
       specified in this list will specifically not be run.<br/>
       For JUnit, this parameter forces the use of the 4.7 provider<br/>
       This parameter is ignored if the <code>suiteXmlFiles</code> parameter is specified.<br/>
       Since version 2.18.1 and JUnit 4.12, the <em>@Category<em> annotation type is automatically inherited from
       superclasses, see <em>@java.lang.annotation.Inherited</em>. Make sure that test class inheritance still makes
       sense together with <em>@Category<em> annotation of the JUnit 4.12 or higher appeared in superclass.]]]], parameter[attributes={}; value=[name[attributes={}; value=[excludes]], type[attributes={}; value=[java.util.List]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[A list of &lt;exclude> elements specifying the tests (by pattern) that should be excluded in testing. When not
       specified and when the <code>test</code> parameter is not specified, the default excludes will be <code><br/>
       &lt;excludes><br/>
       &nbsp;&lt;exclude>**&#47;*$*&lt;/exclude><br/>
       &lt;/excludes><br/>
       </code> (which excludes all inner classes).<br>
       This parameter is ignored if the TestNG <code>suiteXmlFiles</code> parameter is specified.
       <p/>
       Each exclude item may also contain a comma-separated sublist of items, which will be treated as multiple
       &nbsp;&lt;exclude> entries.<br/>
       Since 2.19 a complex syntax is supported in one parameter (JUnit 4, JUnit 4.7+, TestNG):<br/>
       <exclude>%regex[pkg.*Slow.*.class], Unstable*</exclude><br/>
       <br/>
       <em>Notice that</em> these values are relative to the directory containing generated test classes of the project
       being tested. This directory is declared by the parameter <code>testClassesDirectory</code> which defaults
       to the POM property <code>${project.build.testOutputDirectory}</code>, typically <em>src/test/java</em>
       unless overridden.]]]], parameter[attributes={}; value=[name[attributes={}; value=[failIfNoTests]], type[attributes={}; value=[java.lang.Boolean]], since[attributes={}; value=[2.4]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[Set this to "true" to cause a failure if there are no tests to run. Defaults to "false".]]]], parameter[attributes={}; value=[name[attributes={}; value=[forkCount]], type[attributes={}; value=[java.lang.String]], since[attributes={}; value=[2.14]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[Option to specify the number of VMs to fork in parallel in order to execute the tests. When terminated with "C",
       the number part is multiplied with the number of CPU cores. Floating point value are only accepted together with
       "C". If set to "0", no VM is forked and all tests are executed within the main process.<br/>
       <br/>
       Example values: "1.5C", "4"<br/>
       <br/>
       The system properties and the <code>argLine</code> of the forked processes may contain the place holder string
       <code>${surefire.forkNumber}</code>, which is replaced with a fixed number for each of the parallel forks,
       ranging from <code>1</code> to the effective value of <code>forkCount</code> times the maximum number of parallel
       Surefire executions in maven parallel builds, i.e. the effective value of the <code>-T</code> command line
       argument of maven core.]]]], parameter[attributes={}; value=[name[attributes={}; value=[forkMode]], type[attributes={}; value=[java.lang.String]], since[attributes={}; value=[2.1]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[<strong>DEPRECATED</strong> since version 2.14. Use <code>forkCount</code> and <code>reuseForks</code> instead.
       <br/>
       <br/>
       Option to specify the forking mode. Can be "never", "once", "always", "perthread". "none" and "pertest" are also
       accepted for backwards compatibility. "always" forks for each test-class. "perthread" will create
       <code>threadCount</code> parallel forks, each executing one test-class. See also parameter
       <code>reuseForks</code>.<br/>]]]], parameter[attributes={}; value=[name[attributes={}; value=[groups]], type[attributes={}; value=[java.lang.String]], since[attributes={}; value=[2.2]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[(TestNG/JUnit47 provider with JUnit4.8+ only) Groups for this test. Only classes/methods/etc decorated with one
       of the groups specified here will be included in test run, if specified.<br/>
       For JUnit, this parameter forces the use of the 4.7 provider<br/>
       This parameter is ignored if the <code>suiteXmlFiles</code> parameter is specified.<br/>
       Since version 2.18.1 and JUnit 4.12, the <em>@Category<em> annotation type is automatically inherited from
       superclasses, see <em>@java.lang.annotation.Inherited</em>. Make sure that test class inheritance still makes
       sense together with <em>@Category<em> annotation of the JUnit 4.12 or higher appeared in superclass.]]]], parameter[attributes={}; value=[name[attributes={}; value=[junitArtifactName]], type[attributes={}; value=[java.lang.String]], since[attributes={}; value=[2.3.1]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[Allows you to specify the name of the JUnit artifact. If not set, <code>junit:junit</code> will be used.]]]], parameter[attributes={}; value=[name[attributes={}; value=[jvm]], type[attributes={}; value=[java.lang.String]], since[attributes={}; value=[2.1]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[Option to specify the jvm (or path to the java executable) to use with the forking options. For the default, the
       jvm will be a new instance of the same VM as the one used to run Maven. JVM settings are not inherited from
       MAVEN_OPTS.]]]], parameter[attributes={}; value=[name[attributes={}; value=[localRepository]], type[attributes={}; value=[org.apache.maven.artifact.repository.ArtifactRepository]], required[attributes={}; value=[true]], editable[attributes={}; value=[false]], description[attributes={}; value=[ArtifactRepository of the localRepository. To obtain the directory of localRepository in unit tests use
       System.getProperty("localRepository").]]]], parameter[attributes={}; value=[name[attributes={}; value=[objectFactory]], type[attributes={}; value=[java.lang.String]], since[attributes={}; value=[2.5]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[(TestNG only) Define the factory class used to create all test instances.]]]], parameter[attributes={}; value=[name[attributes={}; value=[parallel]], type[attributes={}; value=[java.lang.String]], since[attributes={}; value=[2.2]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[(TestNG provider) When you use the <code>parallel</code> attribute, TestNG will try to run all your test methods
       in separate threads, except for methods that depend on each other, which will be run in the same thread in order
       to respect their order of execution.
       <p/>
       (JUnit 4.7 provider) Supports values "classes"/"methods"/"both" to run in separate threads, as controlled by
       <code>threadCount</code>.<br/>
       <br/>
       Since version 2.16 (JUnit 4.7 provider), the value "both" is <strong>DEPRECATED</strong>.
       Use <strong>"classesAndMethods"</strong> instead.<br/>
       <br/>
       Since version 2.16 (JUnit 4.7 provider), additional vales are available
       "suites"/"suitesAndClasses"/"suitesAndMethods"/"classesAndMethods"/"all".]]]], parameter[attributes={}; value=[name[attributes={}; value=[parallelMavenExecution]], type[attributes={}; value=[java.lang.Boolean]], required[attributes={}; value=[false]], editable[attributes={}; value=[false]], description[attributes={}; value=[]]]], parameter[attributes={}; value=[name[attributes={}; value=[parallelOptimized]], type[attributes={}; value=[boolean]], since[attributes={}; value=[2.17]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[(JUnit 4.7 / provider only) The thread counts do not exceed the number of parallel suite, class runners and
       average number of methods per class if set to <strong>true</strong>.
       <p/>
       True by default.]]]], parameter[attributes={}; value=[name[attributes={}; value=[perCoreThreadCount]], type[attributes={}; value=[boolean]], since[attributes={}; value=[2.5]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[(JUnit 4.7 provider) Indicates that threadCount, threadCountSuites, threadCountClasses, threadCountMethods
       are per cpu core.]]]], parameter[attributes={}; value=[name[attributes={}; value=[pluginArtifactMap]], type[attributes={}; value=[java.util.Map]], required[attributes={}; value=[true]], editable[attributes={}; value=[false]], description[attributes={}; value=[Map of plugin artifacts.]]]], parameter[attributes={}; value=[name[attributes={}; value=[pluginDescriptor]], type[attributes={}; value=[org.apache.maven.plugin.descriptor.PluginDescriptor]], since[attributes={}; value=[2.12]], required[attributes={}; value=[false]], editable[attributes={}; value=[false]], description[attributes={}; value=[Information about this plugin, mainly used to lookup this plugin's configuration from the currently executing
       project.]]]], parameter[attributes={}; value=[name[attributes={}; value=[projectArtifactMap]], type[attributes={}; value=[java.util.Map]], required[attributes={}; value=[true]], editable[attributes={}; value=[false]], description[attributes={}; value=[Map of project artifacts.]]]], parameter[attributes={}; value=[name[attributes={}; value=[properties]], type[attributes={}; value=[java.util.Properties]], since[attributes={}; value=[2.4]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[List of properties for configuring all TestNG related configurations. This is the new preferred method of
       configuring TestNG.]]]], parameter[attributes={}; value=[name[attributes={}; value=[redirectTestOutputToFile]], type[attributes={}; value=[boolean]], since[attributes={}; value=[2.3]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[Set this to "true" to redirect the unit test standard output to a file (found in
       reportsDirectory/testName-output.txt).]]]], parameter[attributes={}; value=[name[attributes={}; value=[remoteRepositories]], type[attributes={}; value=[java.util.List]], since[attributes={}; value=[2.2]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[The remote plugin repositories declared in the POM.]]]], parameter[attributes={}; value=[name[attributes={}; value=[reportNameSuffix]], type[attributes={}; value=[java.lang.String]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[Add custom text into report filename: TEST-testClassName-reportNameSuffix.xml,
       testClassName-reportNameSuffix.txt and testClassName-reportNameSuffix-output.txt.
       File TEST-testClassName-reportNameSuffix.xml has changed attributes 'testsuite'--'name'
       and 'testcase'--'classname' - reportNameSuffix is added to the attribute value.]]]], parameter[attributes={}; value=[name[attributes={}; value=[reuseForks]], type[attributes={}; value=[boolean]], since[attributes={}; value=[2.13]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[Indicates if forked VMs can be reused. If set to "false", a new VM is forked for each test class to be executed.
       If set to "true", up to <code>forkCount</code> VMs will be forked and then reused to execute all tests.]]]], parameter[attributes={}; value=[name[attributes={}; value=[skip]], type[attributes={}; value=[boolean]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[Set this to "true" to bypass unit tests entirely. Its use is NOT RECOMMENDED, especially if you enable it using
       the "maven.test.skip" property, because maven.test.skip disables both running the tests and compiling the tests.
       Consider using the <code>skipTests</code> parameter instead.]]]], parameter[attributes={}; value=[name[attributes={}; value=[skipExec]], type[attributes={}; value=[boolean]], since[attributes={}; value=[2.3]], deprecated[attributes={}; value=[Use skipTests instead.]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[This old parameter is just like <code>skipTests</code>, but bound to the old property "maven.test.skip.exec".]]]], parameter[attributes={}; value=[name[attributes={}; value=[skipTests]], type[attributes={}; value=[boolean]], since[attributes={}; value=[2.4]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[Set this to "true" to skip running tests, but still compile them. Its use is NOT RECOMMENDED, but quite
       convenient on occasion.]]]], parameter[attributes={}; value=[name[attributes={}; value=[systemProperties]], type[attributes={}; value=[java.util.Properties]], deprecated[attributes={}; value=[Use systemPropertyVariables instead.]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[List of System properties to pass to the JUnit tests.]]]], parameter[attributes={}; value=[name[attributes={}; value=[systemPropertiesFile]], type[attributes={}; value=[java.io.File]], since[attributes={}; value=[2.8.2]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[List of System properties, loaded from a file, to pass to the JUnit tests.]]]], parameter[attributes={}; value=[name[attributes={}; value=[systemPropertyVariables]], type[attributes={}; value=[java.util.Map]], since[attributes={}; value=[2.5]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[List of System properties to pass to the JUnit tests.]]]], parameter[attributes={}; value=[name[attributes={}; value=[testClassesDirectory]], type[attributes={}; value=[java.io.File]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[The directory containing generated test classes of the project being tested. This will be included at the
       beginning of the test classpath. *]]]], parameter[attributes={}; value=[name[attributes={}; value=[testNGArtifactName]], type[attributes={}; value=[java.lang.String]], since[attributes={}; value=[2.3.1]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[Allows you to specify the name of the TestNG artifact. If not set, <code>org.testng:testng</code> will be used.]]]], parameter[attributes={}; value=[name[attributes={}; value=[testSourceDirectory]], type[attributes={}; value=[java.io.File]], since[attributes={}; value=[2.2]], required[attributes={}; value=[true]], editable[attributes={}; value=[true]], description[attributes={}; value=[The test source directory containing test class sources.]]]], parameter[attributes={}; value=[name[attributes={}; value=[threadCount]], type[attributes={}; value=[int]], since[attributes={}; value=[2.2]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[(TestNG/JUnit 4.7 provider) The attribute thread-count allows you to specify how many threads should be
       allocated for this execution. Only makes sense to use in conjunction with the <code>parallel</code> parameter.]]]], parameter[attributes={}; value=[name[attributes={}; value=[threadCountClasses]], type[attributes={}; value=[int]], since[attributes={}; value=[2.16]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[(JUnit 4.7 provider) This attribute allows you to specify the concurrency in test classes, i.e.:
       <ul>
        <li>number of concurrent classes if <code>threadCount</code> is 0 or unspecified</li>
        <li>limited classes concurrency if <code>useUnlimitedThreads</code> is set to <strong>true</strong></li>
        <li>if <code>threadCount</code> and certain thread-count parameters are &gt; 0 for <code>parallel</code>, the
        concurrency is computed from ratio. For instance parallel=all and the ratio between
            <code>threadCountSuites</code>:<em>threadCountClasses</em>:<code>threadCountMethods</code> is
            2:<em>3</em>:5, there is 30% of <code>threadCount</code> in concurrent classes.</li>
        <li>as in the previous case but without this leaf thread-count. Example: parallel=suitesAndClasses,
        threadCount=16, threadCountSuites=5, threadCountClasses is unspecified leaf, the number of concurrent classes
        is varying from &gt;= 11 to 14 or 15. The threadCountSuites become number of threads.
        </li>
       </ul>
        
       Only makes sense to use in conjunction with the <code>parallel</code> parameter.
       The default value <code>0</code> behaves same as unspecified one.]]]], parameter[attributes={}; value=[name[attributes={}; value=[threadCountMethods]], type[attributes={}; value=[int]], since[attributes={}; value=[2.16]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[(JUnit 4.7 provider) This attribute allows you to specify the concurrency in test methods, i.e.:
       <ul>
       <li>number of concurrent methods if <code>threadCount</code> is 0 or unspecified</li>
       <li>limited concurrency of methods if <code>useUnlimitedThreads</code> is set to <strong>true</strong></li>
       <li>if <code>threadCount</code> and certain thread-count parameters are &gt; 0 for <code>parallel</code>, the
       concurrency is computed from ratio. For instance parallel=all and the ratio between
       <code>threadCountSuites</code>:<code>threadCountClasses</code>:<em>threadCountMethods</em> is 2:3:<em>5</em>,
       there is 50% of <code>threadCount</code> in concurrent methods.</li>
       <li>as in the previous case but without this leaf thread-count. Example: parallel=all, threadCount=16,
       threadCountSuites=2, threadCountClasses=3, but threadCountMethods is unspecified leaf, the number of concurrent
       methods is varying from &gt;= 11 to 14 or 15. The threadCountSuites and threadCountClasses become number of
       threads.</li>
       </ul>
       Only makes sense to use in conjunction with the <code>parallel</code> parameter. The default value <code>0</code>
       behaves same as unspecified one.]]]], parameter[attributes={}; value=[name[attributes={}; value=[threadCountSuites]], type[attributes={}; value=[int]], since[attributes={}; value=[2.16]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[(JUnit 4.7 provider) This attribute allows you to specify the concurrency in test suites, i.e.:
       <ul>
        <li>number of concurrent suites if <code>threadCount</code> is 0 or unspecified</li>
        <li>limited suites concurrency if <code>useUnlimitedThreads</code> is set to <strong>true</strong></li>
        <li>if <code>threadCount</code> and certain thread-count parameters are &gt; 0 for <code>parallel</code>, the
        concurrency is computed from ratio. For instance parallel=all and the ratio between
            <em>threadCountSuites</em>:<code>threadCountClasses</code>:<code>threadCountMethods</code> is
            <em>2</em>:3:5, there is 20% of <code>threadCount</code> in concurrent suites.</li>
       </ul>
        
       Only makes sense to use in conjunction with the <code>parallel</code> parameter.
       The default value <code>0</code> behaves same as unspecified one.]]]], parameter[attributes={}; value=[name[attributes={}; value=[trimStackTrace]], type[attributes={}; value=[boolean]], since[attributes={}; value=[2.2]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[Whether to trim the stack trace in the reports to just the lines within the test, or show the full trace.]]]], parameter[attributes={}; value=[name[attributes={}; value=[useUnlimitedThreads]], type[attributes={}; value=[boolean]], since[attributes={}; value=[2.5]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[(JUnit 4.7 provider) Indicates that the thread pool will be unlimited. The <code>parallel</code> parameter and
       the actual number of classes/methods will decide. Setting this to "true" effectively disables
       <code>perCoreThreadCount</code> and <code>threadCount</code>. Defaults to "false".]]]], parameter[attributes={}; value=[name[attributes={}; value=[workingDirectory]], type[attributes={}; value=[java.io.File]], since[attributes={}; value=[2.1.3]], required[attributes={}; value=[false]], editable[attributes={}; value=[true]], description[attributes={}; value=[Command line working directory.]]]], parameter[attributes={}; value=[name[attributes={}; value=[project]], type[attributes={}; value=[org.apache.maven.project.MavenProject]], required[attributes={}; value=[true]], editable[attributes={}; value=[false]], description[attributes={}; value=[]]]], parameter[attributes={}; value=[name[attributes={}; value=[session]], type[attributes={}; value=[org.apache.maven.execution.MavenSession]], required[attributes={}; value=[true]], editable[attributes={}; value=[false]], description[attributes={}; value=[]]]]]], configuration[attributes={}; value=[additionalClasspathElements[attributes={implementation=java.lang.String[]}; value=[${maven.test.additionalClasspath}]], argLine[attributes={implementation=java.lang.String}; value=[${argLine}]], basedir[attributes={implementation=java.io.File, default-value=${basedir}}; value=[]], childDelegation[attributes={implementation=boolean, default-value=false}; value=[${childDelegation}]], classpathDependencyExcludes[attributes={implementation=java.lang.String[]}; value=[${maven.test.dependency.excludes}]], dependenciesToScan[attributes={implementation=java.lang.String[]}; value=[${dependenciesToScan}]], disableXmlReport[attributes={implementation=boolean, default-value=false}; value=[${disableXmlReport}]], enableAssertions[attributes={implementation=boolean, default-value=true}; value=[${enableAssertions}]], excludedGroups[attributes={implementation=java.lang.String}; value=[${excludedGroups}]], failIfNoTests[attributes={implementation=java.lang.Boolean}; value=[${failIfNoTests}]], forkCount[attributes={implementation=java.lang.String, default-value=1}; value=[${forkCount}]], forkMode[attributes={implementation=java.lang.String, default-value=once}; value=[${forkMode}]], groups[attributes={implementation=java.lang.String}; value=[${groups}]], junitArtifactName[attributes={implementation=java.lang.String, default-value=junit:junit}; value=[${junitArtifactName}]], jvm[attributes={implementation=java.lang.String}; value=[${jvm}]], localRepository[attributes={implementation=org.apache.maven.artifact.repository.ArtifactRepository, default-value=${localRepository}}; value=[]], objectFactory[attributes={implementation=java.lang.String}; value=[${objectFactory}]], parallel[attributes={implementation=java.lang.String}; value=[${parallel}]], parallelMavenExecution[attributes={implementation=java.lang.Boolean, default-value=${session.parallel}}; value=[]], parallelOptimized[attributes={implementation=boolean, default-value=true}; value=[${parallelOptimized}]], perCoreThreadCount[attributes={implementation=boolean, default-value=true}; value=[${perCoreThreadCount}]], pluginArtifactMap[attributes={implementation=java.util.Map}; value=[${plugin.artifactMap}]], pluginDescriptor[attributes={implementation=org.apache.maven.plugin.descriptor.PluginDescriptor, default-value=${plugin}}; value=[]], projectArtifactMap[attributes={implementation=java.util.Map}; value=[${project.artifactMap}]], redirectTestOutputToFile[attributes={implementation=boolean, default-value=false}; value=[${maven.test.redirectTestOutputToFile}]], remoteRepositories[attributes={implementation=java.util.List, default-value=${project.pluginArtifactRepositories}}; value=[]], reportNameSuffix[attributes={implementation=java.lang.String, default-value=}; value=[${surefire.reportNameSuffix}]], reuseForks[attributes={implementation=boolean, default-value=true}; value=[${reuseForks}]], skip[attributes={implementation=boolean, default-value=false}; value=[${maven.test.skip}]], skipExec[attributes={implementation=boolean}; value=[${maven.test.skip.exec}]], skipTests[attributes={implementation=boolean, default-value=false}; value=[${skipTests}]], testClassesDirectory[attributes={implementation=java.io.File, default-value=${project.build.testOutputDirectory}}; value=[]], testNGArtifactName[attributes={implementation=java.lang.String, default-value=org.testng:testng}; value=[${testNGArtifactName}]], testSourceDirectory[attributes={implementation=java.io.File, default-value=${project.build.testSourceDirectory}}; value=[]], threadCount[attributes={implementation=int}; value=[${threadCount}]], threadCountClasses[attributes={implementation=int, default-value=0}; value=[${threadCountClasses}]], threadCountMethods[attributes={implementation=int, default-value=0}; value=[${threadCountMethods}]], threadCountSuites[attributes={implementation=int, default-value=0}; value=[${threadCountSuites}]], trimStackTrace[attributes={implementation=boolean, default-value=true}; value=[${trimStackTrace}]], useUnlimitedThreads[attributes={implementation=boolean, default-value=false}; value=[${useUnlimitedThreads}]], workingDirectory[attributes={implementation=java.io.File}; value=[${basedir}]], project[attributes={implementation=org.apache.maven.project.MavenProject, default-value=${project}}; value=[]], session[attributes={implementation=org.apache.maven.execution.MavenSession, default-value=${session}}; value=[]]]], requirements[attributes={}; value=[requirement[attributes={}; value=[role[attributes={}; value=[org.apache.maven.artifact.factory.ArtifactFactory]], field-name[attributes={}; value=[artifactFactory]]]], requirement[attributes={}; value=[role[attributes={}; value=[org.apache.maven.artifact.resolver.ArtifactResolver]], field-name[attributes={}; value=[artifactResolver]]]], requirement[attributes={}; value=[role[attributes={}; value=[org.apache.maven.artifact.metadata.ArtifactMetadataSource]], field-name[attributes={}; value=[metadataSource]]]], requirement[attributes={}; value=[role[attributes={}; value=[org.apache.maven.toolchain.ToolchainManager]], field-name[attributes={}; value=[toolchainManager]]]]]]]]]], dependencies[attributes={}; value=[dependency[attributes={}; value=[groupId[attributes={}; value=[org.apache.maven]], artifactId[attributes={}; value=[maven-plugin-api]], type[attributes={}; value=[jar]], version[attributes={}; value=[2.2.1]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[org.apache.maven]], artifactId[attributes={}; value=[maven-artifact]], type[attributes={}; value=[jar]], version[attributes={}; value=[3.0]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[org.codehaus.plexus]], artifactId[attributes={}; value=[plexus-utils]], type[attributes={}; value=[jar]], version[attributes={}; value=[1.5.15]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[org.apache.maven.surefire]], artifactId[attributes={}; value=[maven-surefire-common]], type[attributes={}; value=[jar]], version[attributes={}; value=[2.19.1]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[org.apache.maven.surefire]], artifactId[attributes={}; value=[surefire-api]], type[attributes={}; value=[jar]], version[attributes={}; value=[2.19.1]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[org.apache.maven.surefire]], artifactId[attributes={}; value=[surefire-booter]], type[attributes={}; value=[jar]], version[attributes={}; value=[2.19.1]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[org.apache.maven]], artifactId[attributes={}; value=[maven-plugin-descriptor]], type[attributes={}; value=[jar]], version[attributes={}; value=[2.2.1]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[org.codehaus.plexus]], artifactId[attributes={}; value=[plexus-container-default]], type[attributes={}; value=[jar]], version[attributes={}; value=[1.0-alpha-9-stable-1]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[junit]], artifactId[attributes={}; value=[junit]], type[attributes={}; value=[jar]], version[attributes={}; value=[3.8.1]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[classworlds]], artifactId[attributes={}; value=[classworlds]], type[attributes={}; value=[jar]], version[attributes={}; value=[1.1]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[org.apache.maven]], artifactId[attributes={}; value=[maven-project]], type[attributes={}; value=[jar]], version[attributes={}; value=[2.2.1]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[org.apache.maven]], artifactId[attributes={}; value=[maven-settings]], type[attributes={}; value=[jar]], version[attributes={}; value=[2.2.1]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[org.apache.maven]], artifactId[attributes={}; value=[maven-model]], type[attributes={}; value=[jar]], version[attributes={}; value=[2.2.1]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[org.codehaus.plexus]], artifactId[attributes={}; value=[plexus-interpolation]], type[attributes={}; value=[jar]], version[attributes={}; value=[1.11]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[org.apache.maven]], artifactId[attributes={}; value=[maven-profile]], type[attributes={}; value=[jar]], version[attributes={}; value=[2.2.1]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[org.apache.maven]], artifactId[attributes={}; value=[maven-artifact-manager]], type[attributes={}; value=[jar]], version[attributes={}; value=[2.2.1]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[org.apache.maven]], artifactId[attributes={}; value=[maven-repository-metadata]], type[attributes={}; value=[jar]], version[attributes={}; value=[2.2.1]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[org.apache.maven.wagon]], artifactId[attributes={}; value=[wagon-provider-api]], type[attributes={}; value=[jar]], version[attributes={}; value=[1.0-beta-6]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[backport-util-concurrent]], artifactId[attributes={}; value=[backport-util-concurrent]], type[attributes={}; value=[jar]], version[attributes={}; value=[3.1]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[org.apache.maven]], artifactId[attributes={}; value=[maven-plugin-registry]], type[attributes={}; value=[jar]], version[attributes={}; value=[2.2.1]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[org.apache.maven]], artifactId[attributes={}; value=[maven-core]], type[attributes={}; value=[jar]], version[attributes={}; value=[2.2.1]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[org.apache.maven]], artifactId[attributes={}; value=[maven-plugin-parameter-documenter]], type[attributes={}; value=[jar]], version[attributes={}; value=[2.2.1]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[org.apache.maven.wagon]], artifactId[attributes={}; value=[wagon-http]], type[attributes={}; value=[jar]], version[attributes={}; value=[1.0-beta-6]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[org.apache.maven.wagon]], artifactId[attributes={}; value=[wagon-http-shared]], type[attributes={}; value=[jar]], version[attributes={}; value=[1.0-beta-6]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[nekohtml]], artifactId[attributes={}; value=[xercesMinimal]], type[attributes={}; value=[jar]], version[attributes={}; value=[1.9.6.2]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[nekohtml]], artifactId[attributes={}; value=[nekohtml]], type[attributes={}; value=[jar]], version[attributes={}; value=[1.9.6.2]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[commons-httpclient]], artifactId[attributes={}; value=[commons-httpclient]], type[attributes={}; value=[jar]], version[attributes={}; value=[3.1]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[commons-codec]], artifactId[attributes={}; value=[commons-codec]], type[attributes={}; value=[jar]], version[attributes={}; value=[1.2]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[org.apache.maven.wagon]], artifactId[attributes={}; value=[wagon-webdav-jackrabbit]], type[attributes={}; value=[jar]], version[attributes={}; value=[1.0-beta-6]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[org.apache.jackrabbit]], artifactId[attributes={}; value=[jackrabbit-webdav]], type[attributes={}; value=[jar]], version[attributes={}; value=[1.5.0]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[org.apache.jackrabbit]], artifactId[attributes={}; value=[jackrabbit-jcr-commons]], type[attributes={}; value=[jar]], version[attributes={}; value=[1.5.0]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[org.slf4j]], artifactId[attributes={}; value=[slf4j-api]], type[attributes={}; value=[jar]], version[attributes={}; value=[1.5.6]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[org.slf4j]], artifactId[attributes={}; value=[slf4j-nop]], type[attributes={}; value=[jar]], version[attributes={}; value=[1.5.3]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[org.slf4j]], artifactId[attributes={}; value=[slf4j-jdk14]], type[attributes={}; value=[jar]], version[attributes={}; value=[1.5.6]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[org.slf4j]], artifactId[attributes={}; value=[jcl-over-slf4j]], type[attributes={}; value=[jar]], version[attributes={}; value=[1.5.6]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[org.apache.maven.reporting]], artifactId[attributes={}; value=[maven-reporting-api]], type[attributes={}; value=[jar]], version[attributes={}; value=[2.2.1]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[org.apache.maven.doxia]], artifactId[attributes={}; value=[doxia-logging-api]], type[attributes={}; value=[jar]], version[attributes={}; value=[1.1]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[org.apache.maven]], artifactId[attributes={}; value=[maven-error-diagnostics]], type[attributes={}; value=[jar]], version[attributes={}; value=[2.2.1]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[org.apache.maven]], artifactId[attributes={}; value=[maven-monitor]], type[attributes={}; value=[jar]], version[attributes={}; value=[2.2.1]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[org.sonatype.plexus]], artifactId[attributes={}; value=[plexus-sec-dispatcher]], type[attributes={}; value=[jar]], version[attributes={}; value=[1.3]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[org.sonatype.plexus]], artifactId[attributes={}; value=[plexus-cipher]], type[attributes={}; value=[jar]], version[attributes={}; value=[1.4]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[org.apache.maven]], artifactId[attributes={}; value=[maven-toolchain]], type[attributes={}; value=[jar]], version[attributes={}; value=[2.2.1]]]], dependency[attributes={}; value=[groupId[attributes={}; value=[org.apache.commons]], artifactId[attributes={}; value=[commons-lang3]], type[attributes={}; value=[jar]], version[attributes={}; value=[3.1]]]]]]]]
[INFO] Building: plugin-report/pom.xml
[INFO] run script verify.bsh
[INFO] ..SUCCESS (26.1 s)
[INFO] Building: mplugin-272_java8/pom.xml
[INFO] ..SKIPPED due to JRE version
[INFO] Building: help-basic/pom.xml
[INFO] ..SKIPPED due to Maven version
[INFO] -------------------------------------------------
[INFO] Build Summary:
[INFO]   Passed: 24, Failed: 1, Errors: 0, Skipped: 4
[INFO] -------------------------------------------------
[ERROR] The following builds failed:
[ERROR] *  mplugin-305_emptyMojoDependencies/pom.xml
[INFO] -------------------------------------------------
[INFO] 
[INFO] 
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO] ------------------------------------------------------------------------
[INFO] Maven Plugin Tools .................................... SUCCESS [21.309s]
[INFO] Maven Plugin Tools Extractor API ...................... SUCCESS [9.746s]
[INFO] Maven Plugin Tools Generators ......................... SUCCESS [6.351s]
[INFO] Maven Plugin Tool for Java with Javadoc Tags .......... SUCCESS [5.231s]
[INFO] Maven Plugin Tools Java 5 Annotations ................. SUCCESS [1.494s]
[INFO] Maven Plugin Tool for Java with Annotations ........... SUCCESS [5.172s]
[INFO] Maven Plugin Tools Javadoc Taglets .................... SUCCESS [20.436s]
[INFO] Maven Script Mojo Support ............................. SUCCESS [0.648s]
[INFO] Maven Plugin Metadata Model ........................... SUCCESS [4.354s]
[INFO] Maven Plugin Tool for Ant ............................. SUCCESS [3.251s]
[INFO] Maven Ant Mojo Support ................................ SUCCESS [3.137s]
[INFO] Maven Plugin Tool for Beanshell ....................... SUCCESS [1.241s]
[INFO] Maven Beanshell Mojo Support .......................... SUCCESS [1.151s]
[INFO] Maven Plugin Plugin ................................... FAILED [4:38.002s]
[INFO] ------------------------------------------------------------------------
[INFO] Error for project: Maven Plugin Plugin (during install)
[INFO] ------------------------------------------------------------------------
[INFO] 1 build failed. See console output above for details.
[INFO] ------------------------------------------------------------------------
[INFO] Trace
org.apache.maven.BuildFailureException: 1 build failed. See console output above for details.
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:715)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalWithLifecycle(DefaultLifecycleExecutor.java:556)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:535)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:387)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:348)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:180)
	at org.apache.maven.lifecycle.LifecycleExecutorInterceptor.execute(LifecycleExecutorInterceptor.java:65)
	at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:328)
	at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:138)
	at org.apache.maven.cli.MavenCli.main(MavenCli.java:362)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:606)
	at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
	at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
	at hudson.maven.agent.Main.launch(Main.java:205)
	at hudson.maven.MavenBuilder.call(MavenBuilder.java:154)
	at hudson.maven.Maven2Builder.call(Maven2Builder.java:79)
	at hudson.maven.Maven2Builder.call(Maven2Builder.java:55)
	at hudson.remoting.UserRequest.perform(UserRequest.java:120)
	at hudson.remoting.UserRequest.perform(UserRequest.java:48)
	at hudson.remoting.Request$2.run(Request.java:326)
	at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:68)
	at java.util.concurrent.FutureTask.run(FutureTask.java:262)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
	at java.lang.Thread.run(Thread.java:745)
Caused by: org.apache.maven.plugin.MojoFailureException: 1 build failed. See console output above for details.
	at org.apache.maven.plugin.invoker.InvokerSession.handleFailures(InvokerSession.java:258)
	at org.apache.maven.plugin.invoker.InvokerMojo.processResults(InvokerMojo.java:69)
	at org.apache.maven.plugin.invoker.AbstractInvokerMojo.execute(AbstractInvokerMojo.java:741)
	at org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:490)
	at hudson.maven.agent.PluginManagerInterceptor.executeMojo(PluginManagerInterceptor.java:182)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:694)
	... 27 more
[INFO] ------------------------------------------------------------------------
[INFO] BUILD ERRORS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 6 minutes 9 seconds
[INFO] Finished at: Thu Aug 11 19:20:29 UTC 2016
[INFO] Final Memory: 84M/712M
[INFO] ------------------------------------------------------------------------
[JENKINS] Archiving <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-plugin-tools-api/pom.xml> to org.apache.maven.plugin-tools/maven-plugin-tools-api/3.5-SNAPSHOT/maven-plugin-tools-api-3.5-SNAPSHOT.pom
[JENKINS] Archiving <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-plugin-tools-api/target/maven-plugin-tools-api-3.5-SNAPSHOT.jar> to org.apache.maven.plugin-tools/maven-plugin-tools-api/3.5-SNAPSHOT/maven-plugin-tools-api-3.5-SNAPSHOT.jar
[JENKINS] Archiving <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-plugin-tools-generators/pom.xml> to org.apache.maven.plugin-tools/maven-plugin-tools-generators/3.5-SNAPSHOT/maven-plugin-tools-generators-3.5-SNAPSHOT.pom
[JENKINS] Archiving <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-plugin-tools-generators/target/maven-plugin-tools-generators-3.5-SNAPSHOT.jar> to org.apache.maven.plugin-tools/maven-plugin-tools-generators/3.5-SNAPSHOT/maven-plugin-tools-generators-3.5-SNAPSHOT.jar
[JENKINS] Archiving /home/jenkins/jenkins-slave/maven-repositories/1/org/apache/maven/plugin-tools/maven-script/3.5-SNAPSHOT/maven-script-3.5-SNAPSHOT.pom to org.apache.maven.plugin-tools/maven-script/3.5-SNAPSHOT/maven-script-3.5-SNAPSHOT.pom
[JENKINS] Archiving <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-script/target/maven-script-3.5-SNAPSHOT-site.xml> to org.apache.maven.plugin-tools/maven-script/3.5-SNAPSHOT/maven-script-3.5-SNAPSHOT-site.xml
/x1/jenkins/jenkins-slave/maven-repositories/1/org/apache/maven/plugin-tools/maven-script/3.5-SNAPSHOT/maven-script-3.5-SNAPSHOT.pom is not inside /x1/jenkins/jenkins-slave/workspace/maven-plugin-tools-m2/maven-script/; will archive in a separate pass
[JENKINS] Archiving <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-plugin-annotations/pom.xml> to org.apache.maven.plugin-tools/maven-plugin-annotations/3.5-SNAPSHOT/maven-plugin-annotations-3.5-SNAPSHOT.pom
[JENKINS] Archiving <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-plugin-annotations/target/maven-plugin-annotations-3.5-SNAPSHOT.jar> to org.apache.maven.plugin-tools/maven-plugin-annotations/3.5-SNAPSHOT/maven-plugin-annotations-3.5-SNAPSHOT.jar
[JENKINS] Archiving <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-plugin-plugin/pom.xml> to org.apache.maven.plugins/maven-plugin-plugin/3.5-SNAPSHOT/maven-plugin-plugin-3.5-SNAPSHOT.pom
[JENKINS] Archiving <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-plugin-plugin/target/maven-plugin-plugin-3.5-SNAPSHOT.jar> to org.apache.maven.plugins/maven-plugin-plugin/3.5-SNAPSHOT/maven-plugin-plugin-3.5-SNAPSHOT.jar
[JENKINS] Archiving /home/jenkins/jenkins-slave/maven-repositories/1/org/apache/maven/plugin-tools/maven-plugin-tools/3.5-SNAPSHOT/maven-plugin-tools-3.5-SNAPSHOT.pom to org.apache.maven.plugin-tools/maven-plugin-tools/3.5-SNAPSHOT/maven-plugin-tools-3.5-SNAPSHOT.pom
[JENKINS] Archiving <https://builds.apache.org/job/maven-plugin-tools-m2/ws/target/maven-plugin-tools-3.5-SNAPSHOT-site.xml> to org.apache.maven.plugin-tools/maven-plugin-tools/3.5-SNAPSHOT/maven-plugin-tools-3.5-SNAPSHOT-site.xml
/x1/jenkins/jenkins-slave/maven-repositories/1/org/apache/maven/plugin-tools/maven-plugin-tools/3.5-SNAPSHOT/maven-plugin-tools-3.5-SNAPSHOT.pom is not inside /x1/jenkins/jenkins-slave/workspace/maven-plugin-tools-m2/; will archive in a separate pass
[JENKINS] Archiving <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-script/maven-plugin-tools-model/pom.xml> to org.apache.maven.plugin-tools/maven-plugin-tools-model/3.5-SNAPSHOT/maven-plugin-tools-model-3.5-SNAPSHOT.pom
[JENKINS] Archiving <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-script/maven-plugin-tools-model/target/maven-plugin-tools-model-3.5-SNAPSHOT.jar> to org.apache.maven.plugin-tools/maven-plugin-tools-model/3.5-SNAPSHOT/maven-plugin-tools-model-3.5-SNAPSHOT.jar
[JENKINS] Archiving <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-script/maven-plugin-tools-ant/pom.xml> to org.apache.maven.plugin-tools/maven-plugin-tools-ant/3.5-SNAPSHOT/maven-plugin-tools-ant-3.5-SNAPSHOT.pom
[JENKINS] Archiving <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-script/maven-plugin-tools-ant/target/maven-plugin-tools-ant-3.5-SNAPSHOT.jar> to org.apache.maven.plugin-tools/maven-plugin-tools-ant/3.5-SNAPSHOT/maven-plugin-tools-ant-3.5-SNAPSHOT.jar
[JENKINS] Archiving <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-plugin-tools-annotations/pom.xml> to org.apache.maven.plugin-tools/maven-plugin-tools-annotations/3.5-SNAPSHOT/maven-plugin-tools-annotations-3.5-SNAPSHOT.pom
[JENKINS] Archiving <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-plugin-tools-annotations/target/maven-plugin-tools-annotations-3.5-SNAPSHOT.jar> to org.apache.maven.plugin-tools/maven-plugin-tools-annotations/3.5-SNAPSHOT/maven-plugin-tools-annotations-3.5-SNAPSHOT.jar
[JENKINS] Archiving <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-plugin-tools-annotations/target/maven-plugin-tools-annotations-3.5-SNAPSHOT-tests.jar> to org.apache.maven.plugin-tools/maven-plugin-tools-annotations/3.5-SNAPSHOT/maven-plugin-tools-annotations-3.5-SNAPSHOT-tests.jar
[JENKINS] Archiving <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-plugin-tools-annotations/target/maven-plugin-tools-annotations-3.5-SNAPSHOT-test-sources.jar> to org.apache.maven.plugin-tools/maven-plugin-tools-annotations/3.5-SNAPSHOT/maven-plugin-tools-annotations-3.5-SNAPSHOT-test-sources.jar
[JENKINS] Archiving <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-script/maven-script-ant/pom.xml> to org.apache.maven.plugin-tools/maven-script-ant/3.5-SNAPSHOT/maven-script-ant-3.5-SNAPSHOT.pom
[JENKINS] Archiving <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-script/maven-script-ant/target/maven-script-ant-3.5-SNAPSHOT.jar> to org.apache.maven.plugin-tools/maven-script-ant/3.5-SNAPSHOT/maven-script-ant-3.5-SNAPSHOT.jar
[JENKINS] Archiving <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-script/maven-plugin-tools-beanshell/pom.xml> to org.apache.maven.plugin-tools/maven-plugin-tools-beanshell/3.5-SNAPSHOT/maven-plugin-tools-beanshell-3.5-SNAPSHOT.pom
[JENKINS] Archiving <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-script/maven-plugin-tools-beanshell/target/maven-plugin-tools-beanshell-3.5-SNAPSHOT.jar> to org.apache.maven.plugin-tools/maven-plugin-tools-beanshell/3.5-SNAPSHOT/maven-plugin-tools-beanshell-3.5-SNAPSHOT.jar
[JENKINS] Archiving <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-script/maven-script-beanshell/pom.xml> to org.apache.maven.plugin-tools/maven-script-beanshell/3.5-SNAPSHOT/maven-script-beanshell-3.5-SNAPSHOT.pom
[JENKINS] Archiving <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-script/maven-script-beanshell/target/maven-script-beanshell-3.5-SNAPSHOT.jar> to org.apache.maven.plugin-tools/maven-script-beanshell/3.5-SNAPSHOT/maven-script-beanshell-3.5-SNAPSHOT.jar
[JENKINS] Archiving <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-plugin-tools-java/pom.xml> to org.apache.maven.plugin-tools/maven-plugin-tools-java/3.5-SNAPSHOT/maven-plugin-tools-java-3.5-SNAPSHOT.pom
[JENKINS] Archiving <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-plugin-tools-java/target/maven-plugin-tools-java-3.5-SNAPSHOT.jar> to org.apache.maven.plugin-tools/maven-plugin-tools-java/3.5-SNAPSHOT/maven-plugin-tools-java-3.5-SNAPSHOT.jar
[JENKINS] Archiving <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-plugin-tools-javadoc/pom.xml> to org.apache.maven.plugin-tools/maven-plugin-tools-javadoc/3.5-SNAPSHOT/maven-plugin-tools-javadoc-3.5-SNAPSHOT.pom
[JENKINS] Archiving <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-plugin-tools-javadoc/target/maven-plugin-tools-javadoc-3.5-SNAPSHOT.jar> to org.apache.maven.plugin-tools/maven-plugin-tools-javadoc/3.5-SNAPSHOT/maven-plugin-tools-javadoc-3.5-SNAPSHOT.jar
channel stopped

Build failed in Jenkins: maven-plugin-tools-m2 #207

Posted by Apache Jenkins Server <je...@builds.apache.org>.
See <https://builds.apache.org/job/maven-plugin-tools-m2/207/changes>

Changes:

[Robert Scholte] Ensure native EOL

[Robert Scholte] Integration tests now reuse source/target values project, otherwise some tests use 1.5 as default which would make them fail when using JDK9

------------------------------------------
Started by an SCM change
[EnvInject] - Loading node environment variables.
Building remotely on ubuntu-1 (docker Ubuntu ubuntu yahoo-not-h2 ubuntu1) in workspace <https://builds.apache.org/job/maven-plugin-tools-m2/ws/>
Cleaning up <https://builds.apache.org/job/maven-plugin-tools-m2/ws/.>
Updating http://svn.apache.org/repos/asf/maven/plugin-tools/trunk at revision '2016-08-11T23:07:16.720 +0000'
U         maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/PluginReport.java
 U        maven-plugin-plugin/src/it/skip/src/main/java/org/apache/maven/plugin/coreit/SecondMojo.java
 U        maven-plugin-plugin/src/it/skip/src/main/java/org/apache/maven/plugin/coreit/FirstMojo.java
 U        maven-plugin-plugin/src/it/skip/src/main/java/org/apache/maven/plugin/coreit/CoreIt0013Mojo.java
UU        maven-plugin-plugin/src/it/skip/invoker.properties
UU        maven-plugin-plugin/src/it/skip/verify.groovy
 U        maven-plugin-plugin/src/it/skip/pom.xml
U         maven-plugin-plugin/src/it/plugin-report/pom.xml
UU        maven-plugin-plugin/src/it/mplugin-272_java8/src/main/java/fr/ca/MyMojo.java
UU        maven-plugin-plugin/src/it/mplugin-272_java8/src/main/java/fr/ca/TestInterface.java
UU        maven-plugin-plugin/src/it/mplugin-272_java8/invoker.properties
 U        maven-plugin-plugin/src/it/mplugin-272_java8/pom.xml
UU        maven-plugin-plugin/src/it/mplugin-305_singleMojoDependencies/src/main/java/org/apache/maven/plugins/plugin/it/CustomSurefireMojo.java
UU        maven-plugin-plugin/src/it/mplugin-305_singleMojoDependencies/invoker.properties
UU        maven-plugin-plugin/src/it/mplugin-305_singleMojoDependencies/verify.groovy
UU        maven-plugin-plugin/src/it/mplugin-305_singleMojoDependencies/pom.xml
UU        maven-plugin-plugin/src/it/mplugin-305_defaultMojoDependencies/src/main/java/org/apache/maven/plugins/plugin/it/CustomSurefireMojo.java
UU        maven-plugin-plugin/src/it/mplugin-305_defaultMojoDependencies/invoker.properties
UU        maven-plugin-plugin/src/it/mplugin-305_defaultMojoDependencies/verify.groovy
UU        maven-plugin-plugin/src/it/mplugin-305_defaultMojoDependencies/pom.xml
UU        maven-plugin-plugin/src/it/mplugin-191/src/main/java/org/apache/maven/plugins/plugin/it/MyMojo.java
UU        maven-plugin-plugin/src/it/mplugin-191/invoker.properties
UU        maven-plugin-plugin/src/it/mplugin-191/verify.groovy
UU        maven-plugin-plugin/src/it/mplugin-187/invoker.properties
UU        maven-plugin-plugin/src/it/mplugin-187/pom.xml
UU        maven-plugin-plugin/src/it/mplugin-305_emptyMojoDependencies/src/main/java/org/apache/maven/plugins/plugin/it/CustomSurefireMojo.java
UU        maven-plugin-plugin/src/it/mplugin-305_emptyMojoDependencies/invoker.properties
UU        maven-plugin-plugin/src/it/mplugin-305_emptyMojoDependencies/verify.groovy
UU        maven-plugin-plugin/src/it/mplugin-305_emptyMojoDependencies/pom.xml
UU        maven-plugin-plugin/src/it/java-basic-annotations/src/main/java/org/apache/maven/plugin/coreit/MPlugin220Mojo.java
U         maven-plugin-plugin/src/it/plugin-info-jdk/pom.xml
AU        maven-plugin-plugin/src/it/plugin-info-jdk/test.properties
D         maven-plugin-plugin/src/it/plugin-info-jdk/pluginManagement/src/main/java
A         maven-plugin-plugin/src/it/plugin-info-jdk/pluginManagement/src/main/resources
A         maven-plugin-plugin/src/it/plugin-info-jdk/pluginManagement/src/main/resources/META-INF
A         maven-plugin-plugin/src/it/plugin-info-jdk/pluginManagement/src/main/resources/META-INF/maven
AU        maven-plugin-plugin/src/it/plugin-info-jdk/pluginManagement/src/main/resources/META-INF/maven/plugin.xml
D         maven-plugin-plugin/src/it/plugin-info-jdk/plugin/src/main/java
A         maven-plugin-plugin/src/it/plugin-info-jdk/plugin/src/main/resources
A         maven-plugin-plugin/src/it/plugin-info-jdk/plugin/src/main/resources/META-INF
A         maven-plugin-plugin/src/it/plugin-info-jdk/plugin/src/main/resources/META-INF/maven
AU        maven-plugin-plugin/src/it/plugin-info-jdk/plugin/src/main/resources/META-INF/maven/plugin.xml
D         maven-plugin-plugin/src/it/plugin-info-jdk/requirement/src/main/java
A         maven-plugin-plugin/src/it/plugin-info-jdk/requirement/src/main/resources
A         maven-plugin-plugin/src/it/plugin-info-jdk/requirement/src/main/resources/META-INF
A         maven-plugin-plugin/src/it/plugin-info-jdk/requirement/src/main/resources/META-INF/maven
AU        maven-plugin-plugin/src/it/plugin-info-jdk/requirement/src/main/resources/META-INF/maven/plugin.xml
D         maven-plugin-plugin/src/it/plugin-info-jdk/property/src/main/java
A         maven-plugin-plugin/src/it/plugin-info-jdk/property/src/main/resources
A         maven-plugin-plugin/src/it/plugin-info-jdk/property/src/main/resources/META-INF
A         maven-plugin-plugin/src/it/plugin-info-jdk/property/src/main/resources/META-INF/maven
AU        maven-plugin-plugin/src/it/plugin-info-jdk/property/src/main/resources/META-INF/maven/plugin.xml
 U        maven-plugin-plugin/src/it/packaging-jar/pom.xml
 U        maven-plugin-plugin/src/it/packaging-jar/src/main/java/org/apache/maven/plugin/coreit/FirstMojo.java
 U        maven-plugin-plugin/src/it/packaging-jar/invoker.properties
 U        maven-plugin-plugin/src/it/packaging-jar/verify.groovy
U         maven-plugin-plugin/pom.xml
U         maven-plugin-tools-java/src/test/resources/source/Full.java
At revision 1756062

Parsing POMs
Established TCP socket on 44579
maven-agent.jar already up to date
classworlds.jar already up to date
maven-interceptor.jar already up to date
maven2.1-interceptor.jar already up to date
[maven-plugin-tools-m2] $ /home/jenkins/tools/java/latest1.6/bin/java -Xmx2g -Xms256m -XX:MaxPermSize=512m -cp /home/jenkins/jenkins-slave/maven-agent.jar:/home/jenkins/jenkins-slave/classworlds.jar hudson.maven.agent.Main /home/jenkins/tools/maven/apache-maven-2.2.1 /home/jenkins/jenkins-slave/slave.jar /home/jenkins/jenkins-slave/maven-interceptor.jar 44579 /home/jenkins/jenkins-slave/maven2.1-interceptor.jar
<===[JENKINS REMOTING CAPACITY]===>   channel started
ERROR: [JENKINS-18403] JDK 5 not supported to run Maven; retrying with slave Java and setting compile/test properties to point to /home/jenkins/tools/java/latest1.6
Established TCP socket on 41312
maven-agent.jar already up to date
classworlds.jar already up to date
maven-interceptor.jar already up to date
maven2.1-interceptor.jar already up to date
[maven-plugin-tools-m2] $ /usr/local/jenkins/java/jdk1.7.0_55/jre/bin/java -Xmx2g -Xms256m -XX:MaxPermSize=512m -cp /home/jenkins/jenkins-slave/maven-agent.jar:/home/jenkins/jenkins-slave/classworlds.jar hudson.maven.agent.Main /home/jenkins/tools/maven/apache-maven-2.2.1 /home/jenkins/jenkins-slave/slave.jar /home/jenkins/jenkins-slave/maven-interceptor.jar 41312 /home/jenkins/jenkins-slave/maven2.1-interceptor.jar
<===[JENKINS REMOTING CAPACITY]===>   channel started
Executing Maven:  -B -f <https://builds.apache.org/job/maven-plugin-tools-m2/ws/pom.xml> -Dmaven.repo.local=/home/jenkins/jenkins-slave/maven-repositories/1 clean install -B -U -e -fae -V -Prun-its
+ Error stacktraces are turned on.
Apache Maven 2.2.1 (r801777; 2009-08-06 19:16:01+0000)
Java version: 1.7.0_55
Java home: /usr/local/jenkins/java/jdk1.7.0_55/jre
Default locale: en_US, platform encoding: ISO-8859-1
OS name: "linux" version: "3.13.0-92-generic" arch: "amd64" Family: "unix"
[INFO] Scanning for projects...
[INFO] Reactor build order: 
[INFO]   Maven Plugin Tools
[INFO]   Maven Plugin Tools Extractor API
[INFO]   Maven Plugin Tools Generators
[INFO]   Maven Plugin Tool for Java with Javadoc Tags
[INFO]   Maven Plugin Tools Java 5 Annotations
[INFO]   Maven Plugin Tool for Java with Annotations
[INFO]   Maven Plugin Tools Javadoc Taglets
[INFO]   Maven Script Mojo Support
[INFO]   Maven Plugin Metadata Model
[INFO]   Maven Plugin Tool for Ant
[INFO]   Maven Ant Mojo Support
[INFO]   Maven Plugin Tool for Beanshell
[INFO]   Maven Beanshell Mojo Support
[INFO]   Maven Plugin Plugin
[INFO] ------------------------------------------------------------------------
[INFO] Building Maven Plugin Tools
[INFO]    task-segment: [clean, install]
[INFO] ------------------------------------------------------------------------
[INFO] [enforcer:enforce {execution: enforce-bytecode-version}]
[INFO] [enforcer:enforce {execution: ban-known-bad-maven-versions}]
[WARNING] Rule 0: org.apache.maven.plugins.enforcer.RequireMavenVersion failed with message:
Maven 3.0 through 3.0.3 inclusive do not pass correct settings.xml to Maven Release Plugin.
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Tools Extractor API
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Tools Generators
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Tool for Java with Javadoc Tags
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Tools Java 5 Annotations
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Tool for Java with Annotations
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Tools Javadoc Taglets
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Script Mojo Support
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Metadata Model
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Tool for Ant
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Ant Mojo Support
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Tool for Beanshell
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Beanshell Mojo Support
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Plugin
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] 
[INFO] 
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO] ------------------------------------------------------------------------
[INFO] Maven Plugin Tools .................................... FAILED [3.741s]
[INFO] Maven Plugin Tools Extractor API ...................... SKIPPED (dependency build failed or was skipped)
[INFO] Maven Plugin Tools Generators ......................... SKIPPED (dependency build failed or was skipped)
[INFO] Maven Plugin Tool for Java with Javadoc Tags .......... SKIPPED (dependency build failed or was skipped)
[INFO] Maven Plugin Tools Java 5 Annotations ................. SKIPPED (dependency build failed or was skipped)
[INFO] Maven Plugin Tool for Java with Annotations ........... SKIPPED (dependency build failed or was skipped)
[INFO] Maven Plugin Tools Javadoc Taglets .................... SKIPPED (dependency build failed or was skipped)
[INFO] Maven Script Mojo Support ............................. SKIPPED (dependency build failed or was skipped)
[INFO] Maven Plugin Metadata Model ........................... SKIPPED (dependency build failed or was skipped)
[INFO] Maven Plugin Tool for Ant ............................. SKIPPED (dependency build failed or was skipped)
[INFO] Maven Ant Mojo Support ................................ SKIPPED (dependency build failed or was skipped)
[INFO] Maven Plugin Tool for Beanshell ....................... SKIPPED (dependency build failed or was skipped)
[INFO] Maven Beanshell Mojo Support .......................... SKIPPED (dependency build failed or was skipped)
[INFO] Maven Plugin Plugin ................................... SKIPPED (dependency build failed or was skipped)
[INFO] ------------------------------------------------------------------------
[INFO] Error for project: Maven Plugin Tools (during install)
[INFO] ------------------------------------------------------------------------
[INFO] Some Enforcer rules have failed. Look above for specific messages explaining why the rule failed.
[INFO] ------------------------------------------------------------------------
[INFO] Trace
org.apache.maven.lifecycle.LifecycleExecutionException: Some Enforcer rules have failed. Look above for specific messages explaining why the rule failed.
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:719)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalWithLifecycle(DefaultLifecycleExecutor.java:556)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:535)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:387)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:348)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:180)
	at org.apache.maven.lifecycle.LifecycleExecutorInterceptor.execute(LifecycleExecutorInterceptor.java:65)
	at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:328)
	at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:138)
	at org.apache.maven.cli.MavenCli.main(MavenCli.java:362)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:606)
	at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
	at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
	at hudson.maven.agent.Main.launch(Main.java:205)
	at hudson.maven.MavenBuilder.call(MavenBuilder.java:154)
	at hudson.maven.Maven2Builder.call(Maven2Builder.java:79)
	at hudson.maven.Maven2Builder.call(Maven2Builder.java:55)
	at hudson.remoting.UserRequest.perform(UserRequest.java:120)
	at hudson.remoting.UserRequest.perform(UserRequest.java:48)
	at hudson.remoting.Request$2.run(Request.java:326)
	at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:68)
	at java.util.concurrent.FutureTask.run(FutureTask.java:262)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
	at java.lang.Thread.run(Thread.java:745)
Caused by: org.apache.maven.plugin.MojoExecutionException: Some Enforcer rules have failed. Look above for specific messages explaining why the rule failed.
	at org.apache.maven.plugins.enforcer.EnforceMojo.execute(EnforceMojo.java:237)
	at org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:490)
	at hudson.maven.agent.PluginManagerInterceptor.executeMojo(PluginManagerInterceptor.java:182)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:694)
	... 27 more
[INFO] ------------------------------------------------------------------------
[INFO] BUILD ERRORS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 5 seconds
[INFO] Finished at: Thu Aug 11 23:07:48 UTC 2016
[INFO] Final Memory: 22M/319M
[INFO] ------------------------------------------------------------------------
Waiting for Jenkins to finish collecting data
[JENKINS] Archiving <https://builds.apache.org/job/maven-plugin-tools-m2/ws/pom.xml> to org.apache.maven.plugin-tools/maven-plugin-tools/3.5-SNAPSHOT/maven-plugin-tools-3.5-SNAPSHOT.pom
channel stopped

Build failed in Jenkins: maven-plugin-tools-m2 #206

Posted by Apache Jenkins Server <je...@builds.apache.org>.
See <https://builds.apache.org/job/maven-plugin-tools-m2/206/changes>

Changes:

[Robert Scholte] [MPLUGIN-310] PluginReport should use generated plugin.xml by default

[Robert Scholte] Use property instead of the deprecated expression in test to prevent warnings in logging

------------------------------------------
Started by an SCM change
[EnvInject] - Loading node environment variables.
Building remotely on ubuntu3 (Ubuntu ubuntu legacy-ubuntu) in workspace <https://builds.apache.org/job/maven-plugin-tools-m2/ws/>
Cleaning up <https://builds.apache.org/job/maven-plugin-tools-m2/ws/.>
Deleting <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-plugin-tools-annotations/target>
Deleting <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-plugin-tools-java/target>
Deleting <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-plugin-tools-generators/target>
Deleting <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-script/maven-plugin-tools-beanshell/target>
Deleting <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-script/maven-plugin-tools-model/target>
Deleting <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-script/maven-plugin-tools-ant/target>
Deleting <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-script/maven-script-ant/target>
Deleting <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-script/maven-script-beanshell/target>
Deleting <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-script/target>
Deleting <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-plugin-plugin/target>
Deleting <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-plugin-tools-javadoc/target>
Deleting <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-plugin-tools-api/target>
Deleting <https://builds.apache.org/job/maven-plugin-tools-m2/ws/target>
Deleting <https://builds.apache.org/job/maven-plugin-tools-m2/ws/maven-plugin-annotations/target>
Updating http://svn.apache.org/repos/asf/maven/plugin-tools/trunk at revision '2016-08-11T22:05:40.001 +0000'
U         maven-plugin-tools-javadoc/src/it/basic/pom.xml
U         pom.xml
U         maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/PluginReport.java
U         maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/AbstractGeneratorMojo.java
U         maven-plugin-tools-java/src/test/resources/source/Full.java
At revision 1756057

Parsing POMs
Established TCP socket on 51138
maven-agent.jar already up to date
classworlds.jar already up to date
maven-interceptor.jar already up to date
maven2.1-interceptor.jar already up to date
[maven-plugin-tools-m2] $ /home/jenkins/tools/java/latest1.6/bin/java -Xmx2g -Xms256m -XX:MaxPermSize=512m -cp /home/jenkins/jenkins-slave/maven-agent.jar:/home/jenkins/jenkins-slave/classworlds.jar hudson.maven.agent.Main /home/jenkins/tools/maven/apache-maven-2.2.1 /x1/jenkins/jenkins-slave/slave.jar /home/jenkins/jenkins-slave/maven-interceptor.jar 51138 /home/jenkins/jenkins-slave/maven2.1-interceptor.jar
<===[JENKINS REMOTING CAPACITY]===>   channel started
ERROR: [JENKINS-18403] JDK 5 not supported to run Maven; retrying with slave Java and setting compile/test properties to point to /home/jenkins/tools/java/latest1.6
Established TCP socket on 35055
maven-agent.jar already up to date
classworlds.jar already up to date
maven-interceptor.jar already up to date
maven2.1-interceptor.jar already up to date
[maven-plugin-tools-m2] $ /x1/jenkins/tools/java/jdk1.7.0_55/jre/bin/java -Xmx2g -Xms256m -XX:MaxPermSize=512m -cp /home/jenkins/jenkins-slave/maven-agent.jar:/home/jenkins/jenkins-slave/classworlds.jar hudson.maven.agent.Main /home/jenkins/tools/maven/apache-maven-2.2.1 /x1/jenkins/jenkins-slave/slave.jar /home/jenkins/jenkins-slave/maven-interceptor.jar 35055 /home/jenkins/jenkins-slave/maven2.1-interceptor.jar
<===[JENKINS REMOTING CAPACITY]===>   channel started
Executing Maven:  -B -f <https://builds.apache.org/job/maven-plugin-tools-m2/ws/pom.xml> -Dmaven.repo.local=/home/jenkins/jenkins-slave/maven-repositories/2 clean install -B -U -e -fae -V -Prun-its
+ Error stacktraces are turned on.
Apache Maven 2.2.1 (r801777; 2009-08-06 19:16:01+0000)
Java version: 1.7.0_55
Java home: /x1/jenkins/tools/java/jdk1.7.0_55/jre
Default locale: en_US, platform encoding: ANSI_X3.4-1968
OS name: "linux" version: "3.2.0-106-generic" arch: "amd64" Family: "unix"
[INFO] Scanning for projects...
[INFO] Reactor build order: 
[INFO]   Maven Plugin Tools
[INFO]   Maven Plugin Tools Extractor API
[INFO]   Maven Plugin Tools Generators
[INFO]   Maven Plugin Tool for Java with Javadoc Tags
[INFO]   Maven Plugin Tools Java 5 Annotations
[INFO]   Maven Plugin Tool for Java with Annotations
[INFO]   Maven Plugin Tools Javadoc Taglets
[INFO]   Maven Script Mojo Support
[INFO]   Maven Plugin Metadata Model
[INFO]   Maven Plugin Tool for Ant
[INFO]   Maven Ant Mojo Support
[INFO]   Maven Plugin Tool for Beanshell
[INFO]   Maven Beanshell Mojo Support
[INFO]   Maven Plugin Plugin
[INFO] ------------------------------------------------------------------------
[INFO] Building Maven Plugin Tools
[INFO]    task-segment: [clean, install]
[INFO] ------------------------------------------------------------------------
[INFO] [enforcer:enforce {execution: enforce-bytecode-version}]
[INFO] [enforcer:enforce {execution: ban-known-bad-maven-versions}]
[WARNING] Rule 0: org.apache.maven.plugins.enforcer.RequireMavenVersion failed with message:
Maven 3.0 through 3.0.3 inclusive do not pass correct settings.xml to Maven Release Plugin.
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Tools Extractor API
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Tools Generators
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Tool for Java with Javadoc Tags
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Tools Java 5 Annotations
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Tool for Java with Annotations
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Tools Javadoc Taglets
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Script Mojo Support
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Metadata Model
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Tool for Ant
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Ant Mojo Support
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Tool for Beanshell
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Beanshell Mojo Support
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Plugin
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] 
[INFO] 
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO] ------------------------------------------------------------------------
[INFO] Maven Plugin Tools .................................... FAILED [4.179s]
[INFO] Maven Plugin Tools Extractor API ...................... SKIPPED (dependency build failed or was skipped)
[INFO] Maven Plugin Tools Generators ......................... SKIPPED (dependency build failed or was skipped)
[INFO] Maven Plugin Tool for Java with Javadoc Tags .......... SKIPPED (dependency build failed or was skipped)
[INFO] Maven Plugin Tools Java 5 Annotations ................. SKIPPED (dependency build failed or was skipped)
[INFO] Maven Plugin Tool for Java with Annotations ........... SKIPPED (dependency build failed or was skipped)
[INFO] Maven Plugin Tools Javadoc Taglets .................... SKIPPED (dependency build failed or was skipped)
[INFO] Maven Script Mojo Support ............................. SKIPPED (dependency build failed or was skipped)
[INFO] Maven Plugin Metadata Model ........................... SKIPPED (dependency build failed or was skipped)
[INFO] Maven Plugin Tool for Ant ............................. SKIPPED (dependency build failed or was skipped)
[INFO] Maven Ant Mojo Support ................................ SKIPPED (dependency build failed or was skipped)
[INFO] Maven Plugin Tool for Beanshell ....................... SKIPPED (dependency build failed or was skipped)
[INFO] Maven Beanshell Mojo Support .......................... SKIPPED (dependency build failed or was skipped)
[INFO] Maven Plugin Plugin ................................... SKIPPED (dependency build failed or was skipped)
[INFO] ------------------------------------------------------------------------
[INFO] Error for project: Maven Plugin Tools (during install)
[INFO] ------------------------------------------------------------------------
[INFO] Some Enforcer rules have failed. Look above for specific messages explaining why the rule failed.
[INFO] ------------------------------------------------------------------------
[INFO] Trace
org.apache.maven.lifecycle.LifecycleExecutionException: Some Enforcer rules have failed. Look above for specific messages explaining why the rule failed.
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:719)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalWithLifecycle(DefaultLifecycleExecutor.java:556)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:535)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:387)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:348)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:180)
	at org.apache.maven.lifecycle.LifecycleExecutorInterceptor.execute(LifecycleExecutorInterceptor.java:65)
	at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:328)
	at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:138)
	at org.apache.maven.cli.MavenCli.main(MavenCli.java:362)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:606)
	at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
	at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
	at hudson.maven.agent.Main.launch(Main.java:205)
	at hudson.maven.MavenBuilder.call(MavenBuilder.java:154)
	at hudson.maven.Maven2Builder.call(Maven2Builder.java:79)
	at hudson.maven.Maven2Builder.call(Maven2Builder.java:55)
	at hudson.remoting.UserRequest.perform(UserRequest.java:120)
	at hudson.remoting.UserRequest.perform(UserRequest.java:48)
	at hudson.remoting.Request$2.run(Request.java:326)
	at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:68)
	at java.util.concurrent.FutureTask.run(FutureTask.java:262)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
	at java.lang.Thread.run(Thread.java:745)
Caused by: org.apache.maven.plugin.MojoExecutionException: Some Enforcer rules have failed. Look above for specific messages explaining why the rule failed.
	at org.apache.maven.plugins.enforcer.EnforceMojo.execute(EnforceMojo.java:237)
	at org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:490)
	at hudson.maven.agent.PluginManagerInterceptor.executeMojo(PluginManagerInterceptor.java:182)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:694)
	... 27 more
[INFO] ------------------------------------------------------------------------
[INFO] BUILD ERRORS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 6 seconds
[INFO] Finished at: Thu Aug 11 22:06:08 UTC 2016
[INFO] Final Memory: 22M/319M
[INFO] ------------------------------------------------------------------------
Waiting for Jenkins to finish collecting data
[JENKINS] Archiving <https://builds.apache.org/job/maven-plugin-tools-m2/ws/pom.xml> to org.apache.maven.plugin-tools/maven-plugin-tools/3.5-SNAPSHOT/maven-plugin-tools-3.5-SNAPSHOT.pom
channel stopped

Build failed in Jenkins: maven-plugin-tools-m2 #205

Posted by Apache Jenkins Server <je...@builds.apache.org>.
See <https://builds.apache.org/job/maven-plugin-tools-m2/205/changes>

Changes:

[Robert Scholte] javadoc-maven-plugin 2.10.4 released, so don't use its SNAPSHOT anymore

------------------------------------------
[...truncated 864 lines...]
AU        maven-plugin-plugin/src/it/ant-simple-usage/plugin/src/main/scripts/test.build.xml
AU        maven-plugin-plugin/src/it/ant-simple-usage/plugin/src/main/scripts/test.mojos.xml
AU        maven-plugin-plugin/src/it/ant-simple-usage/plugin/pom.xml
A         maven-plugin-plugin/src/it/mplugin-272_java8
A         maven-plugin-plugin/src/it/mplugin-272_java8/src
A         maven-plugin-plugin/src/it/mplugin-272_java8/src/main
A         maven-plugin-plugin/src/it/mplugin-272_java8/src/main/java
A         maven-plugin-plugin/src/it/mplugin-272_java8/src/main/java/fr
A         maven-plugin-plugin/src/it/mplugin-272_java8/src/main/java/fr/ca
A         maven-plugin-plugin/src/it/mplugin-272_java8/src/main/java/fr/ca/MyMojo.java
A         maven-plugin-plugin/src/it/mplugin-272_java8/src/main/java/fr/ca/TestInterface.java
A         maven-plugin-plugin/src/it/mplugin-272_java8/invoker.properties
A         maven-plugin-plugin/src/it/mplugin-272_java8/pom.xml
A         maven-plugin-plugin/src/it/mplugin-305_singleMojoDependencies
A         maven-plugin-plugin/src/it/mplugin-305_singleMojoDependencies/src
A         maven-plugin-plugin/src/it/mplugin-305_singleMojoDependencies/src/main
A         maven-plugin-plugin/src/it/mplugin-305_singleMojoDependencies/src/main/java
A         maven-plugin-plugin/src/it/mplugin-305_singleMojoDependencies/src/main/java/org
A         maven-plugin-plugin/src/it/mplugin-305_singleMojoDependencies/src/main/java/org/apache
A         maven-plugin-plugin/src/it/mplugin-305_singleMojoDependencies/src/main/java/org/apache/maven
A         maven-plugin-plugin/src/it/mplugin-305_singleMojoDependencies/src/main/java/org/apache/maven/plugins
A         maven-plugin-plugin/src/it/mplugin-305_singleMojoDependencies/src/main/java/org/apache/maven/plugins/plugin
A         maven-plugin-plugin/src/it/mplugin-305_singleMojoDependencies/src/main/java/org/apache/maven/plugins/plugin/it
A         maven-plugin-plugin/src/it/mplugin-305_singleMojoDependencies/src/main/java/org/apache/maven/plugins/plugin/it/CustomSurefireMojo.java
A         maven-plugin-plugin/src/it/mplugin-305_singleMojoDependencies/invoker.properties
A         maven-plugin-plugin/src/it/mplugin-305_singleMojoDependencies/verify.groovy
A         maven-plugin-plugin/src/it/mplugin-305_singleMojoDependencies/pom.xml
A         maven-plugin-plugin/src/main
A         maven-plugin-plugin/src/main/resources
AU        maven-plugin-plugin/src/main/resources/plugin-report_fr.properties
AU        maven-plugin-plugin/src/main/resources/plugin-report_de.properties
AU        maven-plugin-plugin/src/main/resources/plugin-report_sv.properties
AU        maven-plugin-plugin/src/main/resources/plugin-report.properties
AU        maven-plugin-plugin/src/main/resources/plugin-report_en.properties
A         maven-plugin-plugin/src/main/mdo
AU        maven-plugin-plugin/src/main/mdo/pluginRequirements.mdo
A         maven-plugin-plugin/src/main/java
A         maven-plugin-plugin/src/main/java/org
A         maven-plugin-plugin/src/main/java/org/apache
A         maven-plugin-plugin/src/main/java/org/apache/maven
A         maven-plugin-plugin/src/main/java/org/apache/maven/plugin
A         maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin
AU        maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/AbstractGeneratorMojo.java
AU        maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/UpdatePluginRegistryMojo.java
A         maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/metadata
AU        maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/metadata/AddPluginArtifactMetadataMojo.java
AU        maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/HelpGeneratorMojo.java
AU        maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/DescriptorGeneratorMojo.java
AU        maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/PluginReport.java
A         maven-plugin-plugin/src/site
AU        maven-plugin-plugin/src/site/site.xml
A         maven-plugin-plugin/src/site/apt
AU        maven-plugin-plugin/src/site/apt/index.apt
A         maven-plugin-plugin/src/site/apt/examples
AU        maven-plugin-plugin/src/site/apt/examples/beanshell-mojo.apt.vm
AU        maven-plugin-plugin/src/site/apt/examples/generate-help.apt.vm
AU        maven-plugin-plugin/src/site/apt/examples/using-annotations.apt.vm
AU        maven-plugin-plugin/src/site/apt/examples/generate-report.apt.vm
AU        maven-plugin-plugin/src/site/apt/examples/ant-mojo.apt.vm
AU        maven-plugin-plugin/src/site/apt/examples/generate-descriptor.apt.vm
AU        maven-plugin-plugin/src/site/apt/usage.apt
AU        maven-plugin-plugin/src/site/apt/multiple-language-support.apt
A         maven-plugin-plugin/src/site/fml
AU        maven-plugin-plugin/src/site/fml/faq.fml
AU        maven-plugin-plugin/pom.xml
 U        .
At revision 1756050

Parsing POMs
Established TCP socket on 54870
Copied maven-agent.jar
Copied classworlds.jar
Copied maven-interceptor.jar
Copied maven2.1-interceptor.jar
[maven-plugin-tools-m2] $ /home/jenkins/tools/java/latest1.6/bin/java -Xmx2g -Xms256m -XX:MaxPermSize=512m -cp /home/jenkins/jenkins-slave/maven-agent.jar:/home/jenkins/jenkins-slave/classworlds.jar hudson.maven.agent.Main /home/jenkins/tools/maven/apache-maven-2.2.1 /home/jenkins/jenkins-slave/slave.jar /home/jenkins/jenkins-slave/maven-interceptor.jar 54870 /home/jenkins/jenkins-slave/maven2.1-interceptor.jar
<===[JENKINS REMOTING CAPACITY]===>   channel started
ERROR: [JENKINS-18403] JDK 5 not supported to run Maven; retrying with slave Java and setting compile/test properties to point to /home/jenkins/tools/java/latest1.6
Established TCP socket on 55696
maven-agent.jar already up to date
classworlds.jar already up to date
maven-interceptor.jar already up to date
maven2.1-interceptor.jar already up to date
[maven-plugin-tools-m2] $ /usr/local/jenkins/java/jdk1.7.0_55/jre/bin/java -Xmx2g -Xms256m -XX:MaxPermSize=512m -cp /home/jenkins/jenkins-slave/maven-agent.jar:/home/jenkins/jenkins-slave/classworlds.jar hudson.maven.agent.Main /home/jenkins/tools/maven/apache-maven-2.2.1 /home/jenkins/jenkins-slave/slave.jar /home/jenkins/jenkins-slave/maven-interceptor.jar 55696 /home/jenkins/jenkins-slave/maven2.1-interceptor.jar
<===[JENKINS REMOTING CAPACITY]===>   channel started
Executing Maven:  -B -f <https://builds.apache.org/job/maven-plugin-tools-m2/ws/pom.xml> -Dmaven.repo.local=/home/jenkins/jenkins-slave/maven-repositories/1 clean install -B -U -e -fae -V -Prun-its
+ Error stacktraces are turned on.
Apache Maven 2.2.1 (r801777; 2009-08-06 19:16:01+0000)
Java version: 1.7.0_55
Java home: /usr/local/jenkins/java/jdk1.7.0_55/jre
Default locale: en_US, platform encoding: ISO-8859-1
OS name: "linux" version: "3.13.0-92-generic" arch: "amd64" Family: "unix"
[INFO] Scanning for projects...
[INFO] Reactor build order: 
[INFO]   Maven Plugin Tools
[INFO]   Maven Plugin Tools Extractor API
[INFO]   Maven Plugin Tools Generators
[INFO]   Maven Plugin Tool for Java with Javadoc Tags
[INFO]   Maven Plugin Tools Java 5 Annotations
[INFO]   Maven Plugin Tool for Java with Annotations
[INFO]   Maven Plugin Tools Javadoc Taglets
[INFO]   Maven Script Mojo Support
[INFO]   Maven Plugin Metadata Model
[INFO]   Maven Plugin Tool for Ant
[INFO]   Maven Ant Mojo Support
[INFO]   Maven Plugin Tool for Beanshell
[INFO]   Maven Beanshell Mojo Support
[INFO]   Maven Plugin Plugin
[INFO] ------------------------------------------------------------------------
[INFO] Building Maven Plugin Tools
[INFO]    task-segment: [clean, install]
[INFO] ------------------------------------------------------------------------
[INFO] [enforcer:enforce {execution: enforce-bytecode-version}]
[INFO] [enforcer:enforce {execution: ban-known-bad-maven-versions}]
[WARNING] Rule 0: org.apache.maven.plugins.enforcer.RequireMavenVersion failed with message:
Maven 3.0 through 3.0.3 inclusive do not pass correct settings.xml to Maven Release Plugin.
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Tools Extractor API
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Tools Generators
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Tool for Java with Javadoc Tags
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Tools Java 5 Annotations
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Tool for Java with Annotations
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Tools Javadoc Taglets
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Script Mojo Support
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Metadata Model
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Tool for Ant
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Ant Mojo Support
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Tool for Beanshell
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Beanshell Mojo Support
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Plugin
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] 
[INFO] 
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO] ------------------------------------------------------------------------
[INFO] Maven Plugin Tools .................................... FAILED [2.716s]
[INFO] Maven Plugin Tools Extractor API ...................... SKIPPED (dependency build failed or was skipped)
[INFO] Maven Plugin Tools Generators ......................... SKIPPED (dependency build failed or was skipped)
[INFO] Maven Plugin Tool for Java with Javadoc Tags .......... SKIPPED (dependency build failed or was skipped)
[INFO] Maven Plugin Tools Java 5 Annotations ................. SKIPPED (dependency build failed or was skipped)
[INFO] Maven Plugin Tool for Java with Annotations ........... SKIPPED (dependency build failed or was skipped)
[INFO] Maven Plugin Tools Javadoc Taglets .................... SKIPPED (dependency build failed or was skipped)
[INFO] Maven Script Mojo Support ............................. SKIPPED (dependency build failed or was skipped)
[INFO] Maven Plugin Metadata Model ........................... SKIPPED (dependency build failed or was skipped)
[INFO] Maven Plugin Tool for Ant ............................. SKIPPED (dependency build failed or was skipped)
[INFO] Maven Ant Mojo Support ................................ SKIPPED (dependency build failed or was skipped)
[INFO] Maven Plugin Tool for Beanshell ....................... SKIPPED (dependency build failed or was skipped)
[INFO] Maven Beanshell Mojo Support .......................... SKIPPED (dependency build failed or was skipped)
[INFO] Maven Plugin Plugin ................................... SKIPPED (dependency build failed or was skipped)
[INFO] ------------------------------------------------------------------------
[INFO] Error for project: Maven Plugin Tools (during install)
[INFO] ------------------------------------------------------------------------
[INFO] Some Enforcer rules have failed. Look above for specific messages explaining why the rule failed.
[INFO] ------------------------------------------------------------------------
[INFO] Trace
org.apache.maven.lifecycle.LifecycleExecutionException: Some Enforcer rules have failed. Look above for specific messages explaining why the rule failed.
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:719)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalWithLifecycle(DefaultLifecycleExecutor.java:556)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:535)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:387)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:348)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:180)
	at org.apache.maven.lifecycle.LifecycleExecutorInterceptor.execute(LifecycleExecutorInterceptor.java:65)
	at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:328)
	at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:138)
	at org.apache.maven.cli.MavenCli.main(MavenCli.java:362)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:606)
	at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
	at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
	at hudson.maven.agent.Main.launch(Main.java:205)
	at hudson.maven.MavenBuilder.call(MavenBuilder.java:154)
	at hudson.maven.Maven2Builder.call(Maven2Builder.java:79)
	at hudson.maven.Maven2Builder.call(Maven2Builder.java:55)
	at hudson.remoting.UserRequest.perform(UserRequest.java:120)
	at hudson.remoting.UserRequest.perform(UserRequest.java:48)
	at hudson.remoting.Request$2.run(Request.java:326)
	at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:68)
	at java.util.concurrent.FutureTask.run(FutureTask.java:262)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
	at java.lang.Thread.run(Thread.java:745)
Caused by: org.apache.maven.plugin.MojoExecutionException: Some Enforcer rules have failed. Look above for specific messages explaining why the rule failed.
	at org.apache.maven.plugins.enforcer.EnforceMojo.execute(EnforceMojo.java:237)
	at org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:490)
	at hudson.maven.agent.PluginManagerInterceptor.executeMojo(PluginManagerInterceptor.java:182)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:694)
	... 27 more
[INFO] ------------------------------------------------------------------------
[INFO] BUILD ERRORS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 4 seconds
[INFO] Finished at: Thu Aug 11 21:06:00 UTC 2016
[INFO] Final Memory: 26M/448M
[INFO] ------------------------------------------------------------------------
[JENKINS] Archiving <https://builds.apache.org/job/maven-plugin-tools-m2/ws/pom.xml> to org.apache.maven.plugin-tools/maven-plugin-tools/3.5-SNAPSHOT/maven-plugin-tools-3.5-SNAPSHOT.pom
channel stopped

Build failed in Jenkins: maven-plugin-tools-m2 #204

Posted by Apache Jenkins Server <je...@builds.apache.org>.
See <https://builds.apache.org/job/maven-plugin-tools-m2/204/changes>

Changes:

[Robert Scholte] [MPLUGIN-305] MojoAnnotationsScanner should have better control over dependency scanning
Improve javadoc, thanks to Paul Benedict

[Robert Scholte] [MPLUGIN-309] Upgrade to maven-parent-30

------------------------------------------
[...truncated 865 lines...]
AU        maven-plugin-plugin/src/it/ant-since-maven-plugin/pom.xml
A         maven-plugin-plugin/src/it/mplugin-191
A         maven-plugin-plugin/src/it/mplugin-191/pom.xml
A         maven-plugin-plugin/src/it/mplugin-191/src
A         maven-plugin-plugin/src/it/mplugin-191/src/main
A         maven-plugin-plugin/src/it/mplugin-191/src/main/java
A         maven-plugin-plugin/src/it/mplugin-191/src/main/java/org
A         maven-plugin-plugin/src/it/mplugin-191/src/main/java/org/apache
A         maven-plugin-plugin/src/it/mplugin-191/src/main/java/org/apache/maven
A         maven-plugin-plugin/src/it/mplugin-191/src/main/java/org/apache/maven/plugins
A         maven-plugin-plugin/src/it/mplugin-191/src/main/java/org/apache/maven/plugins/plugin
A         maven-plugin-plugin/src/it/mplugin-191/src/main/java/org/apache/maven/plugins/plugin/it
A         maven-plugin-plugin/src/it/mplugin-191/src/main/java/org/apache/maven/plugins/plugin/it/MyMojo.java
A         maven-plugin-plugin/src/it/mplugin-191/invoker.properties
A         maven-plugin-plugin/src/it/mplugin-191/verify.groovy
AU        maven-plugin-plugin/pom.xml
A         maven-plugin-tools-java
A         maven-plugin-tools-java/src
A         maven-plugin-tools-java/src/test
A         maven-plugin-tools-java/src/test/java
A         maven-plugin-tools-java/src/test/java/org
A         maven-plugin-tools-java/src/test/java/org/apache
A         maven-plugin-tools-java/src/test/java/org/apache/maven
A         maven-plugin-tools-java/src/test/java/org/apache/maven/tools
A         maven-plugin-tools-java/src/test/java/org/apache/maven/tools/plugin
A         maven-plugin-tools-java/src/test/java/org/apache/maven/tools/plugin/extractor
A         maven-plugin-tools-java/src/test/java/org/apache/maven/tools/plugin/extractor/javadoc
AU        maven-plugin-tools-java/src/test/java/org/apache/maven/tools/plugin/extractor/javadoc/JavaMojoDescriptorExtractorTest.java
A         maven-plugin-tools-java/src/test/resources
A         maven-plugin-tools-java/src/test/resources/source
AU        maven-plugin-tools-java/src/test/resources/source/Full.java
AU        maven-plugin-tools-java/src/test/resources/source/Default.java
AU        maven-plugin-tools-java/src/test/resources/source/package-info.java
AU        maven-plugin-tools-java/src/test/resources/source/plugin-expected.xml
A         maven-plugin-tools-java/src/test/resources/java-1.5
AU        maven-plugin-tools-java/src/test/resources/java-1.5/MyEnum.java
AU        maven-plugin-tools-java/src/test/resources/java-1.5/MyMojo.java
AU        maven-plugin-tools-java/src/test/resources/java-1.5/plugin-expected.xml
A         maven-plugin-tools-java/src/test/resources/source2
AU        maven-plugin-tools-java/src/test/resources/source2/JavaExtractorTestThree.java
A         maven-plugin-tools-java/src/test/resources/source2/sub
AU        maven-plugin-tools-java/src/test/resources/source2/sub/MyBla.java
AU        maven-plugin-tools-java/src/test/resources/source2/plugin-expected.xml
AU        maven-plugin-tools-java/src/test/resources/source2/Bla.java
AU        maven-plugin-tools-java/src/test/resources/dir-flag.txt
A         maven-plugin-tools-java/src/test/resources/source3
AU        maven-plugin-tools-java/src/test/resources/source3/TestAnnotation.java
AU        maven-plugin-tools-java/src/test/resources/source3/plugin-expected.xml
A         maven-plugin-tools-java/src/main
A         maven-plugin-tools-java/src/main/java
A         maven-plugin-tools-java/src/main/java/org
A         maven-plugin-tools-java/src/main/java/org/apache
A         maven-plugin-tools-java/src/main/java/org/apache/maven
A         maven-plugin-tools-java/src/main/java/org/apache/maven/tools
A         maven-plugin-tools-java/src/main/java/org/apache/maven/tools/plugin
A         maven-plugin-tools-java/src/main/java/org/apache/maven/tools/plugin/extractor
A         maven-plugin-tools-java/src/main/java/org/apache/maven/tools/plugin/extractor/javadoc
AU        maven-plugin-tools-java/src/main/java/org/apache/maven/tools/plugin/extractor/javadoc/JavaJavadocMojoDescriptorExtractor.java
AU        maven-plugin-tools-java/src/main/java/org/apache/maven/tools/plugin/extractor/javadoc/JavadocMojoAnnotation.java
A         maven-plugin-tools-java/src/site
AU        maven-plugin-tools-java/src/site/site.xml
A         maven-plugin-tools-java/src/site/apt
AU        maven-plugin-tools-java/src/site/apt/index.apt
AU        maven-plugin-tools-java/pom.xml
 U        .
At revision 1756038

Parsing POMs
Modules changed, recalculating dependency graph
Established TCP socket on 56571
maven-agent.jar already up to date
classworlds.jar already up to date
maven-interceptor.jar already up to date
maven2.1-interceptor.jar already up to date
[maven-plugin-tools-m2] $ /home/jenkins/tools/java/latest1.6/bin/java -Xmx2g -Xms256m -XX:MaxPermSize=512m -cp /home/jenkins/jenkins-slave/maven-agent.jar:/home/jenkins/jenkins-slave/classworlds.jar hudson.maven.agent.Main /home/jenkins/tools/maven/apache-maven-2.2.1 /home/jenkins/jenkins-slave/slave.jar /home/jenkins/jenkins-slave/maven-interceptor.jar 56571 /home/jenkins/jenkins-slave/maven2.1-interceptor.jar
<===[JENKINS REMOTING CAPACITY]===>   channel started
ERROR: [JENKINS-18403] JDK 5 not supported to run Maven; retrying with slave Java and setting compile/test properties to point to /home/jenkins/tools/java/latest1.6
Established TCP socket on 57317
maven-agent.jar already up to date
classworlds.jar already up to date
maven-interceptor.jar already up to date
maven2.1-interceptor.jar already up to date
[maven-plugin-tools-m2] $ /usr/local/jenkins/java/jdk1.7.0_55/jre/bin/java -Xmx2g -Xms256m -XX:MaxPermSize=512m -cp /home/jenkins/jenkins-slave/maven-agent.jar:/home/jenkins/jenkins-slave/classworlds.jar hudson.maven.agent.Main /home/jenkins/tools/maven/apache-maven-2.2.1 /home/jenkins/jenkins-slave/slave.jar /home/jenkins/jenkins-slave/maven-interceptor.jar 57317 /home/jenkins/jenkins-slave/maven2.1-interceptor.jar
<===[JENKINS REMOTING CAPACITY]===>   channel started
Executing Maven:  -B -f <https://builds.apache.org/job/maven-plugin-tools-m2/ws/pom.xml> -Dmaven.repo.local=/home/jenkins/jenkins-slave/maven-repositories/0 clean install -B -U -e -fae -V -Prun-its
+ Error stacktraces are turned on.
Apache Maven 2.2.1 (r801777; 2009-08-06 19:16:01+0000)
Java version: 1.7.0_55
Java home: /usr/local/jenkins/java/jdk1.7.0_55/jre
Default locale: en_US, platform encoding: ISO-8859-1
OS name: "linux" version: "3.13.0-86-generic" arch: "amd64" Family: "unix"
[INFO] Scanning for projects...
[INFO] Reactor build order: 
[INFO]   Maven Plugin Tools
[INFO]   Maven Plugin Tools Extractor API
[INFO]   Maven Plugin Tools Generators
[INFO]   Maven Plugin Tool for Java with Javadoc Tags
[INFO]   Maven Plugin Tools Java 5 Annotations
[INFO]   Maven Plugin Tool for Java with Annotations
[INFO]   Maven Plugin Tools Javadoc Taglets
[INFO]   Maven Script Mojo Support
[INFO]   Maven Plugin Metadata Model
[INFO]   Maven Plugin Tool for Ant
[INFO]   Maven Ant Mojo Support
[INFO]   Maven Plugin Tool for Beanshell
[INFO]   Maven Beanshell Mojo Support
[INFO]   Maven Plugin Plugin
[INFO] ------------------------------------------------------------------------
[INFO] Building Maven Plugin Tools
[INFO]    task-segment: [clean, install]
[INFO] ------------------------------------------------------------------------
[INFO] [enforcer:enforce {execution: enforce-bytecode-version}]
[INFO] [enforcer:enforce {execution: ban-known-bad-maven-versions}]
[WARNING] Rule 0: org.apache.maven.plugins.enforcer.RequireMavenVersion failed with message:
Maven 3.0 through 3.0.3 inclusive do not pass correct settings.xml to Maven Release Plugin.
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Tools Extractor API
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Tools Generators
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Tool for Java with Javadoc Tags
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Tools Java 5 Annotations
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Tool for Java with Annotations
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Tools Javadoc Taglets
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Script Mojo Support
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Metadata Model
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Tool for Ant
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Ant Mojo Support
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Tool for Beanshell
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Beanshell Mojo Support
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] SKIPPING Maven Plugin Plugin
[INFO]    task-segment: [clean, install]
[INFO] This project has been banned from further executions due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] 
[INFO] 
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO] ------------------------------------------------------------------------
[INFO] Maven Plugin Tools .................................... FAILED [3.676s]
[INFO] Maven Plugin Tools Extractor API ...................... SKIPPED (dependency build failed or was skipped)
[INFO] Maven Plugin Tools Generators ......................... SKIPPED (dependency build failed or was skipped)
[INFO] Maven Plugin Tool for Java with Javadoc Tags .......... SKIPPED (dependency build failed or was skipped)
[INFO] Maven Plugin Tools Java 5 Annotations ................. SKIPPED (dependency build failed or was skipped)
[INFO] Maven Plugin Tool for Java with Annotations ........... SKIPPED (dependency build failed or was skipped)
[INFO] Maven Plugin Tools Javadoc Taglets .................... SKIPPED (dependency build failed or was skipped)
[INFO] Maven Script Mojo Support ............................. SKIPPED (dependency build failed or was skipped)
[INFO] Maven Plugin Metadata Model ........................... SKIPPED (dependency build failed or was skipped)
[INFO] Maven Plugin Tool for Ant ............................. SKIPPED (dependency build failed or was skipped)
[INFO] Maven Ant Mojo Support ................................ SKIPPED (dependency build failed or was skipped)
[INFO] Maven Plugin Tool for Beanshell ....................... SKIPPED (dependency build failed or was skipped)
[INFO] Maven Beanshell Mojo Support .......................... SKIPPED (dependency build failed or was skipped)
[INFO] Maven Plugin Plugin ................................... SKIPPED (dependency build failed or was skipped)
[INFO] ------------------------------------------------------------------------
[INFO] Error for project: Maven Plugin Tools (during install)
[INFO] ------------------------------------------------------------------------
[INFO] Some Enforcer rules have failed. Look above for specific messages explaining why the rule failed.
[INFO] ------------------------------------------------------------------------
[INFO] Trace
org.apache.maven.lifecycle.LifecycleExecutionException: Some Enforcer rules have failed. Look above for specific messages explaining why the rule failed.
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:719)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalWithLifecycle(DefaultLifecycleExecutor.java:556)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:535)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:387)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:348)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:180)
	at org.apache.maven.lifecycle.LifecycleExecutorInterceptor.execute(LifecycleExecutorInterceptor.java:65)
	at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:328)
	at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:138)
	at org.apache.maven.cli.MavenCli.main(MavenCli.java:362)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:606)
	at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
	at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
	at hudson.maven.agent.Main.launch(Main.java:205)
	at hudson.maven.MavenBuilder.call(MavenBuilder.java:154)
	at hudson.maven.Maven2Builder.call(Maven2Builder.java:79)
	at hudson.maven.Maven2Builder.call(Maven2Builder.java:55)
	at hudson.remoting.UserRequest.perform(UserRequest.java:120)
	at hudson.remoting.UserRequest.perform(UserRequest.java:48)
	at hudson.remoting.Request$2.run(Request.java:326)
	at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:68)
	at java.util.concurrent.FutureTask.run(FutureTask.java:262)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
	at java.lang.Thread.run(Thread.java:745)
Caused by: org.apache.maven.plugin.MojoExecutionException: Some Enforcer rules have failed. Look above for specific messages explaining why the rule failed.
	at org.apache.maven.plugins.enforcer.EnforceMojo.execute(EnforceMojo.java:237)
	at org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:490)
	at hudson.maven.agent.PluginManagerInterceptor.executeMojo(PluginManagerInterceptor.java:182)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:694)
	... 27 more
[INFO] ------------------------------------------------------------------------
[INFO] BUILD ERRORS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 7 seconds
[INFO] Finished at: Thu Aug 11 20:05:48 UTC 2016
[INFO] Final Memory: 24M/448M
[INFO] ------------------------------------------------------------------------
[JENKINS] Archiving <https://builds.apache.org/job/maven-plugin-tools-m2/ws/pom.xml> to org.apache.maven.plugin-tools/maven-plugin-tools/3.5-SNAPSHOT/maven-plugin-tools-3.5-SNAPSHOT.pom
channel stopped