Re: Build failed in Jenkins: Struts-JDK8-master #31

2015-10-13 Thread Lukasz Lenart
2015-10-08 14:52 GMT+02:00 Christoph Nenning <christoph.nenn...@lex-com.net>:
>> From: Johannes Geppert <jo...@apache.org>
>> To: Struts Developers List <dev@struts.apache.org>,
>> Date: 08.10.2015 14:35
>> Subject: Re: Build failed in Jenkins: Struts-JDK8-master #31
>>
>> This summer I refactored all java docs to be compliant with JDK8.
>> And for me it works. On build all this java doc errors does not pops up
>> anymore.
>>
>> I would try to avoid ignoring this kind of errors, better provide valid
>> java docs.
>
> I agree with that. Ignoring it would just have been a simple way to get it
> working at all.
>
>
>
>
>> But I don't find any reference in the java docs to the
>> org.springframework.core.io.DefaultResourceLoader file.
>>
>> May something is depending from the JDK version?
>>
>
>
> Some more details:
>
> - the error occurs when generating:
> plugins/portlet/target/site/apidocs/serialized-form.html
>
> - portlet plugin has a dependency on spring for tests
>
> - when I declare spring as compile dependency the javadoc generation works
>
> - serialized-form.html has no entry for any spring stuff
>
>
> So I guess the maven classpaths for compile and test get mixed up. Maybe
> own classes from both configurations are processed by javadoc but just
> compile-dependencies are added to javadoc's classpath?

I have no clue what can it be - I have been trying many different
settings with maven-javadoc-plugin but it didn't help :(


Regards
-- 
Łukasz
+ 48 606 323 122 http://www.lenart.org.pl/

-
To unsubscribe, e-mail: dev-unsubscr...@struts.apache.org
For additional commands, e-mail: dev-h...@struts.apache.org



Re: Build failed in Jenkins: Struts-JDK8-master #31

2015-10-08 Thread Christoph Nenning
> From: Lukasz Lenart <lukaszlen...@apache.org>
> To: Struts Developers List <dev@struts.apache.org>, 
> Date: 06.10.2015 20:25
> Subject: Re: Build failed in Jenkins: Struts-JDK8-master #31
> 
> Any idea why it fails?
> 
> [ERROR] Failed to execute goal
> org.apache.maven.plugins:maven-javadoc-plugin:2.8:jar (default-cli) on
> project struts2-portlet-plugin: MavenReportException: Error while
> creating archive:
> [ERROR] Exit code: 1 - javadoc: error -
> com.sun.tools.doclets.internal.toolkit.util.DocletAbortException:
> com.sun.tools.javac.code.Symbol$CompletionFailure: class file for
> org.springframework.core.io.DefaultResourceLoader not found
> 
> 

At least I could reproduce the error:

cd plugins/portlet
mvn clean javadoc:javadoc


Happens with jdk8 only.
When I do 'mvn package' no javadoc is generated and thus I did not get 
this error before.


That may happen due to the new doclint option of javadoc:

http://docs.oracle.com/javase/8/docs/technotes/guides/javadoc/whatsnew-8.html

In maven it should be possible to disable it with:
-Xdoclint:none

http://maven.apache.org/plugins/maven-javadoc-plugin/javadoc-mojo.html#additionalparam

But I'm not able to get this working.

The javadoc commandline logged by maven still did not include 
-Xdoclint:none.


Regards,
Christoph

This Email was scanned by Sophos Anti Virus


Re: Build failed in Jenkins: Struts-JDK8-master #31

2015-10-08 Thread Johannes Geppert
This summer I refactored all java docs to be compliant with JDK8.
And for me it works. On build all this java doc errors does not pops up
anymore.

I would try to avoid ignoring this kind of errors, better provide valid
java docs.
But I don't find any reference in the java docs to the
org.springframework.core.io.DefaultResourceLoader file.

May something is depending from the JDK version?

Johannes

