我正在尝试使用 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>