Bitbucket 管道 - 找不到符号:class UniversalDetector
Bitbucket Pipelines - Cannot find symbol: class UniversalDetector
我试图在 pom.xml
上导入 juniversalcharset
包
<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 工件。我的管道配置有问题吗?
我找到了解决方案。我忘记提交并推送 pom.xml
这就是管道无法找到新包的原因。
我试图在 pom.xml
juniversalcharset
包
<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 工件。我的管道配置有问题吗?
我找到了解决方案。我忘记提交并推送 pom.xml
这就是管道无法找到新包的原因。