Thanks for the quick reply. Scott Hickey Senior Consultant Object Partners, Inc.
________________________________ From: Hans Dockter <[email protected]> To: [email protected] Sent: Thursday, January 15, 2009 10:16:48 AM Subject: Re: [gradle-user] example of dependency on jar without version number Hi Scott, On Jan 14, 2009, at 2:38 PM, Scott Hickey wrote: > I have files in my existing project lib directory, that came as part of the > Spring distribution, without a version number i.e. commons-logging.jar > > From the readme file in 0.5.2, I got the impression that I could include > files like this that don't have a version number. I'm can't figure out how > what the string should look like in the dependency section to make this work. Neither can I :-(. Internally we support now version less artifacts. But our notation does not allow to express this. Sorry for this. Obviously we are not happy with this. What you can do meanwhile as a work around: compile(":commons-logging:na") { version = '' } // The notation requires a version, otherwise we get a parsing error. In the closure we can overwrite what has been generated out of the notation. Obviously this is ugly. But at least it works. Expect this to be fixed in our next release. - Hans -- Hans Dockter Gradle Project lead http://www.gradle.org --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email
