How to deploy with wagon s3 provider?

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.

Any hint?

link|improve this question

feedback

4 Answers

There is a newer s3 provider by spring which works:

<build>
    <extensions>
        <extension>
            <groupId>org.springframework.build.aws</groupId>
            <artifactId>org.springframework.build.aws.maven</artifactId>
            <version>3.0.0.RELEASE</version>
        </extension>
    </extensions>
</build>

If you would like to use it with maven 3, you need encrypt you passphrase in your settings.xml.

Step-by-step instructions are here.

link|improve this answer
cool, thanks :) – dfa Dec 10 '10 at 13:39
feedback
up vote 2 down vote accepted

In the case you care I'm uploading a preliminary version of a working S3 provider here.

link|improve this answer
feedback

Another alternative:

<build>
  <extensions>
    <extension>
      <groupId>org.cyclopsgroup</groupId>
      <artifactId>awss3-maven-wagon</artifactId>
      <version>0.1</version>
    </extension>
  </extensions>
  [...]
</build>

Then in settings.xml:

<servers>
  <server>
    <id>foo.s3</id>
    <username>AKIAJ.......OLVBA</username>
    <password>PsndORui..............KGZtDpeIYjsA/</password>
  </server>
</servers>

And then in your pom.xml:

<distributionManagement>
  <repository>
    <id>foo</id>
    <url>s3://foo.s3/</url>
  </repository>
</distributionManagement>

Should work.

link|improve this answer
feedback

We are using this wagon to connect Maven with S3. It is based on Spring's, but adds multi-threaded upload support.

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)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.