Issue Details (XML | Word | Printable)

Key: WF-395
Type: Bug Bug
Status: Resolved Resolved
Resolution: Fixed
Priority: Minor Minor
Assignee: Hani Suleiman
Reporter: Sébastien Launay
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
OSWorkflow

Unable to compile OSWorkflow from Ant script

Created: 31/May/05 03:54 AM   Updated: 31/May/05 04:58 AM
Return to search
Component/s: None
Affects Version/s: 2.8
Fix Version/s: 2.8

Environment:
Debian GNU/Linux 3.1 i386
Apache Ant version 1.6.2


 Description  « Hide
There is an error in the Ant script build.xml at the root of the OSWorkflow repository :
BUILD FAILED
.../osworkflow/build.xml:91: true is not a legal value for this attribute

In fact, in the task ejbdoclet, the element weblogic needs the attribute createtables with a value of True and not true (stupid bug from xdoclet).

So this patch will correct the problem :
106c106
< <weblogic version="7.0" destdir="${build.java}/META-INF" datasource="defaultDS" createtables="true"/>
---
> <weblogic version="7.0" destdir="${build.java}/META-INF" datasource="defaultDS" createtables="True"/>

 All   Comments   Change History      Sort Order: Ascending order - Click to sort in descending order
Hani Suleiman added a comment - 31/May/05 04:58 AM
Oops, fixed, sorry.