首页 > 技术文章 > jenkins 发布报错

hanjun0612 2020-03-16 14:46 原文

一,is not a valid repository/tag: repository name must be lowercase

这个错误很坑爹。

修改pom的imageName,全部小写

<artifactId>kps.appAPIKintech</artifactId>
    <name>kps.appAPIKintech</name>
    <url>http://maven.apache.org</url>
    <properties>
        <imageName>appkintech:${project.version}</imageName>
    </properties>

 

推荐阅读