#
web: http://www.jgeppert.com
twitter: http://twitter.com/jogep


2015-10-08 13:45 GMT+02:00 Christoph Nenning <christoph.nenn...@lex-com.net>
:

> > From: Lukasz Lenart <lukaszlen...@apache.org>
> > To: Struts Developers List <dev@struts.apache.org>,
> > Date: 06.10.2015 20:25
> > Subject: Re: Build failed in Jenkins: Struts-JDK8-master #31
> >
> > Any idea why it fails?
> >
> > [ERROR] Failed to execute goal
> > org.apache.maven.plugins:maven-javadoc-plugin:2.8:jar (default-cli) on
> > project struts2-portlet-plugin: MavenReportException: Error while
> > creating archive:
> > [ERROR] Exit code: 1 - javadoc: error -
> > com.sun.tools.doclets.internal.toolkit.util.DocletAbortException:
> > com.sun.tools.javac.code.Symbol$CompletionFailure: class file for
> > org.springframework.core.io.DefaultResourceLoader not found
> >
> >
>
> At least I could reproduce the error:
>
> cd plugins/portlet
> mvn clean javadoc:javadoc
>
>
> Happens with jdk8 only.
> When I do 'mvn package' no javadoc is generated and thus I did not get
> this error before.
>
>
> That may happen due to the new doclint option of javadoc:
>
>
> http://docs.oracle.com/javase/8/docs/technotes/guides/javadoc/whatsnew-8.html
>
> In maven it should be possible to disable it with:
> -Xdoclint:none
>
>
> http://maven.apache.org/plugins/maven-javadoc-plugin/javadoc-mojo.html#additionalparam
>
> But I'm not able to get this working.
>
> The javadoc commandline logged by maven still did not include
> -Xdoclint:none.
>
>
> Regards,
> Christoph
>
> This Email was scanned by Sophos Anti Virus
>


Re: Build failed in Jenkins: Struts-JDK8-master #31

2015-10-08 Thread Christoph Nenning
> From: Johannes Geppert <jo...@apache.org>
> To: Struts Developers List <dev@struts.apache.org>, 
> Date: 08.10.2015 14:35
> Subject: Re: Build failed in Jenkins: Struts-JDK8-master #31
> 
> This summer I refactored all java docs to be compliant with JDK8.
> And for me it works. On build all this java doc errors does not pops up
> anymore.
> 
> I would try to avoid ignoring this kind of errors, better provide valid
> java docs.

I agree with that. Ignoring it would just have been a simple way to get it 
working at all.




> But I don't find any reference in the java docs to the
> org.springframework.core.io.DefaultResourceLoader file.
> 
> May something is depending from the JDK version?
> 


Some more details:

- the error occurs when generating:
plugins/portlet/target/site/apidocs/serialized-form.html

- portlet plugin has a dependency on spring for tests

- when I declare spring as compile dependency the javadoc generation works

- serialized-form.html has no entry for any spring stuff


So I guess the maven classpaths for compile and test get mixed up. Maybe 
own classes from both configurations are processed by javadoc but just 
compile-dependencies are added to javadoc's classpath?


Regards,
Christoph




