On 02/02/2011 09:04, ant elder wrote:
I'll guess that Raymond will want to get the pass-by-reference
improvements into this release so what ever happens we'll need to
respin to pick those up, what else needs to get done for that respin?
Do we need to make further sample improvements right now or can that
be done over later releases?
Florian - have you found why that itest is using the wrong directory
in your environment?
Mike - I'm hoping the dom4j issue will go away if it uses the version
in the central repo, but what about the sample running issues you
first mentioned, do they sound like the same as this issue thats just
come up with the beta1 samples -
http://apache.markmail.org/message/jzu3c2ixbcqwbie7
...ant
Ant,
1) dom4j issue
This is a real issue and there is a fix.
The dom4j POM is coming from the intalio repo and this is FORCED by a <repository> setting in the
POM of implementation-bpel-runtime - if you start with a clean repo you WILL get the "bad" dom4j POM:
<repositories>
<repository>
<id>intalio.org</id>
<url>http://www.intalio.org/public/maven2</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
The fix is simply to remove this <repository> setting from the POM of
implementation-bpel-runtime.
2) Samples issue
Yes, rather well timed those problems with the samples reported by users - these are exactly the
same problem that I ran into. We should fix these since the samples are exactly the place that new
users are going to start and there is nothing worse than a binary runtime being "broken out of the
box" when they try to run "hello world".
Yours, Mike.