Bitbucket Pipelines - 找不到符号:class UniversalDetector

时间:2018-05-10 08:31:09

标签: maven bitbucket-pipelines

我尝试在juniversalcharset

上导入pom.xml个包
<dependency>
    <groupId>com.googlecode.juniversalchardet</groupId>
    <artifactId>juniversalchardet</artifactId>
    <version>1.0.3</version>
</dependency>

这是我的bitbucket-pipelines.yml

image: maven:3.3.3

pipelines:
    default:
        - step:
            caches:
                - maven
            script:
                - mvn clean install -Dmaven.wagon.http.ssl.allowall=true -Dmaven.wagon.http.ssl.insecure=true

它在我的本地计算机上正确下载和构建,但在管道上显示以下错误:

[ERROR] /opt/atlassian/pipelines/agent/build/src/main/java/package/location/GuessedEncoding.java:[18,15] cannot find symbol
symbol:   class UniversalDetector

我的猜测是,在管道上构建时无法找到maven工件。我的管道配置有问题吗?

1 个答案:

答案 0 :(得分:0)

我找到了解决方案。我忘了提交并推送pom.xml这就是管道无法找到新包的原因。