Re: Nested import task problem / anttask problem

2010-02-23 Thread Brian Repko
iginal message - From: "Gopala Krishna" To: user@ant.apache.org Date: Tue, 23 Feb 2010 17:48:06 +0530 Subject: Nested import task problem / anttask problem Hi, I am trying to execute an ant target through program. I have used import task and those are nested in each build file. Thi

Re: AW: Nested import task problem / anttask problem

2010-02-23 Thread Brian Repko
Brian - Original message - From: "Brian Repko" To: "Ant Users List" Date: Tue, 23 Feb 2010 07:03:11 -0600 Subject: Re: AW: Nested import task problem / anttask problem I'm in the process of fixing a similar bug related to imports and extensionOf/extension-point.

Re: AW: Nested import task problem / anttask problem

2010-02-23 Thread Brian Repko
- Original message - From: jan.mate...@rzf.fin-nrw.de To: user@ant.apache.org Date: Tue, 23 Feb 2010 13:53:40 +0100 Subject: AW: Nested import task problem / anttask problem Not sure about the in b.xml ... Jan >-Ursprüngliche Nachricht- >Von: Gopala Krishna [mailto:go

AW: Nested import task problem / anttask problem

2010-02-23 Thread Jan.Materne
Not sure about the in b.xml ... Jan >-Ursprüngliche Nachricht- >Von: Gopala Krishna [mailto:gopalakrishna.tani...@applabs.com] >Gesendet: Dienstag, 23. Februar 2010 13:18 >An: user@ant.apache.org >Betreff: Nested import task problem / anttask problem > >Hi, &

Nested import task problem / anttask problem

2010-02-23 Thread Gopala Krishna
Hi, I am trying to execute an ant target through program. I have used import task and those are nested in each build file. This is working fine when executed via command line and throwing error when I execute target-a using ProjectHelper. The below are my ant build files. Has anyone tried

Re: Import task defined in other build file?

2008-03-05 Thread Andrew n marshall
Doh... Had the answer in the first word of my subject line. Thanks Peter. But the idea of importing the entire file seems very messy. I was hoping there would be a way I could import the effect of the new task definition without all the targets and properties that define it. Because of th

Re: Import task defined in other build file?

2008-03-05 Thread Peter Reilly
Use and not Peter On Wed, Mar 5, 2008 at 1:46 PM, Andrew n marshall <[EMAIL PROTECTED]> wrote: > > Is it possible to define a task in one ant build file, but use it in > another? For example, I want to have a single build file that contains > the properties and tasks to download a copy of s

Import task defined in other build file?

2008-03-05 Thread Andrew n marshall
Is it possible to define a task in one ant build file, but use it in another? For example, I want to have a single build file that contains the properties and tasks to download a copy of svnant and define its tasks. Then I want to call that ant file's define_svn_task target from another fil

Re: Documentation for IMPORT task has "beta" watermarks

2007-10-09 Thread Peter Reilly
On 10/9/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > The online version has > > > > > Import Task > > > > and the version in svn > > > > > Import Task > > > > The latter is the right one (antmanual.css co

AW: Documentation for IMPORT task has "beta" watermarks

2007-10-09 Thread Jan.Materne
The online version has Import Task and the version in svn Import Task The latter is the right one (antmanual.css contains the beta marker). Personally I dont know the complete publishing process of the Ant site works so I dont know why this is not updated. Jan

Documentation for IMPORT task has "beta" watermarks

2007-10-04 Thread Michael Giroux
The file at http://ant.apache.org/manual/CoreTasks/import.html has "BETA" watermarks. Strange since 1.7 is no longer beta, and was available in 1.6. Perhaps this is already reported. Michael Giroux - To unsubscribe, e-mail: [E

Re: Attempting to write a custom import-task

2006-09-09 Thread Marcus Lindblom
I'm not using 1.7 (yet), but the latter seems easy enough. I was thinking along those lines a bit but it was too simple. :) Thanks! /Marcus Peter Reilly wrote: You have got to set the location and the target attributes of the import task, in ant 1.7 there is a utility method bindToTask

Re: Attempting to write a custom import-task

2006-09-08 Thread Peter Reilly
You have got to set the location and the target attributes of the import task, in ant 1.7 there is a utility method bindToTask to do this. task = project.createTask("import"); task.bindToOwner(self); task.setFile("import.me.xml"); task.execute(); However, you

Attempting to write a custom import-task

2006-09-08 Thread Marcus Lindblom
(I couldn't find anything in the mail-archives, nor on google, on this, so I'm asking here. It's my first post to this list and I haven't subscribed it previously either.) Hi all, Short version: How to use from a custom task? Long version: I'm trying to make

RE: Import Task

2006-05-09 Thread jason heddings
I had missed that point in the manual... Thanks! -Original Message- From: Dominique Devienne [mailto:[EMAIL PROTECTED] Sent: Tuesday, 09 May, 2006 11:22 To: Ant Users List Subject: Re: Import Task > I'm using Ant version 1.6.5 and I'm trying to use the import task.

Re: Import Task

2006-05-09 Thread Dominique Devienne
I'm using Ant version 1.6.5 and I'm trying to use the import task. The manual shows that in the imported file, ant.file.imported should be set, however I'm not seeing this property. http://ant.apache.org/manual/CoreTasks/import.html As written in the manual, the property

Import Task

2006-05-09 Thread jason heddings
Hello- I'm using Ant version 1.6.5 and I'm trying to use the import task. The manual shows that in the imported file, ant.file.imported should be set, however I'm not seeing this property. http://ant.apache.org/manual/CoreTasks/import.html I wrote the attached little task