> Johannes
> 
> #
> web: http://www.jgeppert.com
> twitter: http://twitter.com/jogep
> 
> 
> 2015-10-08 13:45 GMT+02:00 Christoph Nenning 
<christoph.nenn...@lex-com.net>
> :
> 
> > > From: Lukasz Lenart <lukaszlen...@apache.org>
> > > To: Struts Developers List <dev@struts.apache.org>,
> > > Date: 06.10.2015 20:25
> > > Subject: Re: Build failed in Jenkins: Struts-JDK8-master #31
> > >
> > > Any idea why it fails?
> > >
> > > [ERROR] Failed to execute goal
> > > org.apache.maven.plugins:maven-javadoc-plugin:2.8:jar (default-cli) 
on
> > > project struts2-portlet-plugin: MavenReportException: Error while
> > > creating archive:
> > > [ERROR] Exit code: 1 - javadoc: error -
> > > com.sun.tools.doclets.internal.toolkit.util.DocletAbortException:
> > > com.sun.tools.javac.code.Symbol$CompletionFailure: class file for
> > > org.springframework.core.io.DefaultResourceLoader not found
> > >
> > >
> >
> > At least I could reproduce the error:
> >
> > cd plugins/portlet
> > mvn clean javadoc:javadoc
> >
> >
> > Happens with jdk8 only.
> > When I do 'mvn package' no javadoc is generated and thus I did not get
> > this error before.
> >
> >
> > That may happen due to the new doclint option of javadoc:
> >
> >
> > http://docs.oracle.com/javase/8/docs/technotes/guides/javadoc/
> whatsnew-8.html
> >
> > In maven it should be possible to disable it with:
> > -Xdoclint:none
> >
> >
> > http://maven.apache.org/plugins/maven-javadoc-plugin/javadoc-
> mojo.html#additionalparam
> >
> > But I'm not able to get this working.
> >
> > The javadoc commandline logged by maven still did not include
> > -Xdoclint:none.
> >
> >
> > Regards,
> > Christoph
> >
> > This Email was scanned by Sophos Anti Virus
> >

This Email was scanned by Sophos Anti Virus


Re: Build failed in Jenkins: Struts-JDK8-master #31

2015-10-06 Thread Johannes Geppert
Can you build it locally? I got following test error:

---
Test set: org.apache.struts2.portlet.PortletApplicationMapTest
---
Tests run: 6, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0.049 sec
<<< FAILURE!
testEntrySet(org.apache.struts2.portlet.PortletApplicationMapTest)  Time
elapsed: 0.004 sec  <<< FAILURE!
junit.framework.AssertionFailedError: expected: but was:
at junit.framework.Assert.fail(Assert.java:57)
at junit.framework.Assert.failNotEquals(Assert.java:329)
at junit.framework.Assert.assertEquals(Assert.java:78)
at junit.framework.Assert.assertEquals(Assert.java:86)
at junit.framework.TestCase.assertEquals(TestCase.java:253)
at
org.apache.struts2.portlet.PortletApplicationMapTest.testEntrySet(PortletApplicationMapTest.java:143)


#
web: http://www.jgeppert.com
twitter: http://twitter.com/jogep

2015-10-06 20:26 GMT+02:00 Lukasz Lenart :

> Any idea why it fails?
>
> [ERROR] Failed to execute goal
> org.apache.maven.plugins:maven-javadoc-plugin:2.8:jar (default-cli) on
> project struts2-portlet-plugin: MavenReportException: Error while
> creating archive:
> [ERROR] Exit code: 1 - javadoc: error -
> com.sun.tools.doclets.internal.toolkit.util.DocletAbortException:
> com.sun.tools.javac.code.Symbol$CompletionFailure: class file for
> org.springframework.core.io.DefaultResourceLoader not found
>
>
> Regards
> --
> Łukasz
> + 48 606 323 122 http://www.lenart.org.pl/
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@struts.apache.org
> For additional commands, e-mail: dev-h...@struts.apache.org
>
>


Re: Build failed in Jenkins: Struts-JDK8-master #31

2015-10-06 Thread Lukasz Lenart
Any idea why it fails?

[ERROR] Failed to execute goal
org.apache.maven.plugins:maven-javadoc-plugin:2.8:jar (default-cli) on
project struts2-portlet-plugin: MavenReportException: Error while
creating archive:
[ERROR] Exit code: 1 - javadoc: error -
com.sun.tools.doclets.internal.toolkit.util.DocletAbortException:
com.sun.tools.javac.code.Symbol$CompletionFailure: class file for
org.springframework.core.io.DefaultResourceLoader not found


Regards
-- 
Łukasz
+ 48 606 323 122 http://www.lenart.org.pl/

