<?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 gradle with aspectj</title>
	<atom:link href="http://www.breskeby.com/2010/02/using-gradle-with-aspectj/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.breskeby.com/2010/02/using-gradle-with-aspectj/</link>
	<description>culture, code and web2.0</description>
	<lastBuildDate>Fri, 11 Nov 2011 12:53:59 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Kiran</title>
		<link>http://www.breskeby.com/2010/02/using-gradle-with-aspectj/comment-page-1/#comment-21809</link>
		<dc:creator>Kiran</dc:creator>
		<pubDate>Fri, 11 Nov 2011 12:53:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.breskeby.com/?p=456#comment-21809</guid>
		<description>Hi breskeby!

I am using your aspectj plugin to compile my code.

Below is the code.
&lt;code&gt;
apply plugin:&#039;java&#039;
apply plugin: &#039;osgi&#039;

sourceSets {
    main {
        java {
            srcDir &#039;src/main&#039;
        }
    }
}


dependencies{
	compile group: &#039;org.springframework&#039;, name: &#039;spring-beans&#039;, version: &#039;3.0.0.RELEASE&#039;, transitive: false
	compile group: &#039;log4j&#039;, name: &#039;log4j&#039;, version: &#039;1.2.15&#039;, transitive: false
	compile group: &#039;org.springframework&#039;, name: &#039;spring-context&#039;, version: &#039;3.0.0.RELEASE&#039;, transitive: false
	compile group: &#039;org.springframework&#039;, name: &#039;spring-asm&#039;, version: &#039;3.0.0.RELEASE&#039;, transitive: false
	compile group: &#039;org.springframework&#039;, name: &#039;spring-expression&#039;, version: &#039;3.0.0.RELEASE&#039;, transitive: false
	compile group: &#039;org.springframework&#039;, name: &#039;spring-aop&#039;, version: &#039;3.0.0.RELEASE&#039;, transitive: false	
//	compile group: &#039;org.aspectj&#039;, name: &#039;com.springsource.org.aspectj.weaver&#039;, version: &#039;1.6.5.RELEASE&#039;, transitive: false
	compile group: &#039;com.google.guava&#039;, name: &#039;guava&#039;, version: &#039;r05&#039;, transitive: false
	compile group: &#039;org.springframework&#039;, name: &#039;spring-test&#039;, version: &#039;3.0.0.RELEASE&#039;, transitive: false
	compile group: &#039;org.springframework&#039;, name: &#039;spring-core&#039;, version: &#039;3.0.0.RELEASE&#039;, transitive: false
	
	ajc group: &#039;org.aspectj&#039;, name: &#039;aspectjtools&#039;, version: &#039;1.6.5&#039;, transitive: false
	compile group: &#039;aspectj&#039;, name: &#039;aspectjrt&#039;, version: &#039;1.5.3&#039;, transitive: false
	testCompile group: &#039;junit&#039;, name: &#039;junit&#039;, version: &#039;4.7&#039;, transitive: false
	testCompile group: &#039;org.mockito&#039;, name: &#039;mockito-all&#039;, version: &#039;1.8.2&#039;, transitive: false
}
&lt;/code&gt;


when i compile without aspectj it is compiling without any errors. but when i apply aspectj plugin it is giving below errors.



