https://github.com/jcabi/jcabi-beanstalk-maven-plugin
Maven Plugin for AWS Elastic Beanstalk
https://github.com/jcabi/jcabi-beanstalk-maven-plugin
Last synced: 25 days ago
JSON representation
Maven Plugin for AWS Elastic Beanstalk
- Host: GitHub
- URL: https://github.com/jcabi/jcabi-beanstalk-maven-plugin
- Owner: jcabi
- License: other
- Created: 2013-09-04T13:28:47.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2025-09-01T03:46:20.000Z (about 1 month ago)
- Last Synced: 2025-09-01T05:54:45.337Z (about 1 month ago)
- Language: Java
- Homepage: http://beanstalk.jcabi.com/
- Size: 769 KB
- Stars: 12
- Watchers: 6
- Forks: 10
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
[](https://www.elegantobjects.org)
[](https://www.0crat.com/p/C3RUBL5H9)
[](http://www.rultor.com/p/jcabi/jcabi-beanstalk-maven-plugin)[](https://travis-ci.org/jcabi/jcabi-beanstalk-maven-plugin)
[](http://www.0pdd.com/p?name=jcabi/jcabi-beanstalk-maven-plugin)
[](https://ci.appveyor.com/project/yegor256/jcabi-beanstalk-maven-plugin/branch/master)
[](https://maven-badges.herokuapp.com/maven-central/com.jcabi/jcabi-beanstalk-maven-plugin)
[](http://www.javadoc.io/doc/com.jcabi/jcabi-beanstalk-maven-plugin)More details are here:
[beanstalk.jcabi.com](http://beanstalk.jcabi.com/index.html)The plugin automates deployment of Java WAR applications
to [AWS Elastic Beanstalk](http://aws.amazon.com/elasticbeanstalk/).
The plugin is designed with a minimalistic
approach, so that you don't need to provide a lot of configuration
options. Instead, there are a few conventions:* CNAME of a "primary" environment is always the same as the application name
* Environments are configured only by
[saved configuration templates](http://docs.amazonwebservices.com/elasticbeanstalk/latest/dg/using-features.managing.html#using-features.managing.saving)* Deployment is done either by
[CNAME swap](http://docs.amazonwebservices.com/elasticbeanstalk/latest/dg/using-features.CNAMESwap.html)
or version update* An application always contains only one "primary" environment.
Details are explained in [usage documentation](http://www.jcabi.com/jcabi-beanstalk-maven-plugin/index.html),
but in short it works like this:```xml
com.jcabi
jcabi-beanstalk-maven-plugin
example
webapps.example.com
${project.artifactId}-${project.version}.war
example
deploy
```
## Questions?
If you have any questions about the framework, or something doesn't work as expected,
please [submit an issue here](https://github.com/jcabi/jcabi-beanstalk-maven-plugin/issues/new).## How to contribute?
Fork the repository, make changes, submit a pull request.
We promise to review your changes same day and apply to
the `master` branch, if they look correct.Please run Maven build before submitting a pull request:
```
$ mvn clean install -Pqulice
```