0

Ingenieux Beanstalk プラグインを使用して S3 に戦争をアップロードしようとしています。ただし、アップロードしようとするとハングします。この異常に遭遇した人はいますか?

私はこのチュートリアルに従っています: http://beanstalker.ingenieux.com.br/beanstalk-maven-plugin/usage.html

mvn beanstalk:upload-source-bundle

ログは次のとおりです。

[WARNING] You should encrypt your passwords. See http://beanstalker.ingenieux.com.br/security.html for more information
[INFO] Target Path: s3://some-bucket/test-web2-0.0.1-SNAPSHOT.war
[INFO] Uploading artifact file: C:\Users\Chin Boon\Documents\workstation\test-web2\target\test-web2-0.0.1-SNAPSHOT.war

pom.xml:

<plugin>
    <groupId>br.com.ingenieux</groupId>
    <artifactId>beanstalk-maven-plugin</artifactId>

    <configuration>
        <s3Bucket>some-bucket</s3Bucket>
        <s3Key>${project.build.finalName}.war</s3Key>
        <!-- will save as s3://[bucket name]/artifactId-version-TIMESTAMP.war -->
    </configuration>
</plugin>
4

2 に答える 2