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

1

我们不太支持 S3 Uploading(太慢,容易出错),建议改用 fast-deploy。

$ mvn 原型:生成 -Dfilter=elasticbeanstalk]

获得一个示例 pom 来申请

于 2013-04-18T14:50:11.970 回答
0

好的,我想我知道问题出在哪里。

这在 pom.xml 中是必需的

<dependency>
    <groupId>br.com.ingenieux</groupId>
    <artifactId>beanstalk-maven-plugin</artifactId>
    <version>0.2.9</version>
</dependency>
于 2013-04-18T17:19:16.903 回答