Issue Details (XML | Word | Printable)

Key: GDS-734
Type: Bug Bug
Status: Closed Closed
Resolution: Won't Fix
Priority: Major Major
Assignee: Franck Wolff
Reporter: David Sissoko
Votes: 0
Watchers: 0
Operations

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

Error in the Ant build.xml of the graniteds/test component and in the build.xml of graniteds_test

Created: 09/Aug/10 03:23 PM   Updated: 23/Nov/10 01:00 PM   Resolved: 23/Nov/10 01:00 PM
Component/s: None
Affects Version/s: 2.2.0_beta1
Fix Version/s: None

Environment: Windows XP / Eclipse HELIOS / ANT 1.8


 Description  « Hide
The build.xml of graniteds/test has 1 error that leads to compilation error with ANT:
 1 - the target copy.xml is defined as <target name="copy.mxml" unless="flexbuilder"> but it should be defined as <target name="copy.mxml" unless="${flexbuilder}">

The build.xml of graniteds_test has 1 error that leads to compilation error with ANT:
 1- the property name example.name is defined as <property name="example.name" value="graniteds-ejb3"/> but this is the property name test.name that should be defined as <property name="test.name" value="graniteds-test"/>


David Sissoko added a comment - 09/Aug/10 03:28 PM
Carefull, for the issue on The build.xml of graniteds/test, the problem is not the definition of the conditional property (so <target name="copy.mxml" unless="flexbuilder"> is perhaps OK)
the problem is the value of this property that returns true in a Helios IDE without any flexbuilder plugin

David Sissoko added a comment - 09/Aug/10 03:59 PM
Eventually, the problem is a matter of configuration: the graniteds_tes contains some .flexProperties and .actionScriptProperties that leads ANT to get a TRUE value for flexbuilder property even if the plugin is not installed.
So this project CANNOT be compiled only with the Flex SDK...

William Draï added a comment - 10/Aug/10 12:24 PM
Right, currently we only run tests inside Flex Builder.
I keep the issue open until we setup real continuous integration testing.