Maven Ant任务,部署到https

时间:2015-11-26 13:16:47

标签: maven ssl ant wagon

我正在尝试使用ssl将deb文件部署到nexus但是我收到错误消息“没有主题替代DNS名称匹配...”

我在ant中的构建目标如下所示:

<target name="deploy">
    <artifact:pom id="mypom" file="pom.xml"/>

    <artifact:install-provider artifactId="wagon-ssh" version="1.0-beta-2" />

    <artifact:deploy file="target/foo.deb">
        <remoteRepository url="https://bar" />
        <pom refid="mypom" />
    </artifact:deploy>
</target>

如何配置旅行车?我只是想忽略证书。

0 个答案:

没有答案