<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Ant Scripts without XML</title>
	<atom:link href="http://myarch.com/ant-scripts-without-xml/feed" rel="self" type="application/rss+xml" />
	<link>http://myarch.com/ant-scripts-without-xml</link>
	<description>Builds and bytes</description>
	<lastBuildDate>Sat, 28 Jan 2012 19:37:55 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: A Drop In The Stream &#8250; links for 2009-02-05</title>
		<link>http://myarch.com/ant-scripts-without-xml/comment-page-1#comment-34836</link>
		<dc:creator>A Drop In The Stream &#8250; links for 2009-02-05</dc:creator>
		<pubDate>Fri, 06 Feb 2009 04:06:13 +0000</pubDate>
		<guid isPermaLink="false">http://myarch.com/ant-scripts-without-xml#comment-34836</guid>
		<description>[...] Ant Scripts without XML &#124; MyArch (tags: ant jython build-scripts) [...]</description>
		<content:encoded><![CDATA[<p>[...] Ant Scripts without XML | MyArch (tags: ant jython build-scripts) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexander Ananiev</title>
		<link>http://myarch.com/ant-scripts-without-xml/comment-page-1#comment-34835</link>
		<dc:creator>Alexander Ananiev</dc:creator>
		<pubDate>Fri, 06 Feb 2009 03:05:33 +0000</pubDate>
		<guid isPermaLink="false">http://myarch.com/ant-scripts-without-xml#comment-34835</guid>
		<description>Doug,
Unfortunately, it won&#039;t work with Ant 1.6.5. Ant API changed quite a bit in 1.7. I&#039;d recommend installing Ant 1.7.1 manually since looks like it&#039;s not supported by yum. 

Regards,
Alexander.</description>
		<content:encoded><![CDATA[<p>Doug,<br />
Unfortunately, it won&#8217;t work with Ant 1.6.5. Ant API changed quite a bit in 1.7. I&#8217;d recommend installing Ant 1.7.1 manually since looks like it&#8217;s not supported by yum. </p>
<p>Regards,<br />
Alexander.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doug</title>
		<link>http://myarch.com/ant-scripts-without-xml/comment-page-1#comment-34834</link>
		<dc:creator>Doug</dc:creator>
		<pubDate>Fri, 06 Feb 2009 00:28:21 +0000</pubDate>
		<guid isPermaLink="false">http://myarch.com/ant-scripts-without-xml#comment-34834</guid>
		<description>Wow! - Cool idea.  I&#039;m running into an issue when I try to use Jython 2.5 with from pant import PAnt.  The trace shows from org.apache.tools.ant can&#039;t be found.  Since apparently classpath can be an issue (Centos 5.2 with Ant 1.65 installed via Yum), could you mention what Ant jar files need to be made available?

Many thnx.

Doug</description>
		<content:encoded><![CDATA[<p>Wow! &#8211; Cool idea.  I&#8217;m running into an issue when I try to use Jython 2.5 with from pant import PAnt.  The trace shows from org.apache.tools.ant can&#8217;t be found.  Since apparently classpath can be an issue (Centos 5.2 with Ant 1.65 installed via Yum), could you mention what Ant jar files need to be made available?</p>
<p>Many thnx.</p>
<p>Doug</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexander Ananiev</title>
		<link>http://myarch.com/ant-scripts-without-xml/comment-page-1#comment-25619</link>
		<dc:creator>Alexander Ananiev</dc:creator>
		<pubDate>Wed, 09 Apr 2008 02:58:53 +0000</pubDate>
		<guid isPermaLink="false">http://myarch.com/ant-scripts-without-xml#comment-25619</guid>
		<description>Thanks for the AntXtras pointer, I was not aware about this library. From briefly looking at the examples on the site, it looks like there is still some procedural logic (for, ifs) implemented in Ant using custom tasks. That&#039;s what I&#039;m trying to avoid with PAnt. BTW, you can invoke any custom task (including the ones created with macrodef or scriptdef) from PAnt, not just the ones that come with Ant, so PAnt can complement any Ant extension library.

Cheers, 
Alexander.</description>
		<content:encoded><![CDATA[<p>Thanks for the AntXtras pointer, I was not aware about this library. From briefly looking at the examples on the site, it looks like there is still some procedural logic (for, ifs) implemented in Ant using custom tasks. That&#8217;s what I&#8217;m trying to avoid with PAnt. BTW, you can invoke any custom task (including the ones created with macrodef or scriptdef) from PAnt, not just the ones that come with Ant, so PAnt can complement any Ant extension library.</p>
<p>Cheers,<br />
Alexander.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The Wabbit</title>
		<link>http://myarch.com/ant-scripts-without-xml/comment-page-1#comment-25593</link>
		<dc:creator>The Wabbit</dc:creator>
		<pubDate>Tue, 08 Apr 2008 11:11:50 +0000</pubDate>
		<guid isPermaLink="false">http://myarch.com/ant-scripts-without-xml#comment-25593</guid>
		<description>[Biased opinion warning] I use the AntXtras (antxtras.sf.net) project to get flow control and other goodies in Ant scripts without the ugliness of ant-contrib. This library combined with macrodefs,  presetdefs, and antlibs (three vastly under utilized features of Ant) dispense with most of the ugliness, awkwardness, and general maintenance nightmares found in many (most?) Ant scripts I&#039;ve encountered. A lack of understanding of anything beyond buildscript-101 seems to be the underlying cause of most issues (I see the same problem reflected in Maven POM files from hell...)

-The Wabbit</description>
		<content:encoded><![CDATA[<p>[Biased opinion warning] I use the AntXtras (antxtras.sf.net) project to get flow control and other goodies in Ant scripts without the ugliness of ant-contrib. This library combined with macrodefs,  presetdefs, and antlibs (three vastly under utilized features of Ant) dispense with most of the ugliness, awkwardness, and general maintenance nightmares found in many (most?) Ant scripts I&#8217;ve encountered. A lack of understanding of anything beyond buildscript-101 seems to be the underlying cause of most issues (I see the same problem reflected in Maven POM files from hell&#8230;)</p>
<p>-The Wabbit</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: techgirl_it</title>
		<link>http://myarch.com/ant-scripts-without-xml/comment-page-1#comment-20381</link>
		<dc:creator>techgirl_it</dc:creator>
		<pubDate>Fri, 18 Jan 2008 01:36:49 +0000</pubDate>
		<guid isPermaLink="false">http://myarch.com/ant-scripts-without-xml#comment-20381</guid>
		<description>Found your blog while I was doing some research on a conference I just got back from. While I was here, I&#039;ve read through some of your recent posts. 
Have you taken a look at the new series of SOA events offered by ZapThink this year? I just got back from an event and really got a lot out of it. I thought it was worth passing on the link, if nothing else, just so you can take a look at what&#039;s coming up. 

In the hopes that your blog allows posts to contain Web addresses, here&#039;s the link: www.zapthink.com/eventreg.html. And pass it on to any colleagues you think may be interested. Given that it’s still a relatively unknown event, I’m spreading the news now about it because I am hoping they can get more people there!

ZapThink’s offered me and any of my friends a $50 discount if you register with the code GAFPSOA1. 

Hope you can make it, because it was definitely worth my time!</description>
		<content:encoded><![CDATA[<p>Found your blog while I was doing some research on a conference I just got back from. While I was here, I&#8217;ve read through some of your recent posts.<br />
Have you taken a look at the new series of SOA events offered by ZapThink this year? I just got back from an event and really got a lot out of it. I thought it was worth passing on the link, if nothing else, just so you can take a look at what&#8217;s coming up. </p>
<p>In the hopes that your blog allows posts to contain Web addresses, here&#8217;s the link: <a href="http://www.zapthink.com/eventreg.html" rel="nofollow">http://www.zapthink.com/eventreg.html</a>. And pass it on to any colleagues you think may be interested. Given that it’s still a relatively unknown event, I’m spreading the news now about it because I am hoping they can get more people there!</p>
<p>ZapThink’s offered me and any of my friends a $50 discount if you register with the code GAFPSOA1. </p>
<p>Hope you can make it, because it was definitely worth my time!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

