Re: WOLips Ant build ignoring wolips.properties

Kieran Kelleher <[email protected]> Tue, 19 Oct 2010 07:00:56 -0400
Newsgroups gmane.comp.web.webobjects.woproject.devel
Message-ID <[email protected]>
Dave,

wolips.properties *is* a property containing a path name for the normal project build.xml (if you opened build.xml and looked at it you would see), so you need:

ant -Dwolips.properties=~/Library/Application Support/WOLips/wolips.properties clean build install

HTH, Kieran

PS. Wonder build on the other hand loads the wolips properties using the -propertyfile argument, which is probably why you were trying this option. Yes, it can be a source of confusion :-)

On Oct 19, 2010, at 12:27 AM, David Avendasora wrote:

> Hi all,
> 
> I'm trying to get builds working from within Eclipse, and it appears that the WOLips Ant Tools -> Install is ignoring my wolips.properties file I have defined in the WOLips preferences and instead using the ~/Library/Application Support/WOLips/wolips.properties file, which is _wrong_.
> 
> When I run with -debug and manually specify the -propertyfile, I get the following:
> 
>  [property] Loading /Developer/WebObjects/Versions/WebObjects543/wolips.properties
> Override ignored for property "wo.system.root"
> Override ignored for property "wo.user.frameworks"
> Override ignored for property "wolips.properties"
> Override ignored for property "wo.system.frameworks"
> Override ignored for property "wonder.framework.install.root"
> Override ignored for property "wo.bootstrapjar"
> Override ignored for property "wo.network.frameworks"
> Override ignored for property "wo.api.root"
> Override ignored for property "wo.network.root"
> Override ignored for property "wo.extensions"
> Override ignored for property "web.framework.install.root"
> Override ignored for property "wo.user.root"
> Override ignored for property "wo.local.frameworks"
> Override ignored for property "wo.apps.root"
> Override ignored for property "build.root"
> Override ignored for property "wo.local.root"
> 
> Why is it ignoring my settings?
> 
> Dave