Discussion:
Is there an existing ant script library available for use?
Jay Leggett
2016-12-15 15:16:58 UTC
Permalink
We are in the process of setting up ~100 projects to build using ant. I was wondering if there was a script library available that we could import. I found the "Ant Script Library<http://www.exubero.com/asl/download.html>", but it is no longer available for download.
Scot P. Floess
2016-12-16 12:42:31 UTC
Permalink
I developed a project many years ago that may help you...but I stopped
working on it "way back when."

http://keros.sourceforge.net/LATEST/

The source is both at sourceforge and github:
https://github.com/FlossWare/keros

I had planned to move things over to github a wee bit more
"professionally" but other projects seem to "eat up my time."

Looks like I last worked on this in 2009...

Anyway - not sure it will help you...but if it does...great :)
Post by Jay Leggett
We are in the process of setting up ~100 projects to build using ant. I was wondering if there was a script library available that we could import. I found the "Ant Script Library<http://www.exubero.com/asl/download.html>", but it is no longer available for download.
Scot P. Floess RHCT (Certificate Number 605010084735240)
Chief Architect FlossWare http://sourceforge.net/projects/flossware
http://flossware.sourceforge.net
https://github.com/organizations/FlossWare

---------------------------------------------------------------------
To unsubscribe, e-mail: user-***@ant.apache.org
For additional commands, e-mail: user-***@ant.apache.org
Jan Matèrne (jhm)
2016-12-17 11:12:01 UTC
Permalink
You could write one buildfile and copy it 100times.
Or use <import>:
the "master" buildfile is available e.g. on a share.
The 100+ projects only have a

<project>
<import file="${master.dir}/build.xml"/>
<property file="build.properties"/>
</project>

So they could set some individual values.


Jan
-----Ursprüngliche Nachricht-----
Gesendet: Freitag, 16. Dezember 2016 13:43
An: Ant Users List
Betreff: Re: Is there an existing ant script library available for use?
I developed a project many years ago that may help you...but I stopped
working on it "way back when."
http://keros.sourceforge.net/LATEST/
https://github.com/FlossWare/keros
I had planned to move things over to github a wee bit more
"professionally" but other projects seem to "eat up my time."
Looks like I last worked on this in 2009...
Anyway - not sure it will help you...but if it does...great :)
Post by Jay Leggett
We are in the process of setting up ~100 projects to build using ant.
I was wondering if there was a script library available that we could
import. I found the "Ant Script
Library<http://www.exubero.com/asl/download.html>", but it is no longer
available for download.
Scot P. Floess RHCT (Certificate Number 605010084735240)
Chief Architect FlossWare http://sourceforge.net/projects/flossware
http://flossware.sourceforge.net
https://github.com/organizations/FlossWare
---------------------------------------------------------------------
---------------------------------------------------------------------
To unsubscribe, e-mail: user-***@ant.apache.org
For additional commands, e-mail: user-***@ant.apache.org
Jay Leggett
2017-01-03 13:47:48 UTC
Permalink
Thanks. The projects that have been migrated so far import a single ant library with minimal Ant tasks in the project build.xml's. It just seemed like there had to be an existing library somewhere because the library I was creating seemed like something everyone would use.

FYI: The download from my initial post (http://www.exubero.com/asl/download.html) is now available at https://github.com/tumbarumba/AntScriptLibrary


-----Original Message-----
From: Jan Matèrne (jhm) [mailto:***@materne.de]
Sent: Saturday, December 17, 2016 6:12 AM
To: 'Ant Users List'
Subject: AW: Is there an existing ant script library available for use?

You could write one buildfile and copy it 100times.
Or use <import>:
the "master" buildfile is available e.g. on a share.
The 100+ projects only have a

<project>
<import file="${master.dir}/build.xml"/>
<property file="build.properties"/>
</project>

So they could set some individual values.


Jan
-----Ursprüngliche Nachricht-----
Gesendet: Freitag, 16. Dezember 2016 13:43
An: Ant Users List
Betreff: Re: Is there an existing ant script library available for use?
I developed a project many years ago that may help you...but I stopped
working on it "way back when."
http://keros.sourceforge.net/LATEST/
https://github.com/FlossWare/keros
I had planned to move things over to github a wee bit more
"professionally" but other projects seem to "eat up my time."
Looks like I last worked on this in 2009...
Anyway - not sure it will help you...but if it does...great :)
Post by Jay Leggett
We are in the process of setting up ~100 projects to build using ant.
I was wondering if there was a script library available that we could
import. I found the "Ant Script
Library<http://www.exubero.com/asl/download.html>", but it is no
longer available for download.
Scot P. Floess RHCT (Certificate Number 605010084735240)
Chief Architect FlossWare http://sourceforge.net/projects/flossware
http://flossware.sourceforge.net
https://github.com/organizations/FlossWare
---------------------------------------------------------------------
---------------------------------------------------------------------
To unsubscribe, e-mail: user-***@ant.apache.org For additional commands, e-mail: user-***@ant.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: user-***@ant.apache.org
For additional commands, e-mail: user-***@ant.apache.org

Continue reading on narkive:
Loading...