WELD-862 and Seam Cron
by Peter Royle
Hi,
I'm aiming to make a release of Seam Cron available within the next two weeks. Currently there is an outstanding issue (https://issues.jboss.org/browse/WELD-862) which prevents Cron from running properly with Weld. I have been able to carry on developing Cron by testing it against OpenWebBeans, but obviously if we are to release a Seam module it should work against Weld.
It would be nice if WELD-862 could be fixed as soon a possible so that all future versions will work well with Cron.
But more importantly I also probably need to do something special in Cron so that it will work with the version of Weld already deployed in JBoss AS and Glassfish, which will contain the bug. The workaround mentioned in the bug report is to deep copy the InvocationContext. I attempted to do this by serialising and unserialising the InvocationContext but couldn't due to UnserializableExceptions. Does anyone have any advice for me about how I might be able to work around this bug to support existing versions of Weld?
Cheers,
Pete R
5 days, 11 hours
weld-parent compiler settings
by Martin Kouba
Hi,
we'd like to change the default compiler settings in weld-parent.
Currently maven-compiler-plugin is configured as follows:
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
Since JDK5 completed its EOL and is no longer supported we'd like to change it to:
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
Note that the current code base cannot be even compiled with JDK5 (not JDK6 in JDK5 mode) due to some odd @Override annotation processing [1] and the fact, that some libraries are not JDK5 compatible anymore.
What's your opinion?
Is there anyone still running Weld on JRE 1.5?
Martin
[1]
https://blogs.oracle.com/ahe/entry/override_snafu
http://www.coderanch.com/t/434495/tools/ANT-doesn-understand-Java-Override
13 years, 6 months