That is what is odd.. i'm guessing it is the "runtimes" part. Because gradle -n (by itself -- which makes use of compile.transitive=true)) makes no mention of 1.7rc2 at all.
Something must have a "runtime" dep on 1.7rc2, but not a compile time. I haven't figured out how to determine what as of yet (pom hopping etc) Roger On Mar 18, 2010, at 10:26 AM, Hans Dockter wrote: > Hi Roger, > > On Thu, Mar 18, 2010 at 3:21 PM, Roger Studner <[email protected]> wrote: > Hans.. got a very interesting one just now. > > build file: > usePlugin 'groovy' //note, I know this is deprecated/use apply > > configurations.compile.transitive = true > > repositories { > mavenCentral() > } > > dependencies { > groovy 'org.codehaus.groovy:groovy-all:1.7.0' > > compile 'org.apache.poi:poi:3.5-FINAL' > compile 'org.apache.poi:poi-contrib:3.5-FINAL' > compile 'org.apache.poi:poi-scratchpad:3.5-FINAL' > compile 'org.apache.poi:poi-ooxml:3.5-FINAL' > compile > 'org.codehaus.groovy.modules.http-builder:http-builder:0.5.0-RC3' > } > > task copyRuntimeDependencies(dependsOn: > configurations.runtime.buildArtifacts, type: Copy) { > into('lib') > from configurations.runtime > from configurations.runtime.allArtifacts*.file > } > > if I do gradle -n, I get the report.. build is successful.. downloads > all the dependencies.. Victory! > > if I do: > gradle copyRuntimeDependencies > > It downloads gradle 1.7-rc2. > > Where does gradle 1.7-rc2 comes from? > > - Hans > > -- > Hans Dockter > Founder, Gradle > http://www.gradle.org, http://twitter.com/gradleorg > CEO, Gradle Inc. - Gradle Training, Support, Consulting > http://www.gradle.biz > > > Now, what is odd, is that 1.7-rc2 is *not* in the gradle -n report. > > I imagine this, possibly, is because that "task" is from an example > for 0.8 and maybe now somethign in 0.9 is giving it headaches? > > Any thoughts? I reply on a task, "like that" to make a lib folder so > all the eclipse users can get their jars heh > > Thanks, > Roger > > --------------------------------------------------------------------- > To unsubscribe from this list, please visit: > > http://xircles.codehaus.org/manage_email > > >
