行家S3车皮供应商车皮、行家、供应商

2023-09-11 08:19:28 作者:徦情徦噫徦薀柔

如何与货车S3提供商部署?

How to deploy with wagon s3 provider?

我已经发现了几个插件,其中大部分是不完整的,有的则是不maintaned。也有来自官方的maven SVN仓库沙箱插件,但我盘算如何使用它。

I've found several plugins, most of them are incomplete, some of them are not maintaned. There is also a sandbox plugin from official maven SVN repository but I'm figuring how to use it.

任何线索?

推荐答案

该货车就是我们使用的是部署到S3。它类似于Spring的,但多线程上传的支持。

This wagon is what we are using to deploy to S3. It's similar to Spring's, but has multi-threaded upload support.

这让CI服务器推了很多Maven的内容出来S3非常快。 (22K文件和400MB的含量在50秒)

This lets the CI server push a lot of Maven content out to S3 very quickly. (22k files and 400mb's of content in ~50 seconds)

https://github.com/jcaddel/maven-s3-wagon

<build>
 <extensions>
   <extension>
    <groupId>org.kuali.maven.wagons</groupId>
    <artifactId>maven-s3-wagon</artifactId>
    <version>1.2.1</version>
   </extension>
 </extensions>
</build>