-
To unsubscribe, e-mail: dev-unsubscr...@struts.apache.org
For additional commands, e-mail: dev-h...@struts.apache.org



Re: Build failed in Jenkins: Struts-JDK8-master #31

2015-09-22 Thread Christoph Nenning
> I treat this build as a remainder that we must add support for JDK8 soon 
:)

alright ;)

+1




> 
> 
> 2015-09-22 15:15 GMT+02:00 Christoph Nenning 
<christoph.nenn...@lex-com.net>:
> > AFAIK jdk8 does not include the apt tool anymore so maven-apt-plugin
> > cannot work.
> >
> >
> > See this error from output:
> >
> >> [ERROR] Failed to execute goal org.apache.myfaces.tobago:maven-apt-
> >> plugin:1.0.15:execute (default) on project struts2-core: Error
> >> starting apt compiler: com.sun.tools.apt.Main
> >
> >
> > So the build should be adjusted to work with jdk8.
> >
> >
> >
> > Regards,
> > Christoph
> >
> >
> >
> >
> > Apache Jenkins Server <jenk...@builds.apache.org> schrieb am 
22.09.2015
> > 15:05:41:
> >
> >> From: Apache Jenkins Server <jenk...@builds.apache.org>
> >> To: dev@struts.apache.org,
> >> Date: 22.09.2015 15:05
> >> Subject: Build failed in Jenkins: Struts-JDK8-master #31
> >>
> >> See <https://builds.apache.org/job/Struts-JDK8-master/31/changes>
> >>
> >> Changes:
> >>
> >> [zhouyanming] Uniform comparison
> >>
> >> --
> >> [...truncated 2058 lines...]
> >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> >> core/target/apidocs/com/opensymphony/xwork2/ognl/package-use.html...>
> >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> >>
> > core/target/apidocs/com/opensymphony/xwork2/ognl/accessor/package-
> use.html...>
> >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> >> 
core/target/apidocs/com/opensymphony/xwork2/result/package-use.html...>
> >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> >>
> > 
core/target/apidocs/com/opensymphony/xwork2/security/package-use.html...>
> >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> >> 
core/target/apidocs/com/opensymphony/xwork2/spring/package-use.html...>
> >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> >> core/target/apidocs/com/opensymphony/xwork2/spring/interceptor/
> >> package-use.html...>
> >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> >> core/target/apidocs/com/opensymphony/xwork2/test/package-use.html...>
> >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> >> core/target/apidocs/com/opensymphony/xwork2/util/package-use.html...>
> >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> >> core/target/apidocs/com/opensymphony/xwork2/util/classloader/
> >> package-use.html...>
> >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> >>
> > 
core/target/apidocs/com/opensymphony/xwork2/util/finder/package-use.html...>
> >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> >> 
core/target/apidocs/com/opensymphony/xwork2/util/fs/package-use.html...>
> >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> >>
> > core/target/apidocs/com/opensymphony/xwork2/util/location/package-
> use.html...>
> >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> >>
> > core/target/apidocs/com/opensymphony/xwork2/util/logging/package-
> use.html...>
> >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> >> core/target/apidocs/com/opensymphony/xwork2/util/logging/commons/
> >> package-use.html...>
> >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> >> core/target/apidocs/com/opensymphony/xwork2/util/logging/jdk/
> >> package-use.html...>
> >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> >> core/target/apidocs/com/opensymphony/xwork2/util/logging/log4j2/
> >> package-use.html...>
> >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> >> core/target/apidocs/com/opensymphony/xwork2/util/logging/slf4j/
> >> package-use.html...>
> >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> >>
> > core/target/apidocs/com/opensymphony/xwork2/util/profiling/
> package-use.html..
> >> .>
> >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> >>
> > core/target/apidocs/com/opensymphony/xwork2/util/reflection/
> package-us

Re: Build failed in Jenkins: Struts-JDK8-master #31

