常春藤版本匹配器的问题

时间:2012-01-10 17:41:34

标签: ivy

我正在尝试使用Ivy中的版本匹配器来解析工件。文档基本上说要将它添加到ivysettings.xml

  <version-matchers>
    <pattern-vm>
      <match revision="foo" pattern="${major}\.${minor}\.\d+" args="major, minor" matcher="regexp" />
    </pattern-vm>
    </version-matchers>

这是你的ivy.xml

<dependency org="com.example" name="test" rev="foo(1, 3)" />

但是,这是我在执行此操作时收到的错误消息:

Impossible to resolve dependencies of com.example#com.example;working@XX81111L
unresolved dependency: com.example#test;foo(1,0): not found
unresolved dependency: com.example#test;foo(1,0): not found

我在这里可以缺少什么?

0 个答案:

没有答案