Kai Hüner created MCHANGES-348:
----------------------------------
Summary: Connection to JIRA OnDemand fails due to missing
authentication
Key: MCHANGES-348
URL: https://jira.codehaus.org/browse/MCHANGES-348
Project: Maven Changes Plugin
Issue Type: Bug
Components: jira
Affects Versions: 2.12
Environment: Changes plugin (code from todays snapshot, locally built
and installed in local maven repository) is called in a build.xml and should
connect to a JIRA OnDemand hosted by Atlassian instance. Development
environment is Windows 8.1, IDE eclipse Kepler with m2e for maven integration.
Reporter: Kai Hüner
Hi everybody,
I try to create a JIRA report with the changes plugin. The report should
contain (fixed) issues from a remote JIRA instance, hosted by Atlassian, they
call it "JIRA OnDemand".
This is my POM.xml
{code:xml}
<project ...>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
<version>2.12-SNAPSHOT</version>
</plugin>
...
</plugins>
</build>
<issueManagement>
<system>JIRA</system>
<url>https://bei-sg.atlassian.net/browse/CDL</url>
</issueManagement>
<reporting>
<plugins>
<plugin>
<artifactId>maven-changes-plugin</artifactId>
<configuration>
<useJql>true</useJql>
<jiraUser>USER</jiraUser>
<jiraPassword>PW</jiraPassword>
<webUser>USER</webUser>
<webPassword>PW</webPassword>
<onlyCurrentVersion>true</onlyCurrentVersion>
</configuration>
</plugin>
</plugins>
</reporting>
</project>
{code}
When I run mvn changes:jira-report, I get the following messages (debug info
enabled):
{code}
Apache Maven 3.0.4 (r1232337; 2012-01-17 09:44:56+0100)
Maven home:
C:\Users\Kai\git\corporate-data-league\webservice-repository\EMBEDDED
Java version: 1.7.0_65, vendor: Oracle Corporation
Java home: C:\Program Files\Java\jdk1.7.0_65\jre
Default locale: en_US, platform encoding: Cp1252
OS name: "windows 8.1", version: "6.3", arch: "amd64", family: "windows"
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further
details.
[INFO] Error stacktraces are turned on.
[DEBUG] Reading global settings from EMBEDDED\conf\settings.xml
[DEBUG] Reading user settings from C:\Users\Kai\.m2\settings.xml
[DEBUG] Using local repository at C:\Users\Kai\.m2\repository
[DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10 for
C:\Users\Kai\.m2\repository
[INFO] Scanning for projects...
[DEBUG] Extension realms for project
cdq.cdl:cdl-ws-repository:war:0.0.1-SNAPSHOT: (none)
[DEBUG] Looking up lifecyle mappings for packaging war from
ClassRealm[plexus.core, parent: null]
[WARNING]
[WARNING] Some problems were encountered while building the effective model for
cdq.cdl:cdl-ws-repository:war:0.0.1-SNAPSHOT
[WARNING] 'reporting.plugins.plugin.version' for
org.apache.maven.plugins:maven-changes-plugin is missing. @ line 146, column 12
[WARNING]
[WARNING] It is highly recommended to fix these problems because they threaten
the stability of your build.
[WARNING]
[WARNING] For this reason, future Maven versions might no longer support
building such malformed projects.
[WARNING]
[DEBUG] Resolving plugin prefix changes from [org.apache.maven.plugins,
org.codehaus.mojo]
[DEBUG] Resolved plugin prefix changes to
org.apache.maven.plugins:maven-changes-plugin from POM
cdq.cdl:cdl-ws-repository:war:0.0.1-SNAPSHOT
[DEBUG] === REACTOR BUILD PLAN ================================================
[DEBUG] Project: cdq.cdl:cdl-ws-repository:war:0.0.1-SNAPSHOT
[DEBUG] Tasks: [changes:jira-report]
[DEBUG] Style: Regular
[DEBUG] =======================================================================
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building cdl-ws-repository 0.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[DEBUG] Resolving plugin prefix changes from [org.apache.maven.plugins,
org.codehaus.mojo]
[DEBUG] Resolved plugin prefix changes to
org.apache.maven.plugins:maven-changes-plugin from POM
cdq.cdl:cdl-ws-repository:war:0.0.1-SNAPSHOT
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources,
process-sources, generate-resources, process-resources, compile,
process-classes, generate-test-sources, process-test-sources,
generate-test-resources, process-test-resources, test-compile,
process-test-classes, test, prepare-package, package, pre-integration-test,
integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] === PROJECT BUILD PLAN ================================================
[DEBUG] Project: cdq.cdl:cdl-ws-repository:0.0.1-SNAPSHOT
[DEBUG] Dependencies (collect): []
[DEBUG] Dependencies (resolve): []
[DEBUG] Repositories (dependencies): [central
(http://repo.maven.apache.org/maven2, releases)]
[DEBUG] Repositories (plugins) : [central
(http://repo.maven.apache.org/maven2, releases)]
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:
org.apache.maven.plugins:maven-changes-plugin:2.12-SNAPSHOT:jira-report
(default-cli)
[DEBUG] Style: Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<basedir>${basedir}</basedir>
<columnNames default-value="Key,Summary,Status,Resolution,Assignee"/>
<forceRss default-value="false"/>
<inputEncoding
default-value="${project.build.sourceEncoding}">${encoding}</inputEncoding>
<jiraDatePattern default-value="EEE, d MMM yyyy HH:mm:ss Z"/>
<jiraXmlPath default-value="${project.build.directory}/jira-results.xml"/>
<localRepository>${localRepository}</localRepository>
<mavenSession default-value="${session}"/>
<maxEntries default-value="100"/>
<onlyCurrentVersion default-value="false"/>
<outputDirectory default-value="${project.reporting.outputDirectory}"/>
<outputEncoding
default-value="${project.reporting.outputEncoding}">${outputEncoding}</outputEncoding>
<project default-value="${project}"/>
<resolutionIds default-value="Fixed"/>
<runOnlyAtExecutionRoot
default-value="false">${changes.runOnlyAtExecutionRoot}</runOnlyAtExecutionRoot>
<settings default-value="${settings}"/>
<skip default-value="false">${changes.jira.skip}</skip>
<sortColumnNames default-value="Priority DESC, Created DESC"/>
<statusIds default-value="Closed"/>
<useJql default-value="false">${changes.useJql}</useJql>
</configuration>
[DEBUG] =======================================================================
[INFO]
[INFO] --- maven-changes-plugin:2.12-SNAPSHOT:jira-report (default-cli) @
cdl-ws-repository ---
[DEBUG] Created new class realm maven.api
[DEBUG] Importing foreign packages into class realm maven.api
[DEBUG] Imported: org.apache.maven.wagon.events < plexus.core
[DEBUG] Imported: org.sonatype.aether.transfer < plexus.core
[DEBUG] Imported: org.apache.maven.exception < plexus.core
[DEBUG] Imported: org.sonatype.aether.metadata < plexus.core
[DEBUG] Imported: org.codehaus.plexus.util.xml.Xpp3Dom < plexus.core
[DEBUG] Imported: org.sonatype.aether.collection < plexus.core
[DEBUG] Imported: org.sonatype.aether.version < plexus.core
[DEBUG] Imported: org.apache.maven.monitor < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.repository < plexus.core
[DEBUG] Imported: org.apache.maven.repository < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.resource < plexus.core
[DEBUG] Imported: org.codehaus.plexus.logging < plexus.core
[DEBUG] Imported: org.apache.maven.profiles < plexus.core
[DEBUG] Imported: org.sonatype.aether.repository < plexus.core
[DEBUG] Imported: org.apache.maven.classrealm < plexus.core
[DEBUG] Imported: org.apache.maven.execution < plexus.core
[DEBUG] Imported: org.sonatype.aether.artifact < plexus.core
[DEBUG] Imported: org.sonatype.aether.spi < plexus.core
[DEBUG] Imported: org.apache.maven.reporting < plexus.core
[DEBUG] Imported: org.apache.maven.usability < plexus.core
[DEBUG] Imported: org.codehaus.plexus.container < plexus.core
[DEBUG] Imported: org.codehaus.plexus.component < plexus.core
[DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer <
plexus.core
[DEBUG] Imported: org.apache.maven.wagon.authentication < plexus.core
[DEBUG] Imported: org.apache.maven.lifecycle < plexus.core
[DEBUG] Imported: org.codehaus.plexus.classworlds < plexus.core
[DEBUG] Imported: org.sonatype.aether.graph < plexus.core
[DEBUG] Imported: org.sonatype.aether.* < plexus.core
[DEBUG] Imported: org.apache.maven.settings < plexus.core
[DEBUG] Imported: org.codehaus.classworlds < plexus.core
[DEBUG] Imported: org.sonatype.aether.impl < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.* < plexus.core
[DEBUG] Imported: org.apache.maven.toolchain < plexus.core
[DEBUG] Imported: org.sonatype.aether.deployment < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.observers < plexus.core
[DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParserException <
plexus.core
[DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser <
plexus.core
[DEBUG] Imported: org.apache.maven.configuration < plexus.core
[DEBUG] Imported: org.apache.maven.cli < plexus.core
[DEBUG] Imported: org.sonatype.aether.installation < plexus.core
[DEBUG] Imported: org.codehaus.plexus.context < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.authorization < plexus.core
[DEBUG] Imported: org.apache.maven.project < plexus.core
[DEBUG] Imported: org.apache.maven.rtinfo < plexus.core
[DEBUG] Imported: org.codehaus.plexus.lifecycle < plexus.core
[DEBUG] Imported: org.codehaus.plexus.configuration < plexus.core
[DEBUG] Imported: org.apache.maven.artifact < plexus.core
[DEBUG] Imported: org.apache.maven.model < plexus.core
[DEBUG] Imported: org.apache.maven.* < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.proxy < plexus.core
[DEBUG] Imported: org.sonatype.aether.resolution < plexus.core
[DEBUG] Imported: org.apache.maven.plugin < plexus.core
[DEBUG] Imported: org.codehaus.plexus.* < plexus.core
[DEBUG] Imported: org.codehaus.plexus.personality < plexus.core
[DEBUG] Populating class realm maven.api
[DEBUG] org.apache.maven.plugins:maven-changes-plugin:jar:2.12-SNAPSHOT:
[DEBUG] org.apache.maven:maven-core:jar:2.2.1:compile
[DEBUG]
org.apache.maven:maven-plugin-parameter-documenter:jar:2.2.1:compile
[DEBUG] org.slf4j:slf4j-jdk14:jar:1.5.6:runtime
[DEBUG] org.slf4j:slf4j-api:jar:1.5.6:runtime
[DEBUG] org.slf4j:jcl-over-slf4j:jar:1.5.6:runtime
[DEBUG] org.apache.maven:maven-profile:jar:2.2.1:compile
[DEBUG]
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
[DEBUG] org.apache.maven:maven-repository-metadata:jar:2.2.1:compile
[DEBUG] org.apache.maven:maven-error-diagnostics:jar:2.2.1:compile
[DEBUG] commons-cli:commons-cli:jar:1.2:compile
[DEBUG] org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile
[DEBUG]
org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile
[DEBUG] org.apache.maven:maven-artifact-manager:jar:2.2.1:compile
[DEBUG]
backport-util-concurrent:backport-util-concurrent:jar:3.1:compile
[DEBUG] org.apache.maven:maven-monitor:jar:2.2.1:compile
[DEBUG] classworlds:classworlds:jar:1.1:compile
[DEBUG] org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile
[DEBUG] org.sonatype.plexus:plexus-cipher:jar:1.4:compile
[DEBUG] org.apache.maven:maven-artifact:jar:2.2.1:compile
[DEBUG] org.apache.maven:maven-model:jar:2.2.1:compile
[DEBUG] org.apache.maven:maven-plugin-api:jar:2.2.1:compile
[DEBUG] org.apache.maven:maven-project:jar:2.2.1:compile
[DEBUG] org.apache.maven:maven-plugin-registry:jar:2.2.1:compile
[DEBUG] org.apache.maven:maven-settings:jar:2.2.1:compile
[DEBUG] org.apache.maven.reporting:maven-reporting-api:jar:3.0:compile
[DEBUG] org.apache.maven.reporting:maven-reporting-impl:jar:2.3:compile
[DEBUG] org.apache.maven.shared:maven-shared-utils:jar:0.6:compile
[DEBUG] com.google.code.findbugs:jsr305:jar:2.0.1:compile
[DEBUG] commons-validator:commons-validator:jar:1.3.1:compile
[DEBUG] org.apache.maven.shared:maven-filtering:jar:1.3:compile
[DEBUG] org.sonatype.plexus:plexus-build-api:jar:0.0.4:compile
[DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.21:compile
[DEBUG] org.codehaus.plexus:plexus-mail-sender-api:jar:1.0-alpha-7:compile
[DEBUG]
org.apache.geronimo.javamail:geronimo-javamail_1.4_provider:jar:1.7:compile
[DEBUG] org.apache.geronimo.specs:geronimo-javamail_1.4_spec:jar:1.7:compile
[DEBUG]
org.apache.geronimo.javamail:geronimo-javamail_1.4_mail:jar:1.7:compile
[DEBUG]
org.codehaus.plexus:plexus-mail-sender-javamail:jar:1.0-alpha-7:compile
[DEBUG] javax.mail:mail:jar:1.4:compile
[DEBUG] javax.activation:activation:jar:1.1:compile
[DEBUG] org.codehaus.plexus:plexus-mail-sender-simple:jar:1.0-alpha-7:compile
[DEBUG] org.codehaus.plexus:plexus-i18n:jar:1.0-beta-7:compile
[DEBUG] org.codehaus.plexus:plexus-utils:jar:2.0.5:compile
[DEBUG] org.codehaus.plexus:plexus-velocity:jar:1.1.8:compile
[DEBUG] commons-collections:commons-collections:jar:3.0:compile
[DEBUG] commons-httpclient:commons-httpclient:jar:3.0.1:compile
[DEBUG] junit:junit:jar:3.8.1:compile
[DEBUG] commons-codec:commons-codec:jar:1.2:compile
[DEBUG] commons-io:commons-io:jar:2.2:compile
[DEBUG] commons-lang:commons-lang:jar:2.6:compile
[DEBUG] commons-logging:commons-logging:jar:1.1.1:compile
[DEBUG] org.apache.maven.doxia:doxia-core:jar:1.4:compile
[DEBUG] org.apache.maven.doxia:doxia-logging-api:jar:1.4:compile
[DEBUG] org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile
[DEBUG] org.apache.maven.doxia:doxia-module-xhtml:jar:1.4:compile
[DEBUG] org.apache.maven.doxia:doxia-sink-api:jar:1.4:compile
[DEBUG] org.apache.maven.doxia:doxia-decoration-model:jar:1.4:compile
[DEBUG] org.apache.maven.doxia:doxia-site-renderer:jar:1.4:compile
[DEBUG] org.apache.maven.doxia:doxia-module-fml:jar:1.4:compile
[DEBUG] org.apache.cxf:cxf-rt-frontend-jaxrs:jar:2.6.3:compile
[DEBUG] org.apache.cxf:cxf-api:jar:2.6.3:compile
[DEBUG] org.codehaus.woodstox:woodstox-core-asl:jar:4.1.4:runtime
[DEBUG] org.codehaus.woodstox:stax2-api:jar:3.1.1:runtime
[DEBUG] org.apache.ws.xmlschema:xmlschema-core:jar:2.0.3:compile
[DEBUG] wsdl4j:wsdl4j:jar:1.6.2:compile
[DEBUG] org.apache.cxf:cxf-rt-core:jar:2.6.3:compile
[DEBUG] com.sun.xml.bind:jaxb-impl:jar:2.2.5:compile
[DEBUG] javax.ws.rs:jsr311-api:jar:1.1.1:compile
[DEBUG] org.apache.cxf:cxf-rt-bindings-xml:jar:2.6.3:compile
[DEBUG] org.apache.cxf:cxf-rt-transports-http:jar:2.6.3:compile
[DEBUG] com.fasterxml.jackson.core:jackson-core:jar:2.1.0:compile
[DEBUG] com.fasterxml.jackson.core:jackson-databind:jar:2.1.0:compile
[DEBUG] com.fasterxml.jackson.core:jackson-annotations:jar:2.1.0:compile
[DEBUG] org.apache.velocity:velocity:jar:1.7:compile
[DEBUG] org.apache.velocity:velocity-tools:jar:2.0:compile
[DEBUG] commons-beanutils:commons-beanutils:jar:1.7.0:compile
[DEBUG] commons-digester:commons-digester:jar:1.8:compile
[DEBUG] commons-chain:commons-chain:jar:1.1:compile
[DEBUG] dom4j:dom4j:jar:1.1:compile
[DEBUG] oro:oro:jar:2.0.8:compile
[DEBUG] sslext:sslext:jar:1.2-0:compile
[DEBUG] org.apache.struts:struts-core:jar:1.3.8:compile
[DEBUG] antlr:antlr:jar:2.7.2:compile
[DEBUG] org.apache.struts:struts-taglib:jar:1.3.8:compile
[DEBUG] org.apache.struts:struts-tiles:jar:1.3.8:compile
[DEBUG] xml-apis:xml-apis:jar:1.3.04:compile
[DEBUG] xerces:xercesImpl:jar:2.9.1:compile
[DEBUG] org.apache.xmlrpc:xmlrpc-client:jar:3.0:compile
[DEBUG] org.apache.xmlrpc:xmlrpc-common:jar:3.0:compile
[DEBUG] org.apache.ws.commons:ws-commons-util:jar:1.0.1:compile
[DEBUG]
org.eclipse.mylyn.github:org.eclipse.egit.github.core:jar:1.2.0:compile
[DEBUG] org.apache.httpcomponents:httpmime:jar:4.1.2:compile
[DEBUG] com.google.code.gson:gson:jar:1.7.2:compile
[DEBUG] org.apache.httpcomponents:httpcore:jar:4.1.2:compile
[DEBUG] org.apache.httpcomponents:httpclient:jar:4.1.2:compile
[DEBUG] rome:rome:jar:1.0:compile
[DEBUG] jdom:jdom:jar:1.0:compile
[DEBUG] Created new class realm
plugin>org.apache.maven.plugins:maven-changes-plugin:2.12-SNAPSHOT
[DEBUG] Importing foreign packages into class realm
plugin>org.apache.maven.plugins:maven-changes-plugin:2.12-SNAPSHOT
[DEBUG] Imported: < maven.api
[DEBUG] Populating class realm
plugin>org.apache.maven.plugins:maven-changes-plugin:2.12-SNAPSHOT
[DEBUG] Included:
org.apache.maven.plugins:maven-changes-plugin:jar:2.12-SNAPSHOT
[DEBUG] Included: org.slf4j:slf4j-jdk14:jar:1.5.6
[DEBUG] Included: org.slf4j:slf4j-api:jar:1.5.6
[DEBUG] Included: org.slf4j:jcl-over-slf4j:jar:1.5.6
[DEBUG] Included: commons-cli:commons-cli:jar:1.2
[DEBUG] Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4
[DEBUG] Included: backport-util-concurrent:backport-util-concurrent:jar:3.1
[DEBUG] Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3
[DEBUG] Included: org.sonatype.plexus:plexus-cipher:jar:1.4
[DEBUG] Included: org.apache.maven.reporting:maven-reporting-api:jar:3.0
[DEBUG] Included: org.apache.maven.reporting:maven-reporting-impl:jar:2.3
[DEBUG] Included: org.apache.maven.shared:maven-shared-utils:jar:0.6
[DEBUG] Included: com.google.code.findbugs:jsr305:jar:2.0.1
[DEBUG] Included: commons-validator:commons-validator:jar:1.3.1
[DEBUG] Included: org.apache.maven.shared:maven-filtering:jar:1.3
[DEBUG] Included: org.sonatype.plexus:plexus-build-api:jar:0.0.4
[DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.21
[DEBUG] Included: org.codehaus.plexus:plexus-mail-sender-api:jar:1.0-alpha-7
[DEBUG] Included:
org.apache.geronimo.javamail:geronimo-javamail_1.4_provider:jar:1.7
[DEBUG] Included: org.apache.geronimo.specs:geronimo-javamail_1.4_spec:jar:1.7
[DEBUG] Included:
org.apache.geronimo.javamail:geronimo-javamail_1.4_mail:jar:1.7
[DEBUG] Included:
org.codehaus.plexus:plexus-mail-sender-javamail:jar:1.0-alpha-7
[DEBUG] Included: javax.mail:mail:jar:1.4
[DEBUG] Included: javax.activation:activation:jar:1.1
[DEBUG] Included:
org.codehaus.plexus:plexus-mail-sender-simple:jar:1.0-alpha-7
[DEBUG] Included: org.codehaus.plexus:plexus-i18n:jar:1.0-beta-7
[DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:2.0.5
[DEBUG] Included: org.codehaus.plexus:plexus-velocity:jar:1.1.8
[DEBUG] Included: commons-collections:commons-collections:jar:3.0
[DEBUG] Included: commons-httpclient:commons-httpclient:jar:3.0.1
[DEBUG] Included: junit:junit:jar:3.8.1
[DEBUG] Included: commons-codec:commons-codec:jar:1.2
[DEBUG] Included: commons-io:commons-io:jar:2.2
[DEBUG] Included: commons-lang:commons-lang:jar:2.6
[DEBUG] Included: commons-logging:commons-logging:jar:1.1.1
[DEBUG] Included: org.apache.maven.doxia:doxia-core:jar:1.4
[DEBUG] Included: org.apache.maven.doxia:doxia-logging-api:jar:1.4
[DEBUG] Included: org.codehaus.plexus:plexus-component-annotations:jar:1.5.5
[DEBUG] Included: org.apache.maven.doxia:doxia-module-xhtml:jar:1.4
[DEBUG] Included: org.apache.maven.doxia:doxia-sink-api:jar:1.4
[DEBUG] Included: org.apache.maven.doxia:doxia-decoration-model:jar:1.4
[DEBUG] Included: org.apache.maven.doxia:doxia-site-renderer:jar:1.4
[DEBUG] Included: org.apache.maven.doxia:doxia-module-fml:jar:1.4
[DEBUG] Included: org.apache.cxf:cxf-rt-frontend-jaxrs:jar:2.6.3
[DEBUG] Included: org.apache.cxf:cxf-api:jar:2.6.3
[DEBUG] Included: org.codehaus.woodstox:woodstox-core-asl:jar:4.1.4
[DEBUG] Included: org.codehaus.woodstox:stax2-api:jar:3.1.1
[DEBUG] Included: org.apache.ws.xmlschema:xmlschema-core:jar:2.0.3
[DEBUG] Included: wsdl4j:wsdl4j:jar:1.6.2
[DEBUG] Included: org.apache.cxf:cxf-rt-core:jar:2.6.3
[DEBUG] Included: com.sun.xml.bind:jaxb-impl:jar:2.2.5
[DEBUG] Included: javax.ws.rs:jsr311-api:jar:1.1.1
[DEBUG] Included: org.apache.cxf:cxf-rt-bindings-xml:jar:2.6.3
[DEBUG] Included: org.apache.cxf:cxf-rt-transports-http:jar:2.6.3
[DEBUG] Included: com.fasterxml.jackson.core:jackson-core:jar:2.1.0
[DEBUG] Included: com.fasterxml.jackson.core:jackson-databind:jar:2.1.0
[DEBUG] Included: com.fasterxml.jackson.core:jackson-annotations:jar:2.1.0
[DEBUG] Included: org.apache.velocity:velocity:jar:1.7
[DEBUG] Included: org.apache.velocity:velocity-tools:jar:2.0
[DEBUG] Included: commons-beanutils:commons-beanutils:jar:1.7.0
[DEBUG] Included: commons-digester:commons-digester:jar:1.8
[DEBUG] Included: commons-chain:commons-chain:jar:1.1
[DEBUG] Included: dom4j:dom4j:jar:1.1
[DEBUG] Included: oro:oro:jar:2.0.8
[DEBUG] Included: sslext:sslext:jar:1.2-0
[DEBUG] Included: org.apache.struts:struts-core:jar:1.3.8
[DEBUG] Included: antlr:antlr:jar:2.7.2
[DEBUG] Included: org.apache.struts:struts-taglib:jar:1.3.8
[DEBUG] Included: org.apache.struts:struts-tiles:jar:1.3.8
[DEBUG] Included: xml-apis:xml-apis:jar:1.3.04
[DEBUG] Included: xerces:xercesImpl:jar:2.9.1
[DEBUG] Included: org.apache.xmlrpc:xmlrpc-client:jar:3.0
[DEBUG] Included: org.apache.xmlrpc:xmlrpc-common:jar:3.0
[DEBUG] Included: org.apache.ws.commons:ws-commons-util:jar:1.0.1
[DEBUG] Included:
org.eclipse.mylyn.github:org.eclipse.egit.github.core:jar:1.2.0
[DEBUG] Included: org.apache.httpcomponents:httpmime:jar:4.1.2
[DEBUG] Included: com.google.code.gson:gson:jar:1.7.2
[DEBUG] Included: org.apache.httpcomponents:httpcore:jar:4.1.2
[DEBUG] Included: org.apache.httpcomponents:httpclient:jar:4.1.2
[DEBUG] Included: rome:rome:jar:1.0
[DEBUG] Included: jdom:jdom:jar:1.0
[DEBUG] Excluded: org.apache.maven:maven-core:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-plugin-parameter-documenter:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-profile:jar:2.2.1
[DEBUG] Excluded:
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1
[DEBUG] Excluded: org.apache.maven:maven-repository-metadata:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-error-diagnostics:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-plugin-descriptor:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-artifact-manager:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-monitor:jar:2.2.1
[DEBUG] Excluded: classworlds:classworlds:jar:1.1
[DEBUG] Excluded: org.apache.maven:maven-artifact:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-model:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-plugin-api:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-project:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-plugin-registry:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-settings:jar:2.2.1
[DEBUG] Configuring mojo
org.apache.maven.plugins:maven-changes-plugin:2.12-SNAPSHOT:jira-report from
plugin realm
ClassRealm[plugin>org.apache.maven.plugins:maven-changes-plugin:2.12-SNAPSHOT,
parent: sun.misc.Launcher$AppClassLoader@65450f1f]
[DEBUG] Setting property: classpath.resource.loader.class =>
'org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader'.
[DEBUG] Setting property: site.resource.loader.class =>
'org.codehaus.plexus.velocity.SiteResourceLoader'.
[DEBUG] Setting property: velocimacro.messages.on => 'false'.
[DEBUG] Setting property: resource.loader => 'classpath,site'.
[DEBUG] Setting property: runtime.log.invalid.references => 'false'.
[DEBUG] Setting property: resource.manager.logwhenfound => 'false'.
[DEBUG] Setting property:
velocimacro.permissions.allow.inline.to.replace.global => 'true'.
[DEBUG] Initializing Velocity, Calling init()...
[DEBUG] *******************************************************************
[DEBUG] Starting Apache Velocity v1.7 (compiled: 2010-11-19 12:14:37)
[DEBUG] RuntimeInstance initializing.
[DEBUG] Default Properties File:
org\apache\velocity\runtime\defaults\velocity.properties
[DEBUG] LogSystem has been deprecated. Please use a LogChute implementation.
[DEBUG] Default ResourceManager initializing. (class
org.apache.velocity.runtime.resource.ResourceManagerImpl)
[DEBUG] ResourceLoader instantiated:
org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader
[DEBUG] ResourceLoader instantiated:
org.codehaus.plexus.velocity.SiteResourceLoader
[DEBUG] ResourceCache: initialized (class
org.apache.velocity.runtime.resource.ResourceCacheImpl) with class
java.util.Collections$SynchronizedMap cache map.
[DEBUG] Default ResourceManager initialization complete.
[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Stop
[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Define
[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Break
[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Evaluate
[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Literal
[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Macro
[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Parse
[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Include
[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Foreach
[DEBUG] Created '20' parsers.
[DEBUG] Velocimacro : initialization starting.
[DEBUG] Velocimacro : allowInline = true : VMs can be defined inline in
templates
[DEBUG] Velocimacro : allowInlineToOverride = true : VMs defined inline may
replace previous VM definitions
[DEBUG] Velocimacro : allowInlineLocal = false : VMs defined inline will be
global in scope if allowed.
[DEBUG] Velocimacro : autoload off : VM system will not automatically reload
global library macros
[DEBUG] Velocimacro : Velocimacro : initialization complete.
[DEBUG] RuntimeInstance successfully initialized.
[DEBUG] Configuring mojo
'org.apache.maven.plugins:maven-changes-plugin:2.12-SNAPSHOT:jira-report' with
basic configurator -->
[DEBUG] (f) basedir =
C:\Users\Kai\git\corporate-data-league\webservice-repository
[DEBUG] (f) columnNames = Key,Summary,Status,Resolution,Assignee
[DEBUG] (f) forceRss = false
[DEBUG] (f) inputEncoding = UTF-8
[DEBUG] (f) jiraDatePattern = EEE, d MMM yyyy HH:mm:ss Z
[DEBUG] (f) jiraXmlPath =
C:\Users\Kai\git\corporate-data-league\webservice-repository\target\jira-results.xml
[DEBUG] (f) localRepository = id: local
url: file:///C:/Users/Kai/.m2/repository/
layout: none
[DEBUG] (f) mavenSession = org.apache.maven.execution.MavenSession@7b875faa
[DEBUG] (f) maxEntries = 100
[DEBUG] (f) onlyCurrentVersion = false
[DEBUG] (f) outputDirectory =
C:\Users\Kai\git\corporate-data-league\webservice-repository\target\site
[DEBUG] (f) project = MavenProject: cdq.cdl:cdl-ws-repository:0.0.1-SNAPSHOT
@ C:\Users\Kai\git\corporate-data-league\webservice-repository\pom.xml
[DEBUG] (f) resolutionIds = Fixed
[DEBUG] (f) runOnlyAtExecutionRoot = false
[DEBUG] (f) settings = org.apache.maven.execution.SettingsAdapter@29e31934
[DEBUG] (f) skip = false
[DEBUG] (f) sortColumnNames = Priority DESC, Created DESC
[DEBUG] (f) statusIds = Closed
[DEBUG] (f) useJql = false
[DEBUG] -- end configuration --
[DEBUG] RestJiraDownloader: connectionTimeout: 0
[DEBUG] RestJiraDownloader: receiveTimout: 0
Okt 30, 2014 12:24:19 PM org.apache.cxf.interceptor.LoggingOutInterceptor
INFO: Outbound Message
---------------------------
ID: 1
Address: https://bei-sg.atlassian.net/rest/api/2/serverInfo
Http-Method: GET
Content-Type: */*
Headers: {Accept=[application/json], Content-Type=[*/*]}
--------------------------------------
Okt 30, 2014 12:24:21 PM org.apache.cxf.interceptor.LoggingInInterceptor
INFO: Inbound Message
----------------------------
ID: 1
Response-Code: 200
Encoding: UTF-8
Content-Type: application/json;charset=UTF-8
Headers: {Cache-Control=[no-cache, no-store, no-transform],
connection=[keep-alive], content-type=[application/json;charset=UTF-8],
Date=[Thu, 30 Oct 2014 11:24:21 GMT], Server=[nginx],
Set-Cookie=[atlassian.xsrf.token=B5KP-CQXT-7GQI-A2SY|b7f6c410bdda71070e2b7b6fc6d542276043c9f8|lout;
Path=/; Secure],
Strict-Transport-Security=[max-age=315360000;includeSubdomains],
transfer-encoding=[chunked], Vary=[Accept-Encoding], X-AREQUESTID=[744x2801x1],
X-ASEN=[SEN-2684025], X-AUSERNAME=[anonymous], X-Content-Type-Options=[nosniff]}
Payload:
{"baseUrl":"https://bei-sg.atlassian.net","version":"6.4-OD-07-004","versionNumbers":[6,4,0],"buildNumber":64005,"buildDate":"2014-10-08T00:00:00.000+0200","scmInfo":"29a0beaca7c693975974e1d5d9f869ecb60599fc","serverTitle":"JIRA"}
--------------------------------------
Okt 30, 2014 12:24:21 PM org.apache.cxf.interceptor.LoggingOutInterceptor
INFO: Outbound Message
---------------------------
ID: 2
Address: https://bei-sg.atlassian.net/rest/api/2/status
Http-Method: GET
Content-Type: */*
Headers: {Accept=[application/json], Content-Type=[*/*], Cookie=[$Version="1";
atlassian.xsrf.token=B5KP-CQXT-7GQI-A2SY|b7f6c410bdda71070e2b7b6fc6d542276043c9f8|lout;
$Path=/]}
--------------------------------------
Okt 30, 2014 12:24:21 PM org.apache.cxf.interceptor.LoggingInInterceptor
INFO: Inbound Message
----------------------------
ID: 2
Response-Code: 200
Encoding: UTF-8
Content-Type: application/json;charset=UTF-8
Headers: {Cache-Control=[no-cache, no-store, no-transform],
connection=[keep-alive], content-type=[application/json;charset=UTF-8],
Date=[Thu, 30 Oct 2014 11:24:21 GMT], Server=[nginx],
Strict-Transport-Security=[max-age=315360000;includeSubdomains],
transfer-encoding=[chunked], Vary=[Accept-Encoding], X-AREQUESTID=[744x2802x1],
X-ASEN=[SEN-2684025], X-AUSERNAME=[anonymous], X-Content-Type-Options=[nosniff]}
Payload: []
--------------------------------------
[WARNING]
org.apache.maven.plugin.MojoFailureException: Could not find status Closed.
at
org.apache.maven.plugin.jira.RestJiraDownloader.resolveOneItem(RestJiraDownloader.java:265)
at
org.apache.maven.plugin.jira.RestJiraDownloader.resolveList(RestJiraDownloader.java:246)
at
org.apache.maven.plugin.jira.RestJiraDownloader.resolveIds(RestJiraDownloader.java:211)
at
org.apache.maven.plugin.jira.RestJiraDownloader.doExecute(RestJiraDownloader.java:131)
at
org.apache.maven.plugin.jira.AdaptiveJiraDownloader.doExecute(AdaptiveJiraDownloader.java:47)
at
org.apache.maven.plugin.jira.JiraMojo.executeReport(JiraMojo.java:372)
at
org.apache.maven.reporting.AbstractMavenReport.generate(AbstractMavenReport.java:255)
at
org.apache.maven.reporting.AbstractMavenReport.generate(AbstractMavenReport.java:210)
at
org.apache.maven.plugin.changes.AbstractChangesReport.execute(AbstractChangesReport.java:207)
at
org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:101)
at
org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:209)
at
org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)
at
org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)
at
org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:84)
at
org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:59)
at
org.apache.maven.lifecycle.internal.LifecycleStarter.singleThreadedBuild(LifecycleStarter.java:183)
at
org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:161)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:320)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:156)
at org.apache.maven.cli.MavenCli.execute(MavenCli.java:537)
at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:196)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:141)
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.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:290)
at
org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:230)
at
org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:409)
at
org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:352)
[DEBUG] Velocimacro : added VM link:
source=org/apache/maven/doxia/siterenderer/resources/default-site.vm
[DEBUG] Velocimacro : added VM image:
source=org/apache/maven/doxia/siterenderer/resources/default-site.vm
[DEBUG] Velocimacro : added VM banner:
source=org/apache/maven/doxia/siterenderer/resources/default-site.vm
[DEBUG] Velocimacro : added VM links:
source=org/apache/maven/doxia/siterenderer/resources/default-site.vm
[DEBUG] Velocimacro : added VM breadcrumbs:
source=org/apache/maven/doxia/siterenderer/resources/default-site.vm
[DEBUG] Velocimacro : added VM displayTree:
source=org/apache/maven/doxia/siterenderer/resources/default-site.vm
[DEBUG] Velocimacro : added VM menuItem:
source=org/apache/maven/doxia/siterenderer/resources/default-site.vm
[DEBUG] Velocimacro : added VM mainMenu:
source=org/apache/maven/doxia/siterenderer/resources/default-site.vm
[DEBUG] Velocimacro : added VM copyright:
source=org/apache/maven/doxia/siterenderer/resources/default-site.vm
[DEBUG] Velocimacro : added VM publishDate:
source=org/apache/maven/doxia/siterenderer/resources/default-site.vm
[DEBUG] Velocimacro : added VM poweredByLogo:
source=org/apache/maven/doxia/siterenderer/resources/default-site.vm
[DEBUG] Velocimacro : added VM googleAnalytics:
source=org/apache/maven/doxia/siterenderer/resources/default-site.vm
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 4.886s
[INFO] Finished at: Thu Oct 30 12:24:21 CET 2014
[INFO] Final Memory: 20M/226M
[INFO] ------------------------------------------------------------------------
{code}
My interpretation: JIRA is accessed, beacause calling
https://bei-sg.atlassian.net/rest/api/2/serverInfo provides a valid payload.
But calling https://bei-sg.atlassian.net/rest/api/2/status fails, payload is
empty, and a strange warning/exception is thrown saying
"org.apache.maven.plugin.MojoFailureException: Could not find status Closed."
This is the same for released versions 2.11, 2.10, and 2.9. For 2.8 and
backwards, the output is the following (maybe not relevant):
{code}
Apache Maven 3.0.4 (r1232337; 2012-01-17 09:44:56+0100)
Maven home:
C:\Users\Kai\git\corporate-data-league\webservice-repository\EMBEDDED
Java version: 1.7.0_65, vendor: Oracle Corporation
Java home: C:\Program Files\Java\jdk1.7.0_65\jre
Default locale: en_US, platform encoding: Cp1252
OS name: "windows 8.1", version: "6.3", arch: "amd64", family: "windows"
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further
details.
[INFO] Error stacktraces are turned on.
[DEBUG] Reading global settings from EMBEDDED\conf\settings.xml
[DEBUG] Reading user settings from C:\Users\Kai\.m2\settings.xml
[DEBUG] Using local repository at C:\Users\Kai\.m2\repository
[DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10 for
C:\Users\Kai\.m2\repository
[INFO] Scanning for projects...
[DEBUG] Extension realms for project
cdq.cdl:cdl-ws-repository:war:0.0.1-SNAPSHOT: (none)
[DEBUG] Looking up lifecyle mappings for packaging war from
ClassRealm[plexus.core, parent: null]
[WARNING]
[WARNING] Some problems were encountered while building the effective model for
cdq.cdl:cdl-ws-repository:war:0.0.1-SNAPSHOT
[WARNING] 'reporting.plugins.plugin.version' for
org.apache.maven.plugins:maven-changes-plugin is missing. @ line 141, column 12
[WARNING]
[WARNING] It is highly recommended to fix these problems because they threaten
the stability of your build.
[WARNING]
[WARNING] For this reason, future Maven versions might no longer support
building such malformed projects.
[WARNING]
[DEBUG] Resolving plugin prefix changes from [org.apache.maven.plugins,
org.codehaus.mojo]
[DEBUG] Resolved plugin prefix changes to
org.apache.maven.plugins:maven-changes-plugin from POM
cdq.cdl:cdl-ws-repository:war:0.0.1-SNAPSHOT
[DEBUG] === REACTOR BUILD PLAN ================================================
[DEBUG] Project: cdq.cdl:cdl-ws-repository:war:0.0.1-SNAPSHOT
[DEBUG] Tasks: [changes:jira-report]
[DEBUG] Style: Regular
[DEBUG] =======================================================================
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building cdl-ws-repository 0.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[DEBUG] Resolving plugin prefix changes from [org.apache.maven.plugins,
org.codehaus.mojo]
[DEBUG] Resolved plugin prefix changes to
org.apache.maven.plugins:maven-changes-plugin from POM
cdq.cdl:cdl-ws-repository:war:0.0.1-SNAPSHOT
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources,
process-sources, generate-resources, process-resources, compile,
process-classes, generate-test-sources, process-test-sources,
generate-test-resources, process-test-resources, test-compile,
process-test-classes, test, prepare-package, package, pre-integration-test,
integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] === PROJECT BUILD PLAN ================================================
[DEBUG] Project: cdq.cdl:cdl-ws-repository:0.0.1-SNAPSHOT
[DEBUG] Dependencies (collect): []
[DEBUG] Dependencies (resolve): []
[DEBUG] Repositories (dependencies): [central
(http://repo.maven.apache.org/maven2, releases)]
[DEBUG] Repositories (plugins) : [central
(http://repo.maven.apache.org/maven2, releases)]
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:
org.apache.maven.plugins:maven-changes-plugin:2.8:jira-report (default-cli)
[DEBUG] Style: Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<columnNames default-value="Key,Summary,Status,Resolution,Assignee"/>
<jiraDatePattern default-value="EEE, d MMM yyyy HH:mm:ss Z"/>
<jiraXmlPath default-value="${project.build.directory}/jira-results.xml"/>
<localRepository>${localRepository}</localRepository>
<maxEntries default-value="100"/>
<onlyCurrentVersion default-value="false"/>
<outputDirectory default-value="${project.reporting.outputDirectory}"/>
<outputEncoding
default-value="${project.reporting.outputEncoding}">${outputEncoding}</outputEncoding>
<resolutionIds default-value="Fixed"/>
<skip default-value="false">${changes.jira.skip}</skip>
<sortColumnNames default-value="Priority DESC, Created DESC"/>
<statusIds default-value="Closed"/>
<useJql default-value="false"/>
<project default-value="${project}"/>
<settings default-value="${settings}"/>
</configuration>
[DEBUG] =======================================================================
[INFO]
[INFO] --- maven-changes-plugin:2.8:jira-report (default-cli) @
cdl-ws-repository ---
[DEBUG] Created new class realm maven.api
[DEBUG] Importing foreign packages into class realm maven.api
[DEBUG] Imported: org.apache.maven.wagon.events < plexus.core
[DEBUG] Imported: org.sonatype.aether.transfer < plexus.core
[DEBUG] Imported: org.apache.maven.exception < plexus.core
[DEBUG] Imported: org.sonatype.aether.metadata < plexus.core
[DEBUG] Imported: org.codehaus.plexus.util.xml.Xpp3Dom < plexus.core
[DEBUG] Imported: org.sonatype.aether.collection < plexus.core
[DEBUG] Imported: org.sonatype.aether.version < plexus.core
[DEBUG] Imported: org.apache.maven.monitor < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.repository < plexus.core
[DEBUG] Imported: org.apache.maven.repository < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.resource < plexus.core
[DEBUG] Imported: org.codehaus.plexus.logging < plexus.core
[DEBUG] Imported: org.apache.maven.profiles < plexus.core
[DEBUG] Imported: org.sonatype.aether.repository < plexus.core
[DEBUG] Imported: org.apache.maven.classrealm < plexus.core
[DEBUG] Imported: org.apache.maven.execution < plexus.core
[DEBUG] Imported: org.sonatype.aether.artifact < plexus.core
[DEBUG] Imported: org.sonatype.aether.spi < plexus.core
[DEBUG] Imported: org.apache.maven.reporting < plexus.core
[DEBUG] Imported: org.apache.maven.usability < plexus.core
[DEBUG] Imported: org.codehaus.plexus.container < plexus.core
[DEBUG] Imported: org.codehaus.plexus.component < plexus.core
[DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer <
plexus.core
[DEBUG] Imported: org.apache.maven.wagon.authentication < plexus.core
[DEBUG] Imported: org.apache.maven.lifecycle < plexus.core
[DEBUG] Imported: org.codehaus.plexus.classworlds < plexus.core
[DEBUG] Imported: org.sonatype.aether.graph < plexus.core
[DEBUG] Imported: org.sonatype.aether.* < plexus.core
[DEBUG] Imported: org.apache.maven.settings < plexus.core
[DEBUG] Imported: org.codehaus.classworlds < plexus.core
[DEBUG] Imported: org.sonatype.aether.impl < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.* < plexus.core
[DEBUG] Imported: org.apache.maven.toolchain < plexus.core
[DEBUG] Imported: org.sonatype.aether.deployment < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.observers < plexus.core
[DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParserException <
plexus.core
[DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser <
plexus.core
[DEBUG] Imported: org.apache.maven.configuration < plexus.core
[DEBUG] Imported: org.apache.maven.cli < plexus.core
[DEBUG] Imported: org.sonatype.aether.installation < plexus.core
[DEBUG] Imported: org.codehaus.plexus.context < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.authorization < plexus.core
[DEBUG] Imported: org.apache.maven.project < plexus.core
[DEBUG] Imported: org.apache.maven.rtinfo < plexus.core
[DEBUG] Imported: org.codehaus.plexus.lifecycle < plexus.core
[DEBUG] Imported: org.codehaus.plexus.configuration < plexus.core
[DEBUG] Imported: org.apache.maven.artifact < plexus.core
[DEBUG] Imported: org.apache.maven.model < plexus.core
[DEBUG] Imported: org.apache.maven.* < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.proxy < plexus.core
[DEBUG] Imported: org.sonatype.aether.resolution < plexus.core
[DEBUG] Imported: org.apache.maven.plugin < plexus.core
[DEBUG] Imported: org.codehaus.plexus.* < plexus.core
[DEBUG] Imported: org.codehaus.plexus.personality < plexus.core
[DEBUG] Populating class realm maven.api
[DEBUG] org.apache.maven.plugins:maven-changes-plugin:jar:2.8:
[DEBUG] org.apache.maven:maven-core:jar:2.2.1:compile
[DEBUG]
org.apache.maven:maven-plugin-parameter-documenter:jar:2.2.1:compile
[DEBUG] org.slf4j:slf4j-jdk14:jar:1.5.6:runtime
[DEBUG] org.slf4j:slf4j-api:jar:1.5.6:runtime
[DEBUG] org.slf4j:jcl-over-slf4j:jar:1.5.6:runtime
[DEBUG] org.apache.maven:maven-profile:jar:2.2.1:compile
[DEBUG] org.apache.maven:maven-repository-metadata:jar:2.2.1:compile
[DEBUG] org.apache.maven:maven-error-diagnostics:jar:2.2.1:compile
[DEBUG] commons-cli:commons-cli:jar:1.2:compile
[DEBUG] org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile
[DEBUG]
org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile
[DEBUG] org.apache.maven:maven-artifact-manager:jar:2.2.1:compile
[DEBUG]
backport-util-concurrent:backport-util-concurrent:jar:3.1:compile
[DEBUG] org.apache.maven:maven-monitor:jar:2.2.1:compile
[DEBUG] classworlds:classworlds:jar:1.1:compile
[DEBUG] org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile
[DEBUG] org.sonatype.plexus:plexus-cipher:jar:1.4:compile
[DEBUG] org.apache.maven:maven-artifact:jar:2.2.1:compile
[DEBUG] org.apache.maven:maven-model:jar:2.2.1:compile
[DEBUG] org.apache.maven:maven-plugin-api:jar:2.2.1:compile
[DEBUG] org.apache.maven:maven-project:jar:2.2.1:compile
[DEBUG] org.apache.maven:maven-plugin-registry:jar:2.2.1:compile
[DEBUG] org.apache.maven:maven-settings:jar:2.2.1:compile
[DEBUG] org.apache.maven.reporting:maven-reporting-api:jar:3.0:compile
[DEBUG] org.apache.maven.reporting:maven-reporting-impl:jar:2.1:compile
[DEBUG] commons-validator:commons-validator:jar:1.2.0:compile
[DEBUG] org.apache.maven.shared:maven-filtering:jar:1.0:compile
[DEBUG] org.sonatype.plexus:plexus-build-api:jar:0.0.4:compile
[DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.12:compile
[DEBUG]
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
[DEBUG] junit:junit:jar:3.8.1:compile
[DEBUG] org.codehaus.plexus:plexus-mail-sender-api:jar:1.0-alpha-7:compile
[DEBUG]
org.apache.geronimo.javamail:geronimo-javamail_1.4_provider:jar:1.7:compile
[DEBUG] org.apache.geronimo.specs:geronimo-javamail_1.4_spec:jar:1.7:compile
[DEBUG]
org.apache.geronimo.javamail:geronimo-javamail_1.4_mail:jar:1.7:compile
[DEBUG]
org.codehaus.plexus:plexus-mail-sender-javamail:jar:1.0-alpha-7:compile
[DEBUG] javax.mail:mail:jar:1.4:compile
[DEBUG] javax.activation:activation:jar:1.1:compile
[DEBUG] org.codehaus.plexus:plexus-mail-sender-simple:jar:1.0-alpha-7:compile
[DEBUG] org.codehaus.plexus:plexus-i18n:jar:1.0-beta-7:compile
[DEBUG] org.codehaus.plexus:plexus-utils:jar:2.0.5:compile
[DEBUG] org.codehaus.plexus:plexus-velocity:jar:1.1.8:compile
[DEBUG] commons-collections:commons-collections:jar:3.0:compile
[DEBUG] commons-httpclient:commons-httpclient:jar:3.0.1:compile
[DEBUG] commons-codec:commons-codec:jar:1.2:compile
[DEBUG] commons-io:commons-io:jar:1.4:compile
[DEBUG] commons-lang:commons-lang:jar:2.6:compile
[DEBUG] commons-logging:commons-logging:jar:1.1.1:compile
[DEBUG] org.apache.maven.doxia:doxia-core:jar:1.2:compile
[DEBUG] org.apache.maven.doxia:doxia-logging-api:jar:1.2:compile
[DEBUG] org.apache.maven.doxia:doxia-module-xhtml:jar:1.2:compile
[DEBUG] org.apache.maven.doxia:doxia-sink-api:jar:1.2:compile
[DEBUG] org.apache.maven.doxia:doxia-decoration-model:jar:1.2:compile
[DEBUG] org.apache.maven.doxia:doxia-site-renderer:jar:1.2:compile
[DEBUG] org.apache.maven.doxia:doxia-module-fml:jar:1.2:compile
[DEBUG] org.apache.velocity:velocity:jar:1.7:compile
[DEBUG] org.apache.velocity:velocity-tools:jar:2.0:compile
[DEBUG] commons-beanutils:commons-beanutils:jar:1.7.0:compile
[DEBUG] commons-digester:commons-digester:jar:1.8:compile
[DEBUG] commons-chain:commons-chain:jar:1.1:compile
[DEBUG] dom4j:dom4j:jar:1.1:compile
[DEBUG] oro:oro:jar:2.0.8:compile
[DEBUG] sslext:sslext:jar:1.2-0:compile
[DEBUG] org.apache.struts:struts-core:jar:1.3.8:compile
[DEBUG] antlr:antlr:jar:2.7.2:compile
[DEBUG] org.apache.struts:struts-taglib:jar:1.3.8:compile
[DEBUG] org.apache.struts:struts-tiles:jar:1.3.8:compile
[DEBUG] xml-apis:xml-apis:jar:1.3.04:compile
[DEBUG] xerces:xercesImpl:jar:2.9.1:compile
[DEBUG] org.apache.xmlrpc:xmlrpc-client:jar:3.0:compile
[DEBUG] org.apache.xmlrpc:xmlrpc-common:jar:3.0:compile
[DEBUG] org.apache.ws.commons:ws-commons-util:jar:1.0.1:compile
[DEBUG]
org.eclipse.mylyn.github:org.eclipse.egit.github.core:jar:1.2.0:compile
[DEBUG] org.apache.httpcomponents:httpmime:jar:4.1.2:compile
[DEBUG] com.google.code.gson:gson:jar:1.7.2:compile
[DEBUG] org.apache.httpcomponents:httpcore:jar:4.1.2:compile
[DEBUG] org.apache.httpcomponents:httpclient:jar:4.1.2:compile
[DEBUG] Created new class realm
plugin>org.apache.maven.plugins:maven-changes-plugin:2.8
[DEBUG] Importing foreign packages into class realm
plugin>org.apache.maven.plugins:maven-changes-plugin:2.8
[DEBUG] Imported: < maven.api
[DEBUG] Populating class realm
plugin>org.apache.maven.plugins:maven-changes-plugin:2.8
[DEBUG] Included: org.apache.maven.plugins:maven-changes-plugin:jar:2.8
[DEBUG] Included: org.slf4j:slf4j-jdk14:jar:1.5.6
[DEBUG] Included: org.slf4j:slf4j-api:jar:1.5.6
[DEBUG] Included: org.slf4j:jcl-over-slf4j:jar:1.5.6
[DEBUG] Included: commons-cli:commons-cli:jar:1.2
[DEBUG] Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4
[DEBUG] Included: backport-util-concurrent:backport-util-concurrent:jar:3.1
[DEBUG] Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3
[DEBUG] Included: org.sonatype.plexus:plexus-cipher:jar:1.4
[DEBUG] Included: org.apache.maven.reporting:maven-reporting-api:jar:3.0
[DEBUG] Included: org.apache.maven.reporting:maven-reporting-impl:jar:2.1
[DEBUG] Included: commons-validator:commons-validator:jar:1.2.0
[DEBUG] Included: org.apache.maven.shared:maven-filtering:jar:1.0
[DEBUG] Included: org.sonatype.plexus:plexus-build-api:jar:0.0.4
[DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.12
[DEBUG] Included: junit:junit:jar:3.8.1
[DEBUG] Included: org.codehaus.plexus:plexus-mail-sender-api:jar:1.0-alpha-7
[DEBUG] Included:
org.apache.geronimo.javamail:geronimo-javamail_1.4_provider:jar:1.7
[DEBUG] Included: org.apache.geronimo.specs:geronimo-javamail_1.4_spec:jar:1.7
[DEBUG] Included:
org.apache.geronimo.javamail:geronimo-javamail_1.4_mail:jar:1.7
[DEBUG] Included:
org.codehaus.plexus:plexus-mail-sender-javamail:jar:1.0-alpha-7
[DEBUG] Included: javax.mail:mail:jar:1.4
[DEBUG] Included: javax.activation:activation:jar:1.1
[DEBUG] Included:
org.codehaus.plexus:plexus-mail-sender-simple:jar:1.0-alpha-7
[DEBUG] Included: org.codehaus.plexus:plexus-i18n:jar:1.0-beta-7
[DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:2.0.5
[DEBUG] Included: org.codehaus.plexus:plexus-velocity:jar:1.1.8
[DEBUG] Included: commons-collections:commons-collections:jar:3.0
[DEBUG] Included: commons-httpclient:commons-httpclient:jar:3.0.1
[DEBUG] Included: commons-codec:commons-codec:jar:1.2
[DEBUG] Included: commons-io:commons-io:jar:1.4
[DEBUG] Included: commons-lang:commons-lang:jar:2.6
[DEBUG] Included: commons-logging:commons-logging:jar:1.1.1
[DEBUG] Included: org.apache.maven.doxia:doxia-core:jar:1.2
[DEBUG] Included: org.apache.maven.doxia:doxia-logging-api:jar:1.2
[DEBUG] Included: org.apache.maven.doxia:doxia-module-xhtml:jar:1.2
[DEBUG] Included: org.apache.maven.doxia:doxia-sink-api:jar:1.2
[DEBUG] Included: org.apache.maven.doxia:doxia-decoration-model:jar:1.2
[DEBUG] Included: org.apache.maven.doxia:doxia-site-renderer:jar:1.2
[DEBUG] Included: org.apache.maven.doxia:doxia-module-fml:jar:1.2
[DEBUG] Included: org.apache.velocity:velocity:jar:1.7
[DEBUG] Included: org.apache.velocity:velocity-tools:jar:2.0
[DEBUG] Included: commons-beanutils:commons-beanutils:jar:1.7.0
[DEBUG] Included: commons-digester:commons-digester:jar:1.8
[DEBUG] Included: commons-chain:commons-chain:jar:1.1
[DEBUG] Included: dom4j:dom4j:jar:1.1
[DEBUG] Included: oro:oro:jar:2.0.8
[DEBUG] Included: sslext:sslext:jar:1.2-0
[DEBUG] Included: org.apache.struts:struts-core:jar:1.3.8
[DEBUG] Included: antlr:antlr:jar:2.7.2
[DEBUG] Included: org.apache.struts:struts-taglib:jar:1.3.8
[DEBUG] Included: org.apache.struts:struts-tiles:jar:1.3.8
[DEBUG] Included: xml-apis:xml-apis:jar:1.3.04
[DEBUG] Included: xerces:xercesImpl:jar:2.9.1
[DEBUG] Included: org.apache.xmlrpc:xmlrpc-client:jar:3.0
[DEBUG] Included: org.apache.xmlrpc:xmlrpc-common:jar:3.0
[DEBUG] Included: org.apache.ws.commons:ws-commons-util:jar:1.0.1
[DEBUG] Included:
org.eclipse.mylyn.github:org.eclipse.egit.github.core:jar:1.2.0
[DEBUG] Included: org.apache.httpcomponents:httpmime:jar:4.1.2
[DEBUG] Included: com.google.code.gson:gson:jar:1.7.2
[DEBUG] Included: org.apache.httpcomponents:httpcore:jar:4.1.2
[DEBUG] Included: org.apache.httpcomponents:httpclient:jar:4.1.2
[DEBUG] Excluded: org.apache.maven:maven-core:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-plugin-parameter-documenter:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-profile:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-repository-metadata:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-error-diagnostics:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-plugin-descriptor:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-artifact-manager:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-monitor:jar:2.2.1
[DEBUG] Excluded: classworlds:classworlds:jar:1.1
[DEBUG] Excluded: org.apache.maven:maven-artifact:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-model:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-plugin-api:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-project:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-plugin-registry:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-settings:jar:2.2.1
[DEBUG] Excluded:
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1
[DEBUG] Configuring mojo
org.apache.maven.plugins:maven-changes-plugin:2.8:jira-report from plugin realm
ClassRealm[plugin>org.apache.maven.plugins:maven-changes-plugin:2.8, parent:
sun.misc.Launcher$AppClassLoader@33d626a4]
[DEBUG] Setting property: classpath.resource.loader.class =>
'org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader'.
[DEBUG] Setting property: site.resource.loader.class =>
'org.codehaus.plexus.velocity.SiteResourceLoader'.
[DEBUG] Setting property: velocimacro.messages.on => 'false'.
[DEBUG] Setting property: resource.loader => 'classpath,site'.
[DEBUG] Setting property: runtime.log.invalid.references => 'false'.
[DEBUG] Setting property: resource.manager.logwhenfound => 'false'.
[DEBUG] Setting property:
velocimacro.permissions.allow.inline.to.replace.global => 'true'.
[DEBUG] Initializing Velocity, Calling init()...
[DEBUG] *******************************************************************
[DEBUG] Starting Apache Velocity v1.7 (compiled: 2010-11-19 12:14:37)
[DEBUG] RuntimeInstance initializing.
[DEBUG] Default Properties File:
org\apache\velocity\runtime\defaults\velocity.properties
[DEBUG] LogSystem has been deprecated. Please use a LogChute implementation.
[DEBUG] Default ResourceManager initializing. (class
org.apache.velocity.runtime.resource.ResourceManagerImpl)
[DEBUG] ResourceLoader instantiated:
org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader
[DEBUG] ResourceLoader instantiated:
org.codehaus.plexus.velocity.SiteResourceLoader
[DEBUG] ResourceCache: initialized (class
org.apache.velocity.runtime.resource.ResourceCacheImpl) with class
java.util.Collections$SynchronizedMap cache map.
[DEBUG] Default ResourceManager initialization complete.
[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Stop
[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Define
[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Break
[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Evaluate
[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Literal
[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Macro
[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Parse
[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Include
[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Foreach
[DEBUG] Created '20' parsers.
[DEBUG] Velocimacro : initialization starting.
[DEBUG] Velocimacro : allowInline = true : VMs can be defined inline in
templates
[DEBUG] Velocimacro : allowInlineToOverride = true : VMs defined inline may
replace previous VM definitions
[DEBUG] Velocimacro : allowInlineLocal = false : VMs defined inline will be
global in scope if allowed.
[DEBUG] Velocimacro : autoload off : VM system will not automatically reload
global library macros
[DEBUG] Velocimacro : Velocimacro : initialization complete.
[DEBUG] RuntimeInstance successfully initialized.
[DEBUG] Configuring mojo
'org.apache.maven.plugins:maven-changes-plugin:2.8:jira-report' with basic
configurator -->
[DEBUG] (f) columnNames = Key,Summary,Status,Resolution,Assignee
[DEBUG] (f) jiraDatePattern = EEE, d MMM yyyy HH:mm:ss Z
[DEBUG] (f) jiraXmlPath =
C:\Users\Kai\git\corporate-data-league\webservice-repository\target\jira-results.xml
[DEBUG] (f) localRepository = id: local
url: file:///C:/Users/Kai/.m2/repository/
layout: none
[DEBUG] (f) maxEntries = 100
[DEBUG] (f) onlyCurrentVersion = false
[DEBUG] (f) outputDirectory =
C:\Users\Kai\git\corporate-data-league\webservice-repository\target\site
[DEBUG] (f) resolutionIds = Fixed
[DEBUG] (f) skip = false
[DEBUG] (f) sortColumnNames = Priority DESC, Created DESC
[DEBUG] (f) statusIds = Closed
[DEBUG] (f) useJql = false
[DEBUG] (f) project = MavenProject: cdq.cdl:cdl-ws-repository:0.0.1-SNAPSHOT
@ C:\Users\Kai\git\corporate-data-league\webservice-repository\pom.xml
[DEBUG] (f) settings = org.apache.maven.execution.SettingsAdapter@62d3db5a
[DEBUG] -- end configuration --
[WARNING] Deprecated API called - not org.apache.maven.doxia.sink.Sink instance
and no SinkFactory available. Please update this plugin.
[DEBUG] The JIRA URL https://bei-sg.atlassian.net/browse/CDL doesn't include a
pid, trying to extract it from JIRA.
[DEBUG] Successfully reached JIRA.
[ERROR] Unable to extract a JIRA pid from the page at the url
https://bei-sg.atlassian.net/browse/CDL
[ERROR] Error accessing https://bei-sg.atlassian.net/browse/CDL
java.lang.RuntimeException: The issue management URL in the POM does not
include a pid, and it was not possible to extract it from the page at that URL.
at
org.apache.maven.plugin.jira.AbstractJiraDownloader.getParameterBasedQueryURL(AbstractJiraDownloader.java:238)
at
org.apache.maven.plugin.jira.AbstractJiraDownloader.doExecute(AbstractJiraDownloader.java:147)
at
org.apache.maven.plugin.jira.JiraMojo.executeReport(JiraMojo.java:354)
at
org.apache.maven.reporting.AbstractMavenReport.generate(AbstractMavenReport.java:190)
at
org.apache.maven.reporting.AbstractMavenReport.generate(AbstractMavenReport.java:144)
at
org.apache.maven.plugin.changes.AbstractChangesReport.execute(AbstractChangesReport.java:180)
at
org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:101)
at
org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:209)
at
org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)
at
org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)
at
org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:84)
at
org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:59)
at
org.apache.maven.lifecycle.internal.LifecycleStarter.singleThreadedBuild(LifecycleStarter.java:183)
at
org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:161)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:320)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:156)
at org.apache.maven.cli.MavenCli.execute(MavenCli.java:537)
at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:196)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:141)
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.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:290)
at
org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:230)
at
org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:409)
at
org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:352)
[WARNING] JIRA file
C:\Users\Kai\git\corporate-data-league\webservice-repository\target\jira-results.xml
doesn't exist.
[DEBUG] Velocimacro : added VM link:
source=org/apache/maven/doxia/siterenderer/resources/default-site.vm
[DEBUG] Velocimacro : added VM image:
source=org/apache/maven/doxia/siterenderer/resources/default-site.vm
[DEBUG] Velocimacro : added VM banner:
source=org/apache/maven/doxia/siterenderer/resources/default-site.vm
[DEBUG] Velocimacro : added VM links:
source=org/apache/maven/doxia/siterenderer/resources/default-site.vm
[DEBUG] Velocimacro : added VM breadcrumbs:
source=org/apache/maven/doxia/siterenderer/resources/default-site.vm
[DEBUG] Velocimacro : added VM displayTree:
source=org/apache/maven/doxia/siterenderer/resources/default-site.vm
[DEBUG] Velocimacro : added VM menuItem:
source=org/apache/maven/doxia/siterenderer/resources/default-site.vm
[DEBUG] Velocimacro : added VM mainMenu:
source=org/apache/maven/doxia/siterenderer/resources/default-site.vm
[DEBUG] Velocimacro : added VM copyright:
source=org/apache/maven/doxia/siterenderer/resources/default-site.vm
[DEBUG] Velocimacro : added VM publishDate:
source=org/apache/maven/doxia/siterenderer/resources/default-site.vm
[DEBUG] Velocimacro : added VM poweredByLogo:
source=org/apache/maven/doxia/siterenderer/resources/default-site.vm
[DEBUG] Velocimacro : added VM googleAnalytics:
source=org/apache/maven/doxia/siterenderer/resources/default-site.vm
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 5.884s
[INFO] Finished at: Thu Oct 30 12:32:09 CET 2014
[INFO] Final Memory: 16M/154M
[INFO] ------------------------------------------------------------------------
{code}
If I run the same script (now again with 2.12-SNAPSHOT from today) for the URL
http://jira.codehaus.org/browse/MCHANGES (i.e. another JIRA instance),
everything works as expected, the report is generated.
If I run the script for the URL https://jira.codehaus.org/browse/MCHANGES
(https instead of http) with my codehouse JIRA credentials, I receive the
following error stack:
{code}
Apache Maven 3.0.4 (r1232337; 2012-01-17 09:44:56+0100)
Maven home:
C:\Users\Kai\git\corporate-data-league\webservice-repository\EMBEDDED
Java version: 1.7.0_65, vendor: Oracle Corporation
Java home: C:\Program Files\Java\jdk1.7.0_65\jre
Default locale: en_US, platform encoding: Cp1252
OS name: "windows 8.1", version: "6.3", arch: "amd64", family: "windows"
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further
details.
[INFO] Error stacktraces are turned on.
[DEBUG] Reading global settings from EMBEDDED\conf\settings.xml
[DEBUG] Reading user settings from C:\Users\Kai\.m2\settings.xml
[DEBUG] Using local repository at C:\Users\Kai\.m2\repository
[DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10 for
C:\Users\Kai\.m2\repository
[INFO] Scanning for projects...
[DEBUG] Extension realms for project
cdq.cdl:cdl-ws-repository:war:0.0.1-SNAPSHOT: (none)
[DEBUG] Looking up lifecyle mappings for packaging war from
ClassRealm[plexus.core, parent: null]
[WARNING]
[WARNING] Some problems were encountered while building the effective model for
cdq.cdl:cdl-ws-repository:war:0.0.1-SNAPSHOT
[WARNING] 'reporting.plugins.plugin.version' for
org.apache.maven.plugins:maven-changes-plugin is missing. @ line 141, column 12
[WARNING]
[WARNING] It is highly recommended to fix these problems because they threaten
the stability of your build.
[WARNING]
[WARNING] For this reason, future Maven versions might no longer support
building such malformed projects.
[WARNING]
[DEBUG] Resolving plugin prefix changes from [org.apache.maven.plugins,
org.codehaus.mojo]
[DEBUG] Resolved plugin prefix changes to
org.apache.maven.plugins:maven-changes-plugin from POM
cdq.cdl:cdl-ws-repository:war:0.0.1-SNAPSHOT
[DEBUG] === REACTOR BUILD PLAN ================================================
[DEBUG] Project: cdq.cdl:cdl-ws-repository:war:0.0.1-SNAPSHOT
[DEBUG] Tasks: [changes:jira-report]
[DEBUG] Style: Regular
[DEBUG] =======================================================================
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building cdl-ws-repository 0.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[DEBUG] Resolving plugin prefix changes from [org.apache.maven.plugins,
org.codehaus.mojo]
[DEBUG] Resolved plugin prefix changes to
org.apache.maven.plugins:maven-changes-plugin from POM
cdq.cdl:cdl-ws-repository:war:0.0.1-SNAPSHOT
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources,
process-sources, generate-resources, process-resources, compile,
process-classes, generate-test-sources, process-test-sources,
generate-test-resources, process-test-resources, test-compile,
process-test-classes, test, prepare-package, package, pre-integration-test,
integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] === PROJECT BUILD PLAN ================================================
[DEBUG] Project: cdq.cdl:cdl-ws-repository:0.0.1-SNAPSHOT
[DEBUG] Dependencies (collect): []
[DEBUG] Dependencies (resolve): []
[DEBUG] Repositories (dependencies): [central
(http://repo.maven.apache.org/maven2, releases)]
[DEBUG] Repositories (plugins) : [central
(http://repo.maven.apache.org/maven2, releases)]
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:
org.apache.maven.plugins:maven-changes-plugin:2.12-SNAPSHOT:jira-report
(default-cli)
[DEBUG] Style: Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<basedir>${basedir}</basedir>
<columnNames default-value="Key,Summary,Status,Resolution,Assignee"/>
<forceRss default-value="false"/>
<inputEncoding
default-value="${project.build.sourceEncoding}">${encoding}</inputEncoding>
<jiraDatePattern default-value="EEE, d MMM yyyy HH:mm:ss Z"/>
<jiraXmlPath default-value="${project.build.directory}/jira-results.xml"/>
<localRepository>${localRepository}</localRepository>
<mavenSession default-value="${session}"/>
<maxEntries default-value="100"/>
<onlyCurrentVersion default-value="false"/>
<outputDirectory default-value="${project.reporting.outputDirectory}"/>
<outputEncoding
default-value="${project.reporting.outputEncoding}">${outputEncoding}</outputEncoding>
<project default-value="${project}"/>
<resolutionIds default-value="Fixed"/>
<runOnlyAtExecutionRoot
default-value="false">${changes.runOnlyAtExecutionRoot}</runOnlyAtExecutionRoot>
<settings default-value="${settings}"/>
<skip default-value="false">${changes.jira.skip}</skip>
<sortColumnNames default-value="Priority DESC, Created DESC"/>
<statusIds default-value="Closed"/>
<useJql default-value="false">${changes.useJql}</useJql>
</configuration>
[DEBUG] =======================================================================
[INFO]
[INFO] --- maven-changes-plugin:2.12-SNAPSHOT:jira-report (default-cli) @
cdl-ws-repository ---
[DEBUG] Created new class realm maven.api
[DEBUG] Importing foreign packages into class realm maven.api
[DEBUG] Imported: org.apache.maven.wagon.events < plexus.core
[DEBUG] Imported: org.sonatype.aether.transfer < plexus.core
[DEBUG] Imported: org.apache.maven.exception < plexus.core
[DEBUG] Imported: org.sonatype.aether.metadata < plexus.core
[DEBUG] Imported: org.codehaus.plexus.util.xml.Xpp3Dom < plexus.core
[DEBUG] Imported: org.sonatype.aether.collection < plexus.core
[DEBUG] Imported: org.sonatype.aether.version < plexus.core
[DEBUG] Imported: org.apache.maven.monitor < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.repository < plexus.core
[DEBUG] Imported: org.apache.maven.repository < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.resource < plexus.core
[DEBUG] Imported: org.codehaus.plexus.logging < plexus.core
[DEBUG] Imported: org.apache.maven.profiles < plexus.core
[DEBUG] Imported: org.sonatype.aether.repository < plexus.core
[DEBUG] Imported: org.apache.maven.classrealm < plexus.core
[DEBUG] Imported: org.apache.maven.execution < plexus.core
[DEBUG] Imported: org.sonatype.aether.artifact < plexus.core
[DEBUG] Imported: org.sonatype.aether.spi < plexus.core
[DEBUG] Imported: org.apache.maven.reporting < plexus.core
[DEBUG] Imported: org.apache.maven.usability < plexus.core
[DEBUG] Imported: org.codehaus.plexus.container < plexus.core
[DEBUG] Imported: org.codehaus.plexus.component < plexus.core
[DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer <
plexus.core
[DEBUG] Imported: org.apache.maven.wagon.authentication < plexus.core
[DEBUG] Imported: org.apache.maven.lifecycle < plexus.core
[DEBUG] Imported: org.codehaus.plexus.classworlds < plexus.core
[DEBUG] Imported: org.sonatype.aether.graph < plexus.core
[DEBUG] Imported: org.sonatype.aether.* < plexus.core
[DEBUG] Imported: org.apache.maven.settings < plexus.core
[DEBUG] Imported: org.codehaus.classworlds < plexus.core
[DEBUG] Imported: org.sonatype.aether.impl < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.* < plexus.core
[DEBUG] Imported: org.apache.maven.toolchain < plexus.core
[DEBUG] Imported: org.sonatype.aether.deployment < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.observers < plexus.core
[DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParserException <
plexus.core
[DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser <
plexus.core
[DEBUG] Imported: org.apache.maven.configuration < plexus.core
[DEBUG] Imported: org.apache.maven.cli < plexus.core
[DEBUG] Imported: org.sonatype.aether.installation < plexus.core
[DEBUG] Imported: org.codehaus.plexus.context < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.authorization < plexus.core
[DEBUG] Imported: org.apache.maven.project < plexus.core
[DEBUG] Imported: org.apache.maven.rtinfo < plexus.core
[DEBUG] Imported: org.codehaus.plexus.lifecycle < plexus.core
[DEBUG] Imported: org.codehaus.plexus.configuration < plexus.core
[DEBUG] Imported: org.apache.maven.artifact < plexus.core
[DEBUG] Imported: org.apache.maven.model < plexus.core
[DEBUG] Imported: org.apache.maven.* < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.proxy < plexus.core
[DEBUG] Imported: org.sonatype.aether.resolution < plexus.core
[DEBUG] Imported: org.apache.maven.plugin < plexus.core
[DEBUG] Imported: org.codehaus.plexus.* < plexus.core
[DEBUG] Imported: org.codehaus.plexus.personality < plexus.core
[DEBUG] Populating class realm maven.api
[DEBUG] org.apache.maven.plugins:maven-changes-plugin:jar:2.12-SNAPSHOT:
[DEBUG] org.apache.maven:maven-core:jar:2.2.1:compile
[DEBUG]
org.apache.maven:maven-plugin-parameter-documenter:jar:2.2.1:compile
[DEBUG] org.slf4j:slf4j-jdk14:jar:1.5.6:runtime
[DEBUG] org.slf4j:slf4j-api:jar:1.5.6:runtime
[DEBUG] org.slf4j:jcl-over-slf4j:jar:1.5.6:runtime
[DEBUG] org.apache.maven:maven-profile:jar:2.2.1:compile
[DEBUG]
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
[DEBUG] org.apache.maven:maven-repository-metadata:jar:2.2.1:compile
[DEBUG] org.apache.maven:maven-error-diagnostics:jar:2.2.1:compile
[DEBUG] commons-cli:commons-cli:jar:1.2:compile
[DEBUG] org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile
[DEBUG]
org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile
[DEBUG] org.apache.maven:maven-artifact-manager:jar:2.2.1:compile
[DEBUG]
backport-util-concurrent:backport-util-concurrent:jar:3.1:compile
[DEBUG] org.apache.maven:maven-monitor:jar:2.2.1:compile
[DEBUG] classworlds:classworlds:jar:1.1:compile
[DEBUG] org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile
[DEBUG] org.sonatype.plexus:plexus-cipher:jar:1.4:compile
[DEBUG] org.apache.maven:maven-artifact:jar:2.2.1:compile
[DEBUG] org.apache.maven:maven-model:jar:2.2.1:compile
[DEBUG] org.apache.maven:maven-plugin-api:jar:2.2.1:compile
[DEBUG] org.apache.maven:maven-project:jar:2.2.1:compile
[DEBUG] org.apache.maven:maven-plugin-registry:jar:2.2.1:compile
[DEBUG] org.apache.maven:maven-settings:jar:2.2.1:compile
[DEBUG] org.apache.maven.reporting:maven-reporting-api:jar:3.0:compile
[DEBUG] org.apache.maven.reporting:maven-reporting-impl:jar:2.3:compile
[DEBUG] org.apache.maven.shared:maven-shared-utils:jar:0.6:compile
[DEBUG] com.google.code.findbugs:jsr305:jar:2.0.1:compile
[DEBUG] commons-validator:commons-validator:jar:1.3.1:compile
[DEBUG] org.apache.maven.shared:maven-filtering:jar:1.3:compile
[DEBUG] org.sonatype.plexus:plexus-build-api:jar:0.0.4:compile
[DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.21:compile
[DEBUG] org.codehaus.plexus:plexus-mail-sender-api:jar:1.0-alpha-7:compile
[DEBUG]
org.apache.geronimo.javamail:geronimo-javamail_1.4_provider:jar:1.7:compile
[DEBUG] org.apache.geronimo.specs:geronimo-javamail_1.4_spec:jar:1.7:compile
[DEBUG]
org.apache.geronimo.javamail:geronimo-javamail_1.4_mail:jar:1.7:compile
[DEBUG]
org.codehaus.plexus:plexus-mail-sender-javamail:jar:1.0-alpha-7:compile
[DEBUG] javax.mail:mail:jar:1.4:compile
[DEBUG] javax.activation:activation:jar:1.1:compile
[DEBUG] org.codehaus.plexus:plexus-mail-sender-simple:jar:1.0-alpha-7:compile
[DEBUG] org.codehaus.plexus:plexus-i18n:jar:1.0-beta-7:compile
[DEBUG] org.codehaus.plexus:plexus-utils:jar:2.0.5:compile
[DEBUG] org.codehaus.plexus:plexus-velocity:jar:1.1.8:compile
[DEBUG] commons-collections:commons-collections:jar:3.0:compile
[DEBUG] commons-httpclient:commons-httpclient:jar:3.0.1:compile
[DEBUG] junit:junit:jar:3.8.1:compile
[DEBUG] commons-codec:commons-codec:jar:1.2:compile
[DEBUG] commons-io:commons-io:jar:2.2:compile
[DEBUG] commons-lang:commons-lang:jar:2.6:compile
[DEBUG] commons-logging:commons-logging:jar:1.1.1:compile
[DEBUG] org.apache.maven.doxia:doxia-core:jar:1.4:compile
[DEBUG] org.apache.maven.doxia:doxia-logging-api:jar:1.4:compile
[DEBUG] org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile
[DEBUG] org.apache.maven.doxia:doxia-module-xhtml:jar:1.4:compile
[DEBUG] org.apache.maven.doxia:doxia-sink-api:jar:1.4:compile
[DEBUG] org.apache.maven.doxia:doxia-decoration-model:jar:1.4:compile
[DEBUG] org.apache.maven.doxia:doxia-site-renderer:jar:1.4:compile
[DEBUG] org.apache.maven.doxia:doxia-module-fml:jar:1.4:compile
[DEBUG] org.apache.cxf:cxf-rt-frontend-jaxrs:jar:2.6.3:compile
[DEBUG] org.apache.cxf:cxf-api:jar:2.6.3:compile
[DEBUG] org.codehaus.woodstox:woodstox-core-asl:jar:4.1.4:runtime
[DEBUG] org.codehaus.woodstox:stax2-api:jar:3.1.1:runtime
[DEBUG] org.apache.ws.xmlschema:xmlschema-core:jar:2.0.3:compile
[DEBUG] wsdl4j:wsdl4j:jar:1.6.2:compile
[DEBUG] org.apache.cxf:cxf-rt-core:jar:2.6.3:compile
[DEBUG] com.sun.xml.bind:jaxb-impl:jar:2.2.5:compile
[DEBUG] javax.ws.rs:jsr311-api:jar:1.1.1:compile
[DEBUG] org.apache.cxf:cxf-rt-bindings-xml:jar:2.6.3:compile
[DEBUG] org.apache.cxf:cxf-rt-transports-http:jar:2.6.3:compile
[DEBUG] com.fasterxml.jackson.core:jackson-core:jar:2.1.0:compile
[DEBUG] com.fasterxml.jackson.core:jackson-databind:jar:2.1.0:compile
[DEBUG] com.fasterxml.jackson.core:jackson-annotations:jar:2.1.0:compile
[DEBUG] org.apache.velocity:velocity:jar:1.7:compile
[DEBUG] org.apache.velocity:velocity-tools:jar:2.0:compile
[DEBUG] commons-beanutils:commons-beanutils:jar:1.7.0:compile
[DEBUG] commons-digester:commons-digester:jar:1.8:compile
[DEBUG] commons-chain:commons-chain:jar:1.1:compile
[DEBUG] dom4j:dom4j:jar:1.1:compile
[DEBUG] oro:oro:jar:2.0.8:compile
[DEBUG] sslext:sslext:jar:1.2-0:compile
[DEBUG] org.apache.struts:struts-core:jar:1.3.8:compile
[DEBUG] antlr:antlr:jar:2.7.2:compile
[DEBUG] org.apache.struts:struts-taglib:jar:1.3.8:compile
[DEBUG] org.apache.struts:struts-tiles:jar:1.3.8:compile
[DEBUG] xml-apis:xml-apis:jar:1.3.04:compile
[DEBUG] xerces:xercesImpl:jar:2.9.1:compile
[DEBUG] org.apache.xmlrpc:xmlrpc-client:jar:3.0:compile
[DEBUG] org.apache.xmlrpc:xmlrpc-common:jar:3.0:compile
[DEBUG] org.apache.ws.commons:ws-commons-util:jar:1.0.1:compile
[DEBUG]
org.eclipse.mylyn.github:org.eclipse.egit.github.core:jar:1.2.0:compile
[DEBUG] org.apache.httpcomponents:httpmime:jar:4.1.2:compile
[DEBUG] com.google.code.gson:gson:jar:1.7.2:compile
[DEBUG] org.apache.httpcomponents:httpcore:jar:4.1.2:compile
[DEBUG] org.apache.httpcomponents:httpclient:jar:4.1.2:compile
[DEBUG] rome:rome:jar:1.0:compile
[DEBUG] jdom:jdom:jar:1.0:compile
[DEBUG] Created new class realm
plugin>org.apache.maven.plugins:maven-changes-plugin:2.12-SNAPSHOT
[DEBUG] Importing foreign packages into class realm
plugin>org.apache.maven.plugins:maven-changes-plugin:2.12-SNAPSHOT
[DEBUG] Imported: < maven.api
[DEBUG] Populating class realm
plugin>org.apache.maven.plugins:maven-changes-plugin:2.12-SNAPSHOT
[DEBUG] Included:
org.apache.maven.plugins:maven-changes-plugin:jar:2.12-SNAPSHOT
[DEBUG] Included: org.slf4j:slf4j-jdk14:jar:1.5.6
[DEBUG] Included: org.slf4j:slf4j-api:jar:1.5.6
[DEBUG] Included: org.slf4j:jcl-over-slf4j:jar:1.5.6
[DEBUG] Included: commons-cli:commons-cli:jar:1.2
[DEBUG] Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4
[DEBUG] Included: backport-util-concurrent:backport-util-concurrent:jar:3.1
[DEBUG] Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3
[DEBUG] Included: org.sonatype.plexus:plexus-cipher:jar:1.4
[DEBUG] Included: org.apache.maven.reporting:maven-reporting-api:jar:3.0
[DEBUG] Included: org.apache.maven.reporting:maven-reporting-impl:jar:2.3
[DEBUG] Included: org.apache.maven.shared:maven-shared-utils:jar:0.6
[DEBUG] Included: com.google.code.findbugs:jsr305:jar:2.0.1
[DEBUG] Included: commons-validator:commons-validator:jar:1.3.1
[DEBUG] Included: org.apache.maven.shared:maven-filtering:jar:1.3
[DEBUG] Included: org.sonatype.plexus:plexus-build-api:jar:0.0.4
[DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.21
[DEBUG] Included: org.codehaus.plexus:plexus-mail-sender-api:jar:1.0-alpha-7
[DEBUG] Included:
org.apache.geronimo.javamail:geronimo-javamail_1.4_provider:jar:1.7
[DEBUG] Included: org.apache.geronimo.specs:geronimo-javamail_1.4_spec:jar:1.7
[DEBUG] Included:
org.apache.geronimo.javamail:geronimo-javamail_1.4_mail:jar:1.7
[DEBUG] Included:
org.codehaus.plexus:plexus-mail-sender-javamail:jar:1.0-alpha-7
[DEBUG] Included: javax.mail:mail:jar:1.4
[DEBUG] Included: javax.activation:activation:jar:1.1
[DEBUG] Included:
org.codehaus.plexus:plexus-mail-sender-simple:jar:1.0-alpha-7
[DEBUG] Included: org.codehaus.plexus:plexus-i18n:jar:1.0-beta-7
[DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:2.0.5
[DEBUG] Included: org.codehaus.plexus:plexus-velocity:jar:1.1.8
[DEBUG] Included: commons-collections:commons-collections:jar:3.0
[DEBUG] Included: commons-httpclient:commons-httpclient:jar:3.0.1
[DEBUG] Included: junit:junit:jar:3.8.1
[DEBUG] Included: commons-codec:commons-codec:jar:1.2
[DEBUG] Included: commons-io:commons-io:jar:2.2
[DEBUG] Included: commons-lang:commons-lang:jar:2.6
[DEBUG] Included: commons-logging:commons-logging:jar:1.1.1
[DEBUG] Included: org.apache.maven.doxia:doxia-core:jar:1.4
[DEBUG] Included: org.apache.maven.doxia:doxia-logging-api:jar:1.4
[DEBUG] Included: org.codehaus.plexus:plexus-component-annotations:jar:1.5.5
[DEBUG] Included: org.apache.maven.doxia:doxia-module-xhtml:jar:1.4
[DEBUG] Included: org.apache.maven.doxia:doxia-sink-api:jar:1.4
[DEBUG] Included: org.apache.maven.doxia:doxia-decoration-model:jar:1.4
[DEBUG] Included: org.apache.maven.doxia:doxia-site-renderer:jar:1.4
[DEBUG] Included: org.apache.maven.doxia:doxia-module-fml:jar:1.4
[DEBUG] Included: org.apache.cxf:cxf-rt-frontend-jaxrs:jar:2.6.3
[DEBUG] Included: org.apache.cxf:cxf-api:jar:2.6.3
[DEBUG] Included: org.codehaus.woodstox:woodstox-core-asl:jar:4.1.4
[DEBUG] Included: org.codehaus.woodstox:stax2-api:jar:3.1.1
[DEBUG] Included: org.apache.ws.xmlschema:xmlschema-core:jar:2.0.3
[DEBUG] Included: wsdl4j:wsdl4j:jar:1.6.2
[DEBUG] Included: org.apache.cxf:cxf-rt-core:jar:2.6.3
[DEBUG] Included: com.sun.xml.bind:jaxb-impl:jar:2.2.5
[DEBUG] Included: javax.ws.rs:jsr311-api:jar:1.1.1
[DEBUG] Included: org.apache.cxf:cxf-rt-bindings-xml:jar:2.6.3
[DEBUG] Included: org.apache.cxf:cxf-rt-transports-http:jar:2.6.3
[DEBUG] Included: com.fasterxml.jackson.core:jackson-core:jar:2.1.0
[DEBUG] Included: com.fasterxml.jackson.core:jackson-databind:jar:2.1.0
[DEBUG] Included: com.fasterxml.jackson.core:jackson-annotations:jar:2.1.0
[DEBUG] Included: org.apache.velocity:velocity:jar:1.7
[DEBUG] Included: org.apache.velocity:velocity-tools:jar:2.0
[DEBUG] Included: commons-beanutils:commons-beanutils:jar:1.7.0
[DEBUG] Included: commons-digester:commons-digester:jar:1.8
[DEBUG] Included: commons-chain:commons-chain:jar:1.1
[DEBUG] Included: dom4j:dom4j:jar:1.1
[DEBUG] Included: oro:oro:jar:2.0.8
[DEBUG] Included: sslext:sslext:jar:1.2-0
[DEBUG] Included: org.apache.struts:struts-core:jar:1.3.8
[DEBUG] Included: antlr:antlr:jar:2.7.2
[DEBUG] Included: org.apache.struts:struts-taglib:jar:1.3.8
[DEBUG] Included: org.apache.struts:struts-tiles:jar:1.3.8
[DEBUG] Included: xml-apis:xml-apis:jar:1.3.04
[DEBUG] Included: xerces:xercesImpl:jar:2.9.1
[DEBUG] Included: org.apache.xmlrpc:xmlrpc-client:jar:3.0
[DEBUG] Included: org.apache.xmlrpc:xmlrpc-common:jar:3.0
[DEBUG] Included: org.apache.ws.commons:ws-commons-util:jar:1.0.1
[DEBUG] Included:
org.eclipse.mylyn.github:org.eclipse.egit.github.core:jar:1.2.0
[DEBUG] Included: org.apache.httpcomponents:httpmime:jar:4.1.2
[DEBUG] Included: com.google.code.gson:gson:jar:1.7.2
[DEBUG] Included: org.apache.httpcomponents:httpcore:jar:4.1.2
[DEBUG] Included: org.apache.httpcomponents:httpclient:jar:4.1.2
[DEBUG] Included: rome:rome:jar:1.0
[DEBUG] Included: jdom:jdom:jar:1.0
[DEBUG] Excluded: org.apache.maven:maven-core:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-plugin-parameter-documenter:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-profile:jar:2.2.1
[DEBUG] Excluded:
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1
[DEBUG] Excluded: org.apache.maven:maven-repository-metadata:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-error-diagnostics:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-plugin-descriptor:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-artifact-manager:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-monitor:jar:2.2.1
[DEBUG] Excluded: classworlds:classworlds:jar:1.1
[DEBUG] Excluded: org.apache.maven:maven-artifact:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-model:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-plugin-api:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-project:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-plugin-registry:jar:2.2.1
[DEBUG] Excluded: org.apache.maven:maven-settings:jar:2.2.1
[DEBUG] Configuring mojo
org.apache.maven.plugins:maven-changes-plugin:2.12-SNAPSHOT:jira-report from
plugin realm
ClassRealm[plugin>org.apache.maven.plugins:maven-changes-plugin:2.12-SNAPSHOT,
parent: sun.misc.Launcher$AppClassLoader@18e3f02a]
[DEBUG] Setting property: classpath.resource.loader.class =>
'org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader'.
[DEBUG] Setting property: site.resource.loader.class =>
'org.codehaus.plexus.velocity.SiteResourceLoader'.
[DEBUG] Setting property: velocimacro.messages.on => 'false'.
[DEBUG] Setting property: resource.loader => 'classpath,site'.
[DEBUG] Setting property: runtime.log.invalid.references => 'false'.
[DEBUG] Setting property: resource.manager.logwhenfound => 'false'.
[DEBUG] Setting property:
velocimacro.permissions.allow.inline.to.replace.global => 'true'.
[DEBUG] Initializing Velocity, Calling init()...
[DEBUG] *******************************************************************
[DEBUG] Starting Apache Velocity v1.7 (compiled: 2010-11-19 12:14:37)
[DEBUG] RuntimeInstance initializing.
[DEBUG] Default Properties File:
org\apache\velocity\runtime\defaults\velocity.properties
[DEBUG] LogSystem has been deprecated. Please use a LogChute implementation.
[DEBUG] Default ResourceManager initializing. (class
org.apache.velocity.runtime.resource.ResourceManagerImpl)
[DEBUG] ResourceLoader instantiated:
org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader
[DEBUG] ResourceLoader instantiated:
org.codehaus.plexus.velocity.SiteResourceLoader
[DEBUG] ResourceCache: initialized (class
org.apache.velocity.runtime.resource.ResourceCacheImpl) with class
java.util.Collections$SynchronizedMap cache map.
[DEBUG] Default ResourceManager initialization complete.
[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Stop
[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Define
[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Break
[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Evaluate
[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Literal
[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Macro
[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Parse
[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Include
[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Foreach
[DEBUG] Created '20' parsers.
[DEBUG] Velocimacro : initialization starting.
[DEBUG] Velocimacro : allowInline = true : VMs can be defined inline in
templates
[DEBUG] Velocimacro : allowInlineToOverride = true : VMs defined inline may
replace previous VM definitions
[DEBUG] Velocimacro : allowInlineLocal = false : VMs defined inline will be
global in scope if allowed.
[DEBUG] Velocimacro : autoload off : VM system will not automatically reload
global library macros
[DEBUG] Velocimacro : Velocimacro : initialization complete.
[DEBUG] RuntimeInstance successfully initialized.
[DEBUG] Configuring mojo
'org.apache.maven.plugins:maven-changes-plugin:2.12-SNAPSHOT:jira-report' with
basic configurator -->
[DEBUG] (f) basedir =
C:\Users\Kai\git\corporate-data-league\webservice-repository
[DEBUG] (f) columnNames = Key,Summary,Status,Resolution,Assignee
[DEBUG] (f) forceRss = false
[DEBUG] (f) inputEncoding = UTF-8
[DEBUG] (f) jiraDatePattern = EEE, d MMM yyyy HH:mm:ss Z
[DEBUG] (f) jiraXmlPath =
C:\Users\Kai\git\corporate-data-league\webservice-repository\target\jira-results.xml
[DEBUG] (f) localRepository = id: local
url: file:///C:/Users/Kai/.m2/repository/
layout: none
[DEBUG] (f) mavenSession = org.apache.maven.execution.MavenSession@1e793e35
[DEBUG] (f) maxEntries = 100
[DEBUG] (f) onlyCurrentVersion = false
[DEBUG] (f) outputDirectory =
C:\Users\Kai\git\corporate-data-league\webservice-repository\target\site
[DEBUG] (f) project = MavenProject: cdq.cdl:cdl-ws-repository:0.0.1-SNAPSHOT
@ C:\Users\Kai\git\corporate-data-league\webservice-repository\pom.xml
[DEBUG] (f) resolutionIds = Fixed
[DEBUG] (f) runOnlyAtExecutionRoot = false
[DEBUG] (f) settings = org.apache.maven.execution.SettingsAdapter@397b0012
[DEBUG] (f) skip = false
[DEBUG] (f) sortColumnNames = Priority DESC, Created DESC
[DEBUG] (f) statusIds = Closed
[DEBUG] (f) useJql = false
[DEBUG] -- end configuration --
[DEBUG] RestJiraDownloader: connectionTimeout: 0
[DEBUG] RestJiraDownloader: receiveTimout: 0
Okt 30, 2014 12:36:56 PM org.apache.cxf.interceptor.LoggingOutInterceptor
INFO: Outbound Message
---------------------------
ID: 1
Address: https://jira.codehaus.org/rest/api/2/serverInfo
Http-Method: GET
Content-Type: */*
Headers: {Accept=[application/json], Content-Type=[*/*]}
--------------------------------------
Okt 30, 2014 12:36:59 PM org.apache.cxf.phase.PhaseInterceptorChain
doDefaultLogging
WARNING: Interceptor for {https://jira.codehaus.org}WebClient has thrown
exception, unwinding now
org.apache.cxf.interceptor.Fault: Could not send Message.
at
org.apache.cxf.interceptor.MessageSenderInterceptor$MessageSenderEndingInterceptor.handleMessage(MessageSenderInterceptor.java:64)
at
org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:262)
at
org.apache.cxf.jaxrs.client.WebClient.doChainedInvocation(WebClient.java:795)
at org.apache.cxf.jaxrs.client.WebClient.doInvoke(WebClient.java:743)
at org.apache.cxf.jaxrs.client.WebClient.doInvoke(WebClient.java:717)
at org.apache.cxf.jaxrs.client.WebClient.invoke(WebClient.java:262)
at org.apache.cxf.jaxrs.client.WebClient.get(WebClient.java:288)
at
org.apache.maven.plugin.jira.RestJiraDownloader.doExecute(RestJiraDownloader.java:122)
at
org.apache.maven.plugin.jira.AdaptiveJiraDownloader.doExecute(AdaptiveJiraDownloader.java:47)
at
org.apache.maven.plugin.jira.JiraMojo.executeReport(JiraMojo.java:372)
at
org.apache.maven.reporting.AbstractMavenReport.generate(AbstractMavenReport.java:255)
at
org.apache.maven.reporting.AbstractMavenReport.generate(AbstractMavenReport.java:210)
at
org.apache.maven.plugin.changes.AbstractChangesReport.execute(AbstractChangesReport.java:207)
at
org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:101)
at
org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:209)
at
org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)
at
org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)
at
org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:84)
at
org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:59)
at
org.apache.maven.lifecycle.internal.LifecycleStarter.singleThreadedBuild(LifecycleStarter.java:183)
at
org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:161)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:320)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:156)
at org.apache.maven.cli.MavenCli.execute(MavenCli.java:537)
at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:196)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:141)
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.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:290)
at
org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:230)
at
org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:409)
at
org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:352)
Caused by: javax.net.ssl.SSLHandshakeException: SSLHandshakeException invoking
https://jira.codehaus.org/rest/api/2/serverInfo:
sun.security.validator.ValidatorException: PKIX path building failed:
sun.security.provider.certpath.SunCertPathBuilderException: unable to find
valid certification path to requested target
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at
sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
at
sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:526)
at
org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.mapException(HTTPConduit.java:1467)
at
org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.close(HTTPConduit.java:1452)
at
org.apache.cxf.io.CacheAndWriteOutputStream.postClose(CacheAndWriteOutputStream.java:50)
at
org.apache.cxf.io.CachedOutputStream.close(CachedOutputStream.java:189)
at
org.apache.cxf.transport.AbstractConduit.close(AbstractConduit.java:56)
at org.apache.cxf.transport.http.HTTPConduit.close(HTTPConduit.java:660)
at
org.apache.cxf.interceptor.MessageSenderInterceptor$MessageSenderEndingInterceptor.handleMessage(MessageSenderInterceptor.java:62)
... 33 more
Caused by: javax.net.ssl.SSLHandshakeException:
sun.security.validator.ValidatorException: PKIX path building failed:
sun.security.provider.certpath.SunCertPathBuilderException: unable to find
valid certification path to requested target
at sun.security.ssl.Alerts.getSSLException(Alerts.java:192)
at sun.security.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1884)
at sun.security.ssl.Handshaker.fatalSE(Handshaker.java:276)
at sun.security.ssl.Handshaker.fatalSE(Handshaker.java:270)
at
sun.security.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:1341)
at
sun.security.ssl.ClientHandshaker.processMessage(ClientHandshaker.java:153)
at sun.security.ssl.Handshaker.processLoop(Handshaker.java:868)
at sun.security.ssl.Handshaker.process_record(Handshaker.java:804)
at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:1016)
at
sun.security.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1312)
at
sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1339)
at
sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1323)
at
sun.net.www.protocol.https.HttpsClient.afterConnect(HttpsClient.java:563)
at
sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:185)
at
sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1300)
at
java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:468)
at
sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:338)
at
org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.handleResponseInternal(HTTPConduit.java:1604)
at
org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.handleResponse(HTTPConduit.java:1530)
at
org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.close(HTTPConduit.java:1438)
... 38 more
Caused by: sun.security.validator.ValidatorException: PKIX path building
failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to
find valid certification path to requested target
at sun.security.validator.PKIXValidator.doBuild(PKIXValidator.java:385)
at
sun.security.validator.PKIXValidator.engineValidate(PKIXValidator.java:292)
at sun.security.validator.Validator.validate(Validator.java:260)
at
sun.security.ssl.X509TrustManagerImpl.validate(X509TrustManagerImpl.java:326)
at
sun.security.ssl.X509TrustManagerImpl.checkTrusted(X509TrustManagerImpl.java:231)
at
sun.security.ssl.X509TrustManagerImpl.checkServerTrusted(X509TrustManagerImpl.java:126)
at
sun.security.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:1323)
... 53 more
Caused by: sun.security.provider.certpath.SunCertPathBuilderException: unable
to find valid certification path to requested target
at
sun.security.provider.certpath.SunCertPathBuilder.engineBuild(SunCertPathBuilder.java:196)
at java.security.cert.CertPathBuilder.build(CertPathBuilder.java:268)
at sun.security.validator.PKIXValidator.doBuild(PKIXValidator.java:380)
... 59 more
[WARNING]
org.apache.cxf.jaxrs.client.ClientWebApplicationException:
org.apache.cxf.jaxrs.client.ClientWebApplicationException:
org.apache.cxf.interceptor.Fault: Could not send Message.
at
org.apache.cxf.jaxrs.client.WebClient.doChainedInvocation(WebClient.java:807)
at org.apache.cxf.jaxrs.client.WebClient.doInvoke(WebClient.java:743)
at org.apache.cxf.jaxrs.client.WebClient.doInvoke(WebClient.java:717)
at org.apache.cxf.jaxrs.client.WebClient.invoke(WebClient.java:262)
at org.apache.cxf.jaxrs.client.WebClient.get(WebClient.java:288)
at
org.apache.maven.plugin.jira.RestJiraDownloader.doExecute(RestJiraDownloader.java:122)
at
org.apache.maven.plugin.jira.AdaptiveJiraDownloader.doExecute(AdaptiveJiraDownloader.java:47)
at
org.apache.maven.plugin.jira.JiraMojo.executeReport(JiraMojo.java:372)
at
org.apache.maven.reporting.AbstractMavenReport.generate(AbstractMavenReport.java:255)
at
org.apache.maven.reporting.AbstractMavenReport.generate(AbstractMavenReport.java:210)
at
org.apache.maven.plugin.changes.AbstractChangesReport.execute(AbstractChangesReport.java:207)
at
org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:101)
at
org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:209)
at
org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)
at
org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)
at
org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:84)
at
org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:59)
at
org.apache.maven.lifecycle.internal.LifecycleStarter.singleThreadedBuild(LifecycleStarter.java:183)
at
org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:161)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:320)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:156)
at org.apache.maven.cli.MavenCli.execute(MavenCli.java:537)
at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:196)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:141)
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.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:290)
at
org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:230)
at
org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:409)
at
org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:352)
Caused by: org.apache.cxf.jaxrs.client.ClientWebApplicationException:
org.apache.cxf.interceptor.Fault: Could not send Message.
at
org.apache.cxf.jaxrs.client.AbstractClient.checkClientException(AbstractClient.java:497)
at
org.apache.cxf.jaxrs.client.AbstractClient.preProcessResult(AbstractClient.java:483)
at
org.apache.cxf.jaxrs.client.WebClient.doChainedInvocation(WebClient.java:800)
... 31 more
Caused by: org.apache.cxf.interceptor.Fault: Could not send Message.
at
org.apache.cxf.interceptor.MessageSenderInterceptor$MessageSenderEndingInterceptor.handleMessage(MessageSenderInterceptor.java:64)
at
org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:262)
at
org.apache.cxf.jaxrs.client.WebClient.doChainedInvocation(WebClient.java:795)
... 31 more
Caused by: javax.net.ssl.SSLHandshakeException: SSLHandshakeException invoking
https://jira.codehaus.org/rest/api/2/serverInfo:
sun.security.validator.ValidatorException: PKIX path building failed:
sun.security.provider.certpath.SunCertPathBuilderException: unable to find
valid certification path to requested target
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at
sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
at
sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:526)
at
org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.mapException(HTTPConduit.java:1467)
at
org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.close(HTTPConduit.java:1452)
at
org.apache.cxf.io.CacheAndWriteOutputStream.postClose(CacheAndWriteOutputStream.java:50)
at
org.apache.cxf.io.CachedOutputStream.close(CachedOutputStream.java:189)
at
org.apache.cxf.transport.AbstractConduit.close(AbstractConduit.java:56)
at org.apache.cxf.transport.http.HTTPConduit.close(HTTPConduit.java:660)
at
org.apache.cxf.interceptor.MessageSenderInterceptor$MessageSenderEndingInterceptor.handleMessage(MessageSenderInterceptor.java:62)
... 33 more
Caused by: javax.net.ssl.SSLHandshakeException:
sun.security.validator.ValidatorException: PKIX path building failed:
sun.security.provider.certpath.SunCertPathBuilderException: unable to find
valid certification path to requested target
at sun.security.ssl.Alerts.getSSLException(Alerts.java:192)
at sun.security.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1884)
at sun.security.ssl.Handshaker.fatalSE(Handshaker.java:276)
at sun.security.ssl.Handshaker.fatalSE(Handshaker.java:270)
at
sun.security.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:1341)
at
sun.security.ssl.ClientHandshaker.processMessage(ClientHandshaker.java:153)
at sun.security.ssl.Handshaker.processLoop(Handshaker.java:868)
at sun.security.ssl.Handshaker.process_record(Handshaker.java:804)
at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:1016)
at
sun.security.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1312)
at
sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1339)
at
sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1323)
at
sun.net.www.protocol.https.HttpsClient.afterConnect(HttpsClient.java:563)
at
sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:185)
at
sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1300)
at
java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:468)
at
sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:338)
at
org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.handleResponseInternal(HTTPConduit.java:1604)
at
org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.handleResponse(HTTPConduit.java:1530)
at
org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.close(HTTPConduit.java:1438)
... 38 more
Caused by: sun.security.validator.ValidatorException: PKIX path building
failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to
find valid certification path to requested target
at sun.security.validator.PKIXValidator.doBuild(PKIXValidator.java:385)
at
sun.security.validator.PKIXValidator.engineValidate(PKIXValidator.java:292)
at sun.security.validator.Validator.validate(Validator.java:260)
at
sun.security.ssl.X509TrustManagerImpl.validate(X509TrustManagerImpl.java:326)
at
sun.security.ssl.X509TrustManagerImpl.checkTrusted(X509TrustManagerImpl.java:231)
at
sun.security.ssl.X509TrustManagerImpl.checkServerTrusted(X509TrustManagerImpl.java:126)
at
sun.security.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:1323)
... 53 more
Caused by: sun.security.provider.certpath.SunCertPathBuilderException: unable
to find valid certification path to requested target
at
sun.security.provider.certpath.SunCertPathBuilder.engineBuild(SunCertPathBuilder.java:196)
at java.security.cert.CertPathBuilder.build(CertPathBuilder.java:268)
at sun.security.validator.PKIXValidator.doBuild(PKIXValidator.java:380)
... 59 more
[DEBUG] Velocimacro : added VM link:
source=org/apache/maven/doxia/siterenderer/resources/default-site.vm
[DEBUG] Velocimacro : added VM image:
source=org/apache/maven/doxia/siterenderer/resources/default-site.vm
[DEBUG] Velocimacro : added VM banner:
source=org/apache/maven/doxia/siterenderer/resources/default-site.vm
[DEBUG] Velocimacro : added VM links:
source=org/apache/maven/doxia/siterenderer/resources/default-site.vm
[DEBUG] Velocimacro : added VM breadcrumbs:
source=org/apache/maven/doxia/siterenderer/resources/default-site.vm
[DEBUG] Velocimacro : added VM displayTree:
source=org/apache/maven/doxia/siterenderer/resources/default-site.vm
[DEBUG] Velocimacro : added VM menuItem:
source=org/apache/maven/doxia/siterenderer/resources/default-site.vm
[DEBUG] Velocimacro : added VM mainMenu:
source=org/apache/maven/doxia/siterenderer/resources/default-site.vm
[DEBUG] Velocimacro : added VM copyright:
source=org/apache/maven/doxia/siterenderer/resources/default-site.vm
[DEBUG] Velocimacro : added VM publishDate:
source=org/apache/maven/doxia/siterenderer/resources/default-site.vm
[DEBUG] Velocimacro : added VM poweredByLogo:
source=org/apache/maven/doxia/siterenderer/resources/default-site.vm
[DEBUG] Velocimacro : added VM googleAnalytics:
source=org/apache/maven/doxia/siterenderer/resources/default-site.vm
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 6.596s
[INFO] Finished at: Thu Oct 30 12:37:00 CET 2014
[INFO] Final Memory: 20M/225M
[INFO] ------------------------------------------------------------------------
{code}
I also tried to call the JIRA OnDemand REST interface in a REST client. This
way, I realised that authentication is crucial for the OnDemand instance:
* If I try to access https://bei-sg.atlassian.net/rest/api/2/status without any
authentication header, I get a 415 response
* If I try to access with an empty authentication header, I get a 200 response,
but an empty payload (+{color:red}is this the bug?{color}+)
* If I access the service with my valid credentials, I receive the expected
data.
My analysis:
* Calling a remote JIRA instance without HTTPS works fine
* Calling a remote JIRA instance with HTTPS causes an error due to failing
certificate identification
* {color:red}+Calling the OnDemand JIRA instance causes an error due to missing
authentication: If you check the debug messages, you see the
{{X-AUSERNAME=[anonymous]}} despite provided {{jiraUser}} and {{webUser}} in
the {{configuration}} tag.+{color}
I also found MCHANGES-307 providing a patch, but this patch (applied to current
snapshot) does not change anything.
Hope you guys understand the issue and can fix it? I am absolutely new to
maven plugin sources and have no clue where to look at and how to contribute
... sorry.
--
This message was sent by Atlassian JIRA
(v6.1.6#6162)