从常春藤本地仓库删除的蚂蚁任务

时间:2018-12-14 15:47:26

标签: java ant ivy

我有一个本地存储库,其中工件被发布为与m2兼容的存储库。

<filesystem name="local" m2compatible="true" local="true">
    <ivy pattern="${ivy.local.default.root}/[organization]/[module]/[revision]/[module]-[revision](-[classifier]).pom" />
    <artifact pattern="${ivy.local.default.root}/[organization]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]" />
</filesystem>

常春藤信息在组织中带有'。'。

例如,

<info organization="com.github.org" module="module" rev="0.1" status="release"/>

发布工件后,它们最终会出现在这样的目录中:

/.ivy2/local/com/github/org/module/0.1/*

删除任务的设置如下:

<delete dir="${ivy.local.default.root}/${ivy.organization}/${ivy.module}/${ivy.revision}"/>

我相信这是行不通的,因为ivy.organization不会被拆分到用于删除任务的单独目录中。

如何设置项目以正确删除已发布的jar文件?

1 个答案:

答案 0 :(得分:2)

可以使用一些脚本来对要转换为文件路径片段的字符串调用String.replaceAll()。例如,使用以下macrodef

  <!-- =============================================================================
    Replaces all '.' in groupId with '/' and put the result in a property
    Attributes:
    - groupId: maven groupId
    - result: name of the property in which to put the result
  ============================================================================== -->

  <macrodef name="pathFrom">
    <attribute name="groupId"/>
    <attribute name="result" default="path"/>
    <sequential>
      <local name="g"/>
      <property name="g" value="@{groupId}"/>
      <script language="javascript">
        project.setProperty("@{result}", project.getProperty("g").replaceAll("\\.", "/"));
      </script>
    </sequential>
  </macrodef>

这是一个示例用法:

  <target name="test">
    <property name="myGroup" value="com.github.org"/>
    <pathFrom groupId="${myGroup}" result="tmp.path"/>
    <echo message="converted from '${myGroup}' to '${tmp.path}'"/>
  </target>

ant test调用时,输出如下:

test:
    [echo] converted from 'com.github.org' to 'com/github/org'