AWS p2 Maven Plugin

Maven plugin for deploying a p2 update site to an AWS S3 bucket

A Maven plugin for deploying a p2 update site to an AWS S3 bucket.

For more details about the development of AWS p2 Maven Plugin, check out my blog post.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<plugin>
    <groupId>com.avojak.mojo</groupId>
    <artifactId>aws-p2-maven-plugin</artifactId>
    <version>2.0.0</version>
    <configuration>
        <bucket>p2.example.com</bucket>
    </configuration>
    <executions>
        <execution>
            <goals>
                <goal>deploy</goal>
            </goals>
        </execution>
    </executions>
</plugin>

GitHub Repository: https://github.com/avojak/aws-p2-maven-plugin Maven Central: https://mvnrepository.com/artifact/com.avojak.mojo/aws-p2-maven-plugin

Related