[ant:iajc] D:\src\main\com\\config\common\Factory.java:47 [error] The method setApplicationContext(ApplicationContext) of type Factory must override a superclass method
[ant:iajc] public void setApplicationContext(ApplicationContext arg0) throws BeansException {
[ant:iajc]             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^


but i can see setApplicationContext is present in spring-context jar.

Can you help me in this regard</description>
		<content:encoded><![CDATA[<p>Hi breskeby!</p>
<p>I am using your aspectj plugin to compile my code.</p>
<p>Below is the code.</p>
<div class="codecolorer-container text mac-classic" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:545px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br />18<br />19<br />20<br />21<br />22<br />23<br />24<br />25<br />26<br />27<br />28<br />29<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">apply plugin:'java'<br />
apply plugin: 'osgi'<br />
<br />
sourceSets {<br />
&nbsp; &nbsp; main {<br />
&nbsp; &nbsp; &nbsp; &nbsp; java {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; srcDir 'src/main'<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; }<br />
}<br />
<br />
<br />
dependencies{<br />
&nbsp; &nbsp; compile group: 'org.springframework', name: 'spring-beans', version: '3.0.0.RELEASE', transitive: false<br />
&nbsp; &nbsp; compile group: 'log4j', name: 'log4j', version: '1.2.15', transitive: false<br />
&nbsp; &nbsp; compile group: 'org.springframework', name: 'spring-context', version: '3.0.0.RELEASE', transitive: false<br />
&nbsp; &nbsp; compile group: 'org.springframework', name: 'spring-asm', version: '3.0.0.RELEASE', transitive: false<br />
&nbsp; &nbsp; compile group: 'org.springframework', name: 'spring-expression', version: '3.0.0.RELEASE', transitive: false<br />
&nbsp; &nbsp; compile group: 'org.springframework', name: 'spring-aop', version: '3.0.0.RELEASE', transitive: false &nbsp; <br />
//&nbsp; compile group: 'org.aspectj', name: 'com.springsource.org.aspectj.weaver', version: '1.6.5.RELEASE', transitive: false<br />
&nbsp; &nbsp; compile group: 'com.google.guava', name: 'guava', version: 'r05', transitive: false<br />
&nbsp; &nbsp; compile group: 'org.springframework', name: 'spring-test', version: '3.0.0.RELEASE', transitive: false<br />
&nbsp; &nbsp; compile group: 'org.springframework', name: 'spring-core', version: '3.0.0.RELEASE', transitive: false<br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; ajc group: 'org.aspectj', name: 'aspectjtools', version: '1.6.5', transitive: false<br />
&nbsp; &nbsp; compile group: 'aspectj', name: 'aspectjrt', version: '1.5.3', transitive: false<br />
&nbsp; &nbsp; testCompile group: 'junit', name: 'junit', version: '4.7', transitive: false<br />
&nbsp; &nbsp; testCompile group: 'org.mockito', name: 'mockito-all', version: '1.8.2', transitive: false<br />
}</div></td></tr></tbody></table></div>
<p>when i compile without aspectj it is compiling without any errors. but when i apply aspectj plugin it is giving below errors.</p>
<p>[ant:iajc] D:\src\main\com\\config\common\Factory.java:47 [error] The method setApplicationContext(ApplicationContext) of type Factory must override a superclass method<br />
[ant:iajc] public void setApplicationContext(ApplicationContext arg0) throws BeansException {<br />
[ant:iajc]             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^</p>
<p>but i can see setApplicationContext is present in spring-context jar.</p>
<p>Can you help me in this regard</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ula.uvula</title>
		<link>http://www.breskeby.com/2010/02/using-gradle-with-aspectj/comment-page-1/#comment-21808</link>
		<dc:creator>ula.uvula</dc:creator>
		<pubDate>Sat, 29 Oct 2011 09:43:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.breskeby.com/?p=456#comment-21808</guid>
		<description>Hi, thanks for the quick response.
Can we use german?

Envirnment (every thing new)
-	Windows 7 64bit
-	Eclipse Indigo (3.7 SR1)
-	AJDT 2.1.3 (AspectJ 1.6.12) from the developer url (http://download.eclipse.org/tools/ajdt/37/dev/update)
Problem also exists with the “stable release”
-	Gradle 1.0-milestone-5 (Path variable extended to bin folder, no other gradle environment variable set).

Eclipse project created: “New-&gt;Project-&gt;AspectJ-&gt;AspectJ Project”
Eclipse project exported „General-&gt;File System“ and zipped, attached to e-mail</description>
		<content:encoded><![CDATA[<p>Hi, thanks for the quick response.<br />
Can we use german?</p>
<p>Envirnment (every thing new)<br />
-	Windows 7 64bit<br />
-	Eclipse Indigo (3.7 SR1)<br />
-	AJDT 2.1.3 (AspectJ 1.6.12) from the developer url (<a href="http://download.eclipse.org/tools/ajdt/37/dev/update" rel="nofollow">http://download.eclipse.org/tools/ajdt/37/dev/update</a>)<br />
Problem also exists with the “stable release”<br />
-	Gradle 1.0-milestone-5 (Path variable extended to bin folder, no other gradle environment variable set).</p>
<p>Eclipse project created: “New-&gt;Project-&gt;AspectJ-&gt;AspectJ Project”<br />
Eclipse project exported „General-&gt;File System“ and zipped, attached to e-mail</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: breskeby</title>
		<link>http://www.breskeby.com/2010/02/using-gradle-with-aspectj/comment-page-1/#comment-21807</link>
		<dc:creator>breskeby</dc:creator>
		<pubDate>Sat, 29 Oct 2011 08:51:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.breskeby.com/?p=456#comment-21807</guid>
		<description>Hi ula, you can send me your sample project at gradle@breskeby.com. Currently I am on travel, so it might take some days to reply an answer. another great place to post your questions about gradle is http://forums.gradle.org. But don&#039;t hesitate to post you answers here. 
some further information would be great:

- Which eclipse ajdt version do you use?
- which gradle version do you use?</description>
		<content:encoded><![CDATA[<p>Hi ula, you can send me your sample project at <a href="mailto:gradle@breskeby.com">gradle@breskeby.com</a>. Currently I am on travel, so it might take some days to reply an answer. another great place to post your questions about gradle is <a href="http://forums.gradle.org" rel="nofollow">http://forums.gradle.org</a>. But don&#8217;t hesitate to post you answers here.<br />
some further information would be great:</p>
<p>- Which eclipse ajdt version do you use?<br />
- which gradle version do you use?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ula.uvula</title>
		<link>http://www.breskeby.com/2010/02/using-gradle-with-aspectj/comment-page-1/#comment-21806</link>
		<dc:creator>ula.uvula</dc:creator>
		<pubDate>Sat, 29 Oct 2011 08:31:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.breskeby.com/?p=456#comment-21806</guid>
		<description>Hi, 
I feel as newbie in this big java eco cosmos.
I worked alot with java+eclipse and a little bit with ant.
In the meantime I have many project in my workspace (productive/examples/sandboxes etc).
In the past each project has its own jar files in the project lib directory, but in
the future I want to use a repository centric approach, so each project uses/shares the jars
from a repository. 

As exercise I  want to play around with AspectJ (AJDT in Ecplise) and
started with Maven, but got some problems (but that is another story).
So I switched to Gradle and found this article. Downloaded Gradle and your example (aspectJ.gradle).

With this setup I have the following problem (maybe this is a understanding problem).
  - The project is created as &quot;AspectJ Project&quot; with AJDT in eclipse.
    I add classes and aspects and it works.
  - I add the build.gradle + aspectJ.grade to the project and use Gradle from CLI.
  - If I add some dependencies in the build.gradle (e.g. log4j),
    I run &quot;gradle eclipse&quot; to download the jars into the repo and update eclipse.
  - Back in eclipse I press a F5 for refesh.
  - Now the aspect file is &quot;red&quot; and can&#039;t be compiled. (from the cli: gradle test is working well!).

  - I get the project back to working in eclipse with the following sequence:
    - Disable &quot;build automatically&quot; and clean the project.
    - Open the project properties and look at &quot;Builders&quot;
    - Here the list of &quot;Java Builder&quot; is growing every time I call gradle eclipse and one &quot;Java Builder&quot; is enabled
    - Disable the &quot;Java Builder&quot;
    - Enable &quot;build automatically&quot;
  - Project is working again from eclipse level

BTW: - gradle&#039;s compiles with the example from this article in directory &quot;build&quot;.
     - eclipse compiles the outputs into &quot;bin&quot; folder.

If somebody can help me, it will be great.
I also can export the eclipse project send send it by email, because, I haven&#039;t seen
how to attach a file to this blog.

Uwe</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I feel as newbie in this big java eco cosmos.<br />
I worked alot with java+eclipse and a little bit with ant.<br />
In the meantime I have many project in my workspace (productive/examples/sandboxes etc).<br />
In the past each project has its own jar files in the project lib directory, but in<br />
the future I want to use a repository centric approach, so each project uses/shares the jars<br />
from a repository. </p>
<p>As exercise I  want to play around with AspectJ (AJDT in Ecplise) and<br />
started with Maven, but got some problems (but that is another story).<br />
So I switched to Gradle and found this article. Downloaded Gradle and your example (aspectJ.gradle).</p>
<p>With this setup I have the following problem (maybe this is a understanding problem).<br />
  &#8211; The project is created as &#8220;AspectJ Project&#8221; with AJDT in eclipse.<br />
    I add classes and aspects and it works.<br />
  &#8211; I add the build.gradle + aspectJ.grade to the project and use Gradle from CLI.<br />
  &#8211; If I add some dependencies in the build.gradle (e.g. log4j),<br />
    I run &#8220;gradle eclipse&#8221; to download the jars into the repo and update eclipse.<br />
  &#8211; Back in eclipse I press a F5 for refesh.<br />
  &#8211; Now the aspect file is &#8220;red&#8221; and can&#8217;t be compiled. (from the cli: gradle test is working well!).</p>
<p>  &#8211; I get the project back to working in eclipse with the following sequence:<br />
    &#8211; Disable &#8220;build automatically&#8221; and clean the project.<br />
    &#8211; Open the project properties and look at &#8220;Builders&#8221;<br />
    &#8211; Here the list of &#8220;Java Builder&#8221; is growing every time I call gradle eclipse and one &#8220;Java Builder&#8221; is enabled<br />
    &#8211; Disable the &#8220;Java Builder&#8221;<br />
    &#8211; Enable &#8220;build automatically&#8221;<br />
  &#8211; Project is working again from eclipse level</p>
<p>BTW: &#8211; gradle&#8217;s compiles with the example from this article in directory &#8220;build&#8221;.<br />
     &#8211; eclipse compiles the outputs into &#8220;bin&#8221; folder.</p>
<p>If somebody can help me, it will be great.<br />
I also can export the eclipse project send send it by email, because, I haven&#8217;t seen<br />
how to attach a file to this blog.</p>
<p>Uwe</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lance</title>
		<link>http://www.breskeby.com/2010/02/using-gradle-with-aspectj/comment-page-1/#comment-21797</link>
		<dc:creator>Lance</dc:creator>
		<pubDate>Sat, 02 Apr 2011 16:42:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.breskeby.com/?p=456#comment-21797</guid>
		<description>I&#039;ll second most of camechis&#039; comments.  

I had to make a couple of mods in order to get this to work for a multi project scenario with gradle 1.0-milestone-1 

1. on the ant.iajc invocation, I had to add a &#039;forkclasspath&#039; attribute.  I set this to: configurations.ajc.asPath,
2. in each child project&#039;s dependency secion, you need to refer to any other projects it depends on for both compile AND ajc.  For example, if project foo depends on project bar, then you&#039;d list the following in foo&#039;s dependencies section: 

   compile project(&#039;:bar&#039;)
   ajc project(&#039;:bar&#039;)

3. in the overriden version of compileJava, as camechis says, you have to change which phase you&#039;re referring to in the &quot;dependsOn&quot; statement (replace &quot;compileJava&quot; with &quot;jar&quot;). 

   dependsOn configurations.ajc.getTaskDependencyFromProjectDependency(true, &quot;jar&quot;)


Also for the multi-project example shown here : https://github.com/breskeby/gradleplugins/tree/0.9-upgrade/aspectjPlugin/examples/MultiProject

I would suggest changing the project names.  

In the absence of declared dependencies, I believe gradle executes the child projects in alphanumeric order (based on the name of the child project).   Since &quot;ProjectA&quot; comes before &quot;ProjectB&quot;, Gradle will build it first anyway (even if you leave off a dependency declaration).   I think this is why its working even though its left off item #2 above.</description>
		<content:encoded><![CDATA[<p>I&#8217;ll second most of camechis&#8217; comments.  </p>
<p>I had to make a couple of mods in order to get this to work for a multi project scenario with gradle 1.0-milestone-1 </p>
<p>1. on the ant.iajc invocation, I had to add a &#8216;forkclasspath&#8217; attribute.  I set this to: configurations.ajc.asPath,<br />
2. in each child project&#8217;s dependency secion, you need to refer to any other projects it depends on for both compile AND ajc.  For example, if project foo depends on project bar, then you&#8217;d list the following in foo&#8217;s dependencies section: </p>
<p>   compile project(&#8216;:bar&#8217;)<br />
   ajc project(&#8216;:bar&#8217;)</p>
<p>3. in the overriden version of compileJava, as camechis says, you have to change which phase you&#8217;re referring to in the &#8220;dependsOn&#8221; statement (replace &#8220;compileJava&#8221; with &#8220;jar&#8221;). </p>
<p>   dependsOn configurations.ajc.getTaskDependencyFromProjectDependency(true, &#8220;jar&#8221;)</p>
<p>Also for the multi-project example shown here : <a href="https://github.com/breskeby/gradleplugins/tree/0.9-upgrade/aspectjPlugin/examples/MultiProject" rel="nofollow">https://github.com/breskeby/gradleplugins/tree/0.9-upgrade/aspectjPlugin/examples/MultiProject</a></p>
<p>I would suggest changing the project names.  </p>
<p>In the absence of declared dependencies, I believe gradle executes the child projects in alphanumeric order (based on the name of the child project).   Since &#8220;ProjectA&#8221; comes before &#8220;ProjectB&#8221;, Gradle will build it first anyway (even if you leave off a dependency declaration).   I think this is why its working even though its left off item #2 above.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: camechis</title>
		<link>http://www.breskeby.com/2010/02/using-gradle-with-aspectj/comment-page-1/#comment-21796</link>
		<dc:creator>camechis</dc:creator>
		<pubDate>Fri, 11 Mar 2011 17:10:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.breskeby.com/?p=456#comment-21796</guid>
		<description>I changed the line 	dependsOn configurations.ajc.getTaskDependencyFromProjectDependency(true, &quot;compileJava&quot;) to 

dependsOn configurations.ajc.getTaskDependencyFromProjectDependency(true, &quot;jar&quot;) and now it behaves correctly.  Not sure if this is the correct fix or not.</description>
		<content:encoded><![CDATA[<p>I changed the line 	dependsOn configurations.ajc.getTaskDependencyFromProjectDependency(true, &#8220;compileJava&#8221;) to </p>
<p>dependsOn configurations.ajc.getTaskDependencyFromProjectDependency(true, &#8220;jar&#8221;) and now it behaves correctly.  Not sure if this is the correct fix or not.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: camechis</title>
		<link>http://www.breskeby.com/2010/02/using-gradle-with-aspectj/comment-page-1/#comment-21795</link>
		<dc:creator>camechis</dc:creator>
		<pubDate>Fri, 11 Mar 2011 14:25:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.breskeby.com/?p=456#comment-21795</guid>
		<description>I have tried the update. Its building my shared library now but it doesn&#039;t look like its being included on the class path as I get unresolved symbols for class files included in the shared project.  When I look in the shared project I don&#039;t see a the jar file being created just the class files.  Note ( the shared uses aspectj as well and builds fine on its own, and the other project builds fine if I manually build the shared first )</description>
		<content:encoded><![CDATA[<p>I have tried the update. Its building my shared library now but it doesn&#8217;t look like its being included on the class path as I get unresolved symbols for class files included in the shared project.  When I look in the shared project I don&#8217;t see a the jar file being created just the class files.  Note ( the shared uses aspectj as well and builds fine on its own, and the other project builds fine if I manually build the shared first )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: René</title>
		<link>http://www.breskeby.com/2010/02/using-gradle-with-aspectj/comment-page-1/#comment-21794</link>
		<dc:creator>René</dc:creator>
		<pubDate>Wed, 09 Mar 2011 23:06:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.breskeby.com/?p=456#comment-21794</guid>
		<description>Hi camechis,
I took a look into the problem. I&#039;ve updated the aspectj.gradle file to support project dependencies. can you have a look at this. I&#039;ve committed it to github at https://github.com/breskeby/gradleplugins/blob/0.9-upgrade/aspectjPlugin/aspectJ.gradle

the &quot;apply url&quot; is outdated. you can use &quot;apply from:http:https://github.com/breskeby/gradleplugins/raw/0.9-upgrade/aspectjPlugin/aspectJ.gradle&quot; in gradle-1.0-milestone-1

regards,
René</description>
		<content:encoded><![CDATA[<p>Hi camechis,<br />
I took a look into the problem. I&#8217;ve updated the aspectj.gradle file to support project dependencies. can you have a look at this. I&#8217;ve committed it to github at <a href="https://github.com/breskeby/gradleplugins/blob/0.9-upgrade/aspectjPlugin/aspectJ.gradle" rel="nofollow">https://github.com/breskeby/gradleplugins/blob/0.9-upgrade/aspectjPlugin/aspectJ.gradle</a></p>
<p>the &#8220;apply url&#8221; is outdated. you can use &#8220;apply from:http:https://github.com/breskeby/gradleplugins/raw/0.9-upgrade/aspectjPlugin/aspectJ.gradle&#8221; in gradle-1.0-milestone-1</p>
<p>regards,<br />
René</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: camechis</title>
		<link>http://www.breskeby.com/2010/02/using-gradle-with-aspectj/comment-page-1/#comment-21793</link>
		<dc:creator>camechis</dc:creator>
		<pubDate>Wed, 09 Mar 2011 15:05:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.breskeby.com/?p=456#comment-21793</guid>
		<description>Any insight on this issue?</description>
		<content:encoded><![CDATA[<p>Any insight on this issue?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: camechis</title>
		<link>http://www.breskeby.com/2010/02/using-gradle-with-aspectj/comment-page-1/#comment-21792</link>
		<dc:creator>camechis</dc:creator>
		<pubDate>Mon, 07 Mar 2011 16:13:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.breskeby.com/?p=456#comment-21792</guid>
		<description>thanks,

On a note,  I am not use the &quot;apply :Url&quot; this did not work.  I have the tasked defined in the build file and I am using 1.0-M1 version of gradle.</description>
		<content:encoded><![CDATA[<p>thanks,</p>
<p>On a note,  I am not use the &#8220;apply :Url&#8221; this did not work.  I have the tasked defined in the build file and I am using 1.0-M1 version of gradle.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