2015-09-22 Thread Aaron Johnson
WW-4402 (https://issues.apache.org/jira/browse/WW-4402) has
patch WW-4402.diff (
https://issues.apache.org/jira/secure/attachment/12734928/WW-4402.diff)
that makes the annotation processor compliant with JDK8. This is a separate
project from the main Struts project. You will have to release a new
version of this project in order to use it in the main Struts project.

The same issue has a second patch, WW-4402-struts-core.diff (
https://issues.apache.org/jira/secure/attachment/12735073/WW-4402-struts-core.diff)
that uses the new processing version in the main Struts project. I think it
uses the SNAPSHOT version since the release is not available.

On Tue, Sep 22, 2015 at 8:28 AM, Christoph Nenning <
christoph.nenn...@lex-com.net> wrote:

> > I treat this build as a remainder that we must add support for JDK8 soon
> :)
>
> alright ;)
>
> +1
>
>
>
>
> >
> >
> > 2015-09-22 15:15 GMT+02:00 Christoph Nenning
> <christoph.nenn...@lex-com.net>:
> > > AFAIK jdk8 does not include the apt tool anymore so maven-apt-plugin
> > > cannot work.
> > >
> > >
> > > See this error from output:
> > >
> > >> [ERROR] Failed to execute goal org.apache.myfaces.tobago:maven-apt-
> > >> plugin:1.0.15:execute (default) on project struts2-core: Error
> > >> starting apt compiler: com.sun.tools.apt.Main
> > >
> > >
> > > So the build should be adjusted to work with jdk8.
> > >
> > >
> > >
> > > Regards,
> > > Christoph
> > >
> > >
> > >
> > >
> > > Apache Jenkins Server <jenk...@builds.apache.org> schrieb am
> 22.09.2015
> > > 15:05:41:
> > >
> > >> From: Apache Jenkins Server <jenk...@builds.apache.org>
> > >> To: dev@struts.apache.org,
> > >> Date: 22.09.2015 15:05
> > >> Subject: Build failed in Jenkins: Struts-JDK8-master #31
> > >>
> > >> See <https://builds.apache.org/job/Struts-JDK8-master/31/changes>
> > >>
> > >> Changes:
> > >>
> > >> [zhouyanming] Uniform comparison
> > >>
> > >> --
> > >> [...truncated 2058 lines...]
> > >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> > >> core/target/apidocs/com/opensymphony/xwork2/ognl/package-use.html...>
> > >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> > >>
> > > core/target/apidocs/com/opensymphony/xwork2/ognl/accessor/package-
> > use.html...>
> > >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> > >>
> core/target/apidocs/com/opensymphony/xwork2/result/package-use.html...>
> > >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> > >>
> > >
> core/target/apidocs/com/opensymphony/xwork2/security/package-use.html...>
> > >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> > >>
> core/target/apidocs/com/opensymphony/xwork2/spring/package-use.html...>
> > >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> > >> core/target/apidocs/com/opensymphony/xwork2/spring/interceptor/
> > >> package-use.html...>
> > >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> > >> core/target/apidocs/com/opensymphony/xwork2/test/package-use.html...>
> > >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> > >> core/target/apidocs/com/opensymphony/xwork2/util/package-use.html...>
> > >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> > >> core/target/apidocs/com/opensymphony/xwork2/util/classloader/
> > >> package-use.html...>
> > >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> > >>
> > >
>
> core/target/apidocs/com/opensymphony/xwork2/util/finder/package-use.html...>
> > >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> > >>
> core/target/apidocs/com/opensymphony/xwork2/util/fs/package-use.html...>
> > >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> > >>
> > > core/target/apidocs/com/opensymphony/xwork2/util/location/package-
> > use.html...>
> > >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> > >>
> > > core/target/apidocs/com/opensymphony/xwork2/util/logging/packa

Re: Build failed in Jenkins: Struts-JDK8-master #31

2015-09-22 Thread Christoph Nenning
AFAIK jdk8 does not include the apt tool anymore so maven-apt-plugin 
cannot work.


See this error from output:

> [ERROR] Failed to execute goal org.apache.myfaces.tobago:maven-apt-
> plugin:1.0.15:execute (default) on project struts2-core: Error 
> starting apt compiler: com.sun.tools.apt.Main


So the build should be adjusted to work with jdk8.



Regards,
Christoph




Apache Jenkins Server <jenk...@builds.apache.org> schrieb am 22.09.2015 
15:05:41:

> From: Apache Jenkins Server <jenk...@builds.apache.org>
> To: dev@struts.apache.org, 
> Date: 22.09.2015 15:05
> Subject: Build failed in Jenkins: Struts-JDK8-master #31
> 
> See <https://builds.apache.org/job/Struts-JDK8-master/31/changes>
> 
> Changes:
> 
> [zhouyanming] Uniform comparison
> 
> --
> [...truncated 2058 lines...]
> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> core/target/apidocs/com/opensymphony/xwork2/ognl/package-use.html...>
> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> 
core/target/apidocs/com/opensymphony/xwork2/ognl/accessor/package-use.html...>
> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> core/target/apidocs/com/opensymphony/xwork2/result/package-use.html...>
> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> 
core/target/apidocs/com/opensymphony/xwork2/security/package-use.html...>
> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> core/target/apidocs/com/opensymphony/xwork2/spring/package-use.html...>
> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> core/target/apidocs/com/opensymphony/xwork2/spring/interceptor/
> package-use.html...>
> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> core/target/apidocs/com/opensymphony/xwork2/test/package-use.html...>
> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> core/target/apidocs/com/opensymphony/xwork2/util/package-use.html...>
> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> core/target/apidocs/com/opensymphony/xwork2/util/classloader/
> package-use.html...>
> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> 
core/target/apidocs/com/opensymphony/xwork2/util/finder/package-use.html...>
> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> core/target/apidocs/com/opensymphony/xwork2/util/fs/package-use.html...>
> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> 
core/target/apidocs/com/opensymphony/xwork2/util/location/package-use.html...>
> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> 
core/target/apidocs/com/opensymphony/xwork2/util/logging/package-use.html...>
> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> core/target/apidocs/com/opensymphony/xwork2/util/logging/commons/
> package-use.html...>
> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> core/target/apidocs/com/opensymphony/xwork2/util/logging/jdk/
> package-use.html...>
> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> core/target/apidocs/com/opensymphony/xwork2/util/logging/log4j2/
> package-use.html...>
> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> core/target/apidocs/com/opensymphony/xwork2/util/logging/slf4j/
> package-use.html...>
> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> 
core/target/apidocs/com/opensymphony/xwork2/util/profiling/package-use.html..
> .>
> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> 
core/target/apidocs/com/opensymphony/xwork2/util/reflection/package-use.html..
> .>
> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> 
core/target/apidocs/com/opensymphony/xwork2/validator/package-use.html...>
> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> core/target/apidocs/com/opensymphony/xwork2/validator/annotations/
> package-use.html...>
> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> core/target/apidocs/com/opensymphony/xwork2/validator/validators/
> package-use.html...>
> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> core/target/apidocs/org/apache/struts2/package-use.html...>
> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> core/target/apidocs/org/apache/struts2/components/package-use.html...>
> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> 
core/target/apidocs/org/apache/struts2/components/template/package-use.html..
> .>
> Generating <https://builds.apache.or

Build failed in Jenkins: Struts-JDK8-master #31

2015-09-22 Thread Apache Jenkins Server
See 

Changes:

[zhouyanming] Uniform comparison

--
[...truncated 2058 lines...]
Generating 

Generating 

Generating 

Generating 

Generating 

Generating 

Generating 

Generating 

Generating 

Generating 

Generating 

Generating 

Generating 

Generating 

Generating 

Generating 

Generating 

Generating 

Generating 

Generating 

Generating 

Generating 

Generating 

Generating 

Generating 

Generating 

Generating 

Generating 

Generating 

Generating 

Generating 

Generating 

Generating 

Generating 

Re: Build failed in Jenkins: Struts-JDK8-master #31

2015-09-22 Thread Lukasz Lenart
I treat this build as a remainder that we must add support for JDK8 soon :)


