Re: [gradle-user] Re: Eclipse classpath in 0.9-rc1 ignores excludes

2010-08-06 Thread Hans Dockter
Thanks for reporting this. I will try to fix this for 0.9-final. - Hans -- Hans Dockter Founder, Gradle http://www.gradle.org, http://twitter.com/gradleorg CEO, Gradle Inc. - Gradle Training, Support, Consulting http://www.gradle.biz On Thu, Aug 5, 2010 at 2:49 AM, bryan brya...@gmail.com

Re: [gradle-user] Re: Eclipse classpath in 0.9-rc1 ignores excludes

2010-08-06 Thread Rene Groeschke
Hi there, additional to the problems bryan reported. I have the problem that my classpath contains duplicate entries. It seems that libs/containers/src paths are not merged correctly if they are not marked as exported in the origin classpath file. seems like a bug. regards, René Am Fr,

Re: [gradle-user] Re: Eclipse classpath in 0.9-rc1 ignores excludes

2010-08-06 Thread Philip Crotwell
Just FYI, the duplicate entries is in jira at http://jira.codehaus.org/browse/GRADLE-1056 Philip On Fri, Aug 6, 2010 at 5:00 AM, Rene Groeschke gra...@breskeby.com wrote: Hi there, additional to the problems bryan reported. I have the problem that my classpath contains duplicate entries. It

Re: [gradle-user] Re: Eclipse classpath in 0.9-rc1 ignores excludes

2010-08-06 Thread Jason Porter
Hans, looks like the idea plugin is doing the same thing with ignoring excludes in configurations. On Fri, Aug 6, 2010 at 01:49, Hans Dockter h...@gradle.biz wrote: Thanks for reporting this. I will try to fix this for 0.9-final. - Hans -- Hans Dockter Founder, Gradle http://www.gradle.org,

[gradle-user] Re: Eclipse classpath in 0.9-rc1 ignores excludes

2010-08-04 Thread bryan
I thought I'd come up with a more complete example to illustrate the issue. Here is a build script: apply plugin: java apply plugin: eclipse repositories { mavenCentral() } configurations { compile { exclude group:commons-logging } } dependencies { compile