On 12/6/06, easyproglife <[EMAIL PROTECTED]> wrote:
Hi. I searched the documentation but found nothing detailed about version matcher.
You're right, the level of details is not very high. The list of built-in version matchers is available here: http://www.jayasoft.org/ivy/doc/ivyfile/dependency As you see there is no version matcher matching your specific need, having a regexp version matcher could be a good idea, and it's pretty easy to write actually. Have a look at how other are implemented, and I guess you'll quickly understand. Xavier I am wondering what are built-in version matchers and how to use them?
To be specific, I need to distinct between a release version with "x.y.z" version convention and an integration version with "x.y.z-integX" version convention. Using "x.y.+" as a version of a dependency will give me both revisions. I need kind of reg-exp or wildcard mechanism to specify the version I want. For example: in my case, I want "x.y.[[:digit:]]+" in reg-exp format. So my question is if version-matcher (and specifically built-in version-matchers) related to my case? Thanks.