2015-09-22 15:15 GMT+02:00 Christoph Nenning <christoph.nenn...@lex-com.net>:
> AFAIK jdk8 does not include the apt tool anymore so maven-apt-plugin
> cannot work.
>
>
> See this error from output:
>
>> [ERROR] Failed to execute goal org.apache.myfaces.tobago:maven-apt-
>> plugin:1.0.15:execute (default) on project struts2-core: Error
>> starting apt compiler: com.sun.tools.apt.Main
>
>
> So the build should be adjusted to work with jdk8.
>
>
>
> Regards,
> Christoph
>
>
>
>
> Apache Jenkins Server <jenk...@builds.apache.org> schrieb am 22.09.2015
> 15:05:41:
>
>> From: Apache Jenkins Server <jenk...@builds.apache.org>
>> To: dev@struts.apache.org,
>> Date: 22.09.2015 15:05
>> Subject: Build failed in Jenkins: Struts-JDK8-master #31
>>
>> See <https://builds.apache.org/job/Struts-JDK8-master/31/changes>
>>
>> Changes:
>>
>> [zhouyanming] Uniform comparison
>>
>> --
>> [...truncated 2058 lines...]
>> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
>> core/target/apidocs/com/opensymphony/xwork2/ognl/package-use.html...>
>> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
>>
> core/target/apidocs/com/opensymphony/xwork2/ognl/accessor/package-use.html...>
>> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
>> core/target/apidocs/com/opensymphony/xwork2/result/package-use.html...>
>> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
>>
> core/target/apidocs/com/opensymphony/xwork2/security/package-use.html...>
>> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
>> core/target/apidocs/com/opensymphony/xwork2/spring/package-use.html...>
>> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
>> core/target/apidocs/com/opensymphony/xwork2/spring/interceptor/
>> package-use.html...>
>> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
>> core/target/apidocs/com/opensymphony/xwork2/test/package-use.html...>
>> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
>> core/target/apidocs/com/opensymphony/xwork2/util/package-use.html...>
>> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
>> core/target/apidocs/com/opensymphony/xwork2/util/classloader/
>> package-use.html...>
>> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
>>
> core/target/apidocs/com/opensymphony/xwork2/util/finder/package-use.html...>
>> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
>> core/target/apidocs/com/opensymphony/xwork2/util/fs/package-use.html...>
>> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
>>
> core/target/apidocs/com/opensymphony/xwork2/util/location/package-use.html...>
>> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
>>
> core/target/apidocs/com/opensymphony/xwork2/util/logging/package-use.html...>
>> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
>> core/target/apidocs/com/opensymphony/xwork2/util/logging/commons/
>> package-use.html...>
>> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
>> core/target/apidocs/com/opensymphony/xwork2/util/logging/jdk/
>> package-use.html...>
>> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
>> core/target/apidocs/com/opensymphony/xwork2/util/logging/log4j2/
>> package-use.html...>
>> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
>> core/target/apidocs/com/opensymphony/xwork2/util/logging/slf4j/
>> package-use.html...>
>> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
>>
> core/target/apidocs/com/opensymphony/xwork2/util/profiling/package-use.html..
>> .>
>> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
>>
> core/target/apidocs/com/opensymphony/xwork2/util/reflection/package-use.html..
>> .>
>> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
>>
> core/target/apidocs/com/opensymphony/xwork2/validator/package-use.html...>
>> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
>> core/target/apidocs/com/opensymphony/xwork2/validator/annotations/
>> package-use.html...>
>> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
>> core/target/apidocs/com/opensymphony/xwork2/validator/valida

