<?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: Using Groovy instead of Ant&#8230;</title>
	<atom:link href="http://voituk.kiev.ua/2007/08/17/using-groovy-instead-of-ant/feed/" rel="self" type="application/rss+xml" />
	<link>http://voituk.kiev.ua/2007/08/17/using-groovy-instead-of-ant/</link>
	<description>while ( isAlive() ) {doCode(); doFun();}</description>
	<lastBuildDate>Sun, 13 May 2012 21:35:13 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: juriy</title>
		<link>http://voituk.kiev.ua/2007/08/17/using-groovy-instead-of-ant/comment-page-1/#comment-15157</link>
		<dc:creator>juriy</dc:creator>
		<pubDate>Wed, 25 Jun 2008 07:06:25 +0000</pubDate>
		<guid isPermaLink="false">http://dev.voituk.kiev.ua/2007/08/17/using-groovy-instead-of-ant/#comment-15157</guid>
		<description>I&#039;m not sure about that - the best way to find it out is to try.</description>
		<content:encoded><![CDATA[<p>I&#8217;m not sure about that &#8211; the best way to find it out is to try.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrey</title>
		<link>http://voituk.kiev.ua/2007/08/17/using-groovy-instead-of-ant/comment-page-1/#comment-15155</link>
		<dc:creator>Andrey</dc:creator>
		<pubDate>Wed, 25 Jun 2008 07:01:45 +0000</pubDate>
		<guid isPermaLink="false">http://dev.voituk.kiev.ua/2007/08/17/using-groovy-instead-of-ant/#comment-15155</guid>
		<description>NetBeans generates project *.jar file, so for a simple situation is it enough just to add &lt;classpath path=&quot;dist/project.jar&quot;/&gt;?</description>
		<content:encoded><![CDATA[<p>NetBeans generates project *.jar file, so for a simple situation is it enough just to add &lt;classpath path=&#8221;dist/project.jar&#8221;/&gt;?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrey</title>
		<link>http://voituk.kiev.ua/2007/08/17/using-groovy-instead-of-ant/comment-page-1/#comment-15153</link>
		<dc:creator>Andrey</dc:creator>
		<pubDate>Wed, 25 Jun 2008 06:56:40 +0000</pubDate>
		<guid isPermaLink="false">http://dev.voituk.kiev.ua/2007/08/17/using-groovy-instead-of-ant/#comment-15153</guid>
		<description>&lt;project name=&quot;groovy-compile-impl&quot; default=&quot;groovyc&quot; basedir=&quot;..&quot;&gt;
    
   &lt;property file=&quot;nbproject/project.properties&quot;/&gt;

   &lt;target name=&quot;groovyc&quot; description=&quot;groovyc&quot;&gt;
        &lt;taskdef name=&quot;groovyc&quot; 
                 classpath=&quot;dist/lib/groovy-all-1.1-rc-2-SNAPSHOT.jar&quot; 
                 classname=&quot;org.codehaus.groovy.ant.Groovyc&quot;/&gt;
        &lt;groovyc srcdir=&quot;${src.dir}&quot; destdir=&quot;groovy&quot;&gt;
            &lt;classpath path=&quot;dist/lib/groovy-all-1.1-rc-2-SNAPSHOT.jar&quot;/&gt;
        &lt;/groovyc&gt;
   &lt;/target&gt;
    
&lt;/project&gt;</description>
		<content:encoded><![CDATA[<p>&lt;project name=&#8221;groovy-compile-impl&#8221; default=&#8221;groovyc&#8221; basedir=&#8221;..&#8221;&gt;</p>
<p>   &lt;property file=&#8221;nbproject/project.properties&#8221;/&gt;</p>
<p>   &lt;target name=&#8221;groovyc&#8221; description=&#8221;groovyc&#8221;&gt;<br />
        &lt;taskdef name=&#8221;groovyc&#8221;<br />
                 classpath=&#8221;dist/lib/groovy-all-1.1-rc-2-SNAPSHOT.jar&#8221;<br />
                 classname=&#8221;org.codehaus.groovy.ant.Groovyc&#8221;/&gt;<br />
        &lt;groovyc srcdir=&#8221;${src.dir}&#8221; destdir=&#8221;groovy&#8221;&gt;<br />
            &lt;classpath path=&#8221;dist/lib/groovy-all-1.1-rc-2-SNAPSHOT.jar&#8221;/&gt;<br />
        &lt;/groovyc&gt;<br />
   &lt;/target&gt;</p>
<p>&lt;/project&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrey</title>
		<link>http://voituk.kiev.ua/2007/08/17/using-groovy-instead-of-ant/comment-page-1/#comment-15152</link>
		<dc:creator>Andrey</dc:creator>
		<pubDate>Wed, 25 Jun 2008 06:52:34 +0000</pubDate>
		<guid isPermaLink="false">http://dev.voituk.kiev.ua/2007/08/17/using-groovy-instead-of-ant/#comment-15152</guid>
		<description>I installed a groovy plug-in for NetBeans. It imports following ant task to the project build-impl.xml:

    
   

   
        
        
            
        
   
    
 

So, as I see, I need to add another  element to  with project classpath...</description>
		<content:encoded><![CDATA[<p>I installed a groovy plug-in for NetBeans. It imports following ant task to the project build-impl.xml:</p>
<p>So, as I see, I need to add another  element to  with project classpath&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Juriy</title>
		<link>http://voituk.kiev.ua/2007/08/17/using-groovy-instead-of-ant/comment-page-1/#comment-15103</link>
		<dc:creator>Juriy</dc:creator>
		<pubDate>Tue, 24 Jun 2008 13:23:57 +0000</pubDate>
		<guid isPermaLink="false">http://dev.voituk.kiev.ua/2007/08/17/using-groovy-instead-of-ant/#comment-15103</guid>
		<description>I&#039;ve never worked with NetBeans so I may be wrong.

Did I get you right: you have a NetBeans project with classpath that is already set up. You need to extract a classpath from autogenerated build file and use it with your groovy shell?

Try searching for the classpath property name in the build-impl.xml then import all this file into the new one and start groovy from there. Use ant&#039;s &quot;import&quot; directive. In this way you&#039;ll leave original file intact still you&#039;ll use it&#039;s properties.

I&#039;ve never done things like this with groovy though.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve never worked with NetBeans so I may be wrong.</p>
<p>Did I get you right: you have a NetBeans project with classpath that is already set up. You need to extract a classpath from autogenerated build file and use it with your groovy shell?</p>
<p>Try searching for the classpath property name in the build-impl.xml then import all this file into the new one and start groovy from there. Use ant&#8217;s &#8220;import&#8221; directive. In this way you&#8217;ll leave original file intact still you&#8217;ll use it&#8217;s properties.</p>
<p>I&#8217;ve never done things like this with groovy though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrey</title>
		<link>http://voituk.kiev.ua/2007/08/17/using-groovy-instead-of-ant/comment-page-1/#comment-15098</link>
		<dc:creator>Andrey</dc:creator>
		<pubDate>Tue, 24 Jun 2008 12:18:20 +0000</pubDate>
		<guid isPermaLink="false">http://dev.voituk.kiev.ua/2007/08/17/using-groovy-instead-of-ant/#comment-15098</guid>
		<description>Could you please give any hints on how to get access to java classes from a NetBeans project (in order to make other work with groovy, for example)?
NetBeans uses Ant as building shell so we need to get java classpath from the corresponding build-impl.xml and force to make it available when groovy starts...</description>
		<content:encoded><![CDATA[<p>Could you please give any hints on how to get access to java classes from a NetBeans project (in order to make other work with groovy, for example)?<br />
NetBeans uses Ant as building shell so we need to get java classpath from the corresponding build-impl.xml and force to make it available when groovy starts&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vadim Voituk</title>
		<link>http://voituk.kiev.ua/2007/08/17/using-groovy-instead-of-ant/comment-page-1/#comment-6240</link>
		<dc:creator>Vadim Voituk</dc:creator>
		<pubDate>Fri, 11 Jan 2008 15:14:14 +0000</pubDate>
		<guid isPermaLink="false">http://dev.voituk.kiev.ua/2007/08/17/using-groovy-instead-of-ant/#comment-6240</guid>
		<description>Just another &lt;a href=&quot;http://www.javaworld.com/javaworld/jw-10-2004/jw-1004-groovy.html&quot; rel=&quot;nofollow&quot;&gt;article about Groovy+Ant&lt;/a&gt;, published on javaworld.com</description>
		<content:encoded><![CDATA[<p>Just another <a href="http://www.javaworld.com/javaworld/jw-10-2004/jw-1004-groovy.html" rel="nofollow">article about Groovy+Ant</a>, published on javaworld.com</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vadim</title>
		<link>http://voituk.kiev.ua/2007/08/17/using-groovy-instead-of-ant/comment-page-1/#comment-632</link>
		<dc:creator>vadim</dc:creator>
		<pubDate>Thu, 06 Sep 2007 14:02:58 +0000</pubDate>
		<guid isPermaLink="false">http://dev.voituk.kiev.ua/2007/08/17/using-groovy-instead-of-ant/#comment-632</guid>
		<description>Dave, unfortunately buildr can be used by ruby-programmers only.
Unlike Groovy, that is easy undestandable for any Java developer.</description>
		<content:encoded><![CDATA[<p>Dave, unfortunately buildr can be used by ruby-programmers only.<br />
Unlike Groovy, that is easy undestandable for any Java developer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://voituk.kiev.ua/2007/08/17/using-groovy-instead-of-ant/comment-page-1/#comment-631</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Thu, 06 Sep 2007 02:40:23 +0000</pubDate>
		<guid isPermaLink="false">http://dev.voituk.kiev.ua/2007/08/17/using-groovy-instead-of-ant/#comment-631</guid>
		<description>Bleh to Maven2. Much prefer script builders. If you want something very strutured like M2 but with script flexibility you can also try Buildr.</description>
		<content:encoded><![CDATA[<p>Bleh to Maven2. Much prefer script builders. If you want something very strutured like M2 but with script flexibility you can also try Buildr.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The Disco Blog &#187; Blog Archive &#187; The weekly bag&#8211; August 31</title>
		<link>http://voituk.kiev.ua/2007/08/17/using-groovy-instead-of-ant/comment-page-1/#comment-630</link>
		<dc:creator>The Disco Blog &#187; Blog Archive &#187; The weekly bag&#8211; August 31</dc:creator>
		<pubDate>Sun, 02 Sep 2007 14:29:35 +0000</pubDate>
		<guid isPermaLink="false">http://dev.voituk.kiev.ua/2007/08/17/using-groovy-instead-of-ant/#comment-630</guid>
		<description>[...] Using Groovy instead of Ant…- Hip advice, man. [...]</description>
		<content:encoded><![CDATA[<p>[...] Using Groovy instead of Ant…- Hip advice, man. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

