Showing posts with label s3. Show all posts
Showing posts with label s3. Show all posts

Thursday, November 22, 2012

Simple S3 Solution for Maven Repository

Quick post, just the outline for this part-manual solution to publish a repo in the AWS S3 cloud.

# Set up a bucket (or find one to reuse).
# Enable Java for the AWS console (to be able to upload filesystem trees to your cloud bucket).

Each deploy:

# Use Maven's deploy command, specify a file:///tmp/my-repo/ folder as target.
# Upload using the file tree upload.
# Run the 'Make Public' command on the folder uploaded.

That's the skinny of it. Will be good enough for weekly or even daily publishing; but perhaps not for hourly updates.

Details TBD-M.