Re: Build failed in Jenkins: Struts-JDK8-master #31

2015-09-22 Thread Johannes Geppert
+1 would be great! :-)

#
web: http://www.jgeppert.com
twitter: http://twitter.com/jogep


2015-09-22 16:18 GMT+02:00 Aaron Johnson <johnson.aar...@gmail.com>:

> WW-4402 (https://issues.apache.org/jira/browse/WW-4402) has
> patch WW-4402.diff (
> https://issues.apache.org/jira/secure/attachment/12734928/WW-4402.diff)
> that makes the annotation processor compliant with JDK8. This is a separate
> project from the main Struts project. You will have to release a new
> version of this project in order to use it in the main Struts project.
>
> The same issue has a second patch, WW-4402-struts-core.diff (
>
> https://issues.apache.org/jira/secure/attachment/12735073/WW-4402-struts-core.diff
> )
> that uses the new processing version in the main Struts project. I think it
> uses the SNAPSHOT version since the release is not available.
>
> On Tue, Sep 22, 2015 at 8:28 AM, Christoph Nenning <
> christoph.nenn...@lex-com.net> wrote:
>
> > > I treat this build as a remainder that we must add support for JDK8
> soon
> > :)
> >
> > alright ;)
> >
> > +1
> >
> >
> >
> >
> > >
> > >
> > > 2015-09-22 15:15 GMT+02:00 Christoph Nenning
> > <christoph.nenn...@lex-com.net>:
> > > > AFAIK jdk8 does not include the apt tool anymore so maven-apt-plugin
> > > > cannot work.
> > > >
> > > >
> > > > See this error from output:
> > > >
> > > >> [ERROR] Failed to execute goal org.apache.myfaces.tobago:maven-apt-
> > > >> plugin:1.0.15:execute (default) on project struts2-core: Error
> > > >> starting apt compiler: com.sun.tools.apt.Main
> > > >
> > > >
> > > > So the build should be adjusted to work with jdk8.
> > > >
> > > >
> > > >
> > > > Regards,
> > > > Christoph
> > > >
> > > >
> > > >
> > > >
> > > > Apache Jenkins Server <jenk...@builds.apache.org> schrieb am
> > 22.09.2015
> > > > 15:05:41:
> > > >
> > > >> From: Apache Jenkins Server <jenk...@builds.apache.org>
> > > >> To: dev@struts.apache.org,
> > > >> Date: 22.09.2015 15:05
> > > >> Subject: Build failed in Jenkins: Struts-JDK8-master #31
> > > >>
> > > >> See <https://builds.apache.org/job/Struts-JDK8-master/31/changes>
> > > >>
> > > >> Changes:
> > > >>
> > > >> [zhouyanming] Uniform comparison
> > > >>
> > > >> --
> > > >> [...truncated 2058 lines...]
> > > >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> > > >>
> core/target/apidocs/com/opensymphony/xwork2/ognl/package-use.html...>
> > > >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> > > >>
> > > > core/target/apidocs/com/opensymphony/xwork2/ognl/accessor/package-
> > > use.html...>
> > > >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> > > >>
> > core/target/apidocs/com/opensymphony/xwork2/result/package-use.html...>
> > > >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> > > >>
> > > >
> > core/target/apidocs/com/opensymphony/xwork2/security/package-use.html...>
> > > >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> > > >>
> > core/target/apidocs/com/opensymphony/xwork2/spring/package-use.html...>
> > > >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> > > >> core/target/apidocs/com/opensymphony/xwork2/spring/interceptor/
> > > >> package-use.html...>
> > > >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> > > >>
> core/target/apidocs/com/opensymphony/xwork2/test/package-use.html...>
> > > >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> > > >>
> core/target/apidocs/com/opensymphony/xwork2/util/package-use.html...>
> > > >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
> > > >> core/target/apidocs/com/opensymphony/xwork2/util/classloader/
> > > >> package-use.html...>
> > > >> Generating <https://builds.apache.org/job/Struts-JDK8-master/ws/
&