Skip to content
This repository was archived by the owner on Nov 30, 2021. It is now read-only.

Commit 3397082

Browse files
committed
Refactor code to support Elastic Beanstalk deploys
1 parent 348ea50 commit 3397082

File tree

55 files changed

+1324
-2691
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+1324
-2691
lines changed

.editorconfig

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# This file is for unifying the coding style for different editors and IDEs
2+
# editorconfig.org
3+
4+
root = true
5+
6+
[*]
7+
end_of_line = lf
8+
charset = utf-8
9+
insert_final_newline = true
10+
trim_trailing_whitespace = true
11+
indent_style = space
12+
indent_size = 2
13+
max_line_length = 120
14+
15+
[Makefile]
16+
indent_style = tab

.idea/.name

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyleSettings.xml

-17
This file was deleted.

.idea/copyright/JetBrains_open_sourced.xml

-9
This file was deleted.

.idea/copyright/profiles_settings.xml

100755100644
+1-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

-6
This file was deleted.

.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
language: java
32
jdk:
43
- oraclejdk8

CONTRIBUTING.md

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
## How to contribute to teamcity-aws-elasticbeanstalk-plugin
2+
3+
### Main rules
4+
5+
* Before you open a ticket or send a pull request, [search](https://github.com/rtfpessoa/teamcity-aws-elasticbeanstalk-plugin/issues) for previous discussions about the same feature or issue. Add to the earlier ticket if you find one.
6+
7+
* If you're proposing a new feature, make sure you create an issue to let other contributors know what you are working on.
8+
9+
* Before sending a pull request make sure your code is tested.
10+
11+
* Before sending a pull request for a feature, be sure to run tests with `gradle test`.
12+
13+
* Use the same coding style as the rest of the codebase.
14+
15+
* Use `git rebase` (not `git merge`) to sync your work from time to time with the master branch.
16+
17+
* After creating your pull request make sure the build is passing in [Travis](https://travis-ci.org/rtfpessoa/teamcity-aws-elasticbeanstalk-plugin).
18+
19+
### Commit Style
20+
21+
Writing good commit logs is important. A commit log should describe what changed and why.
22+
Follow these guidelines when writing one:
23+
24+
1. The first line should be 50 characters or less and contain a short
25+
description of the change prefixed with the name of the changed
26+
subsystem (e.g. "net: add localAddress and localPort to Socket").
27+
2. Keep the second line blank.
28+
3. Wrap all other lines at 72 columns.
29+
30+
A good commit log can look something like this:
31+
32+
```
33+
subsystem: explaining the commit in one line
34+
35+
Body of commit message is a few lines of text, explaining things
36+
in more detail, possibly giving some background about the issue
37+
being fixed, etc. etc.
38+
39+
The body of the commit message can be several paragraphs, and
40+
please do proper word-wrap and keep columns shorter than about
41+
72 characters or so. That way `git log` will show things
42+
nicely even when it is indented.
43+
```
44+
45+
### Developer's Certificate of Origin 1.0
46+
47+
By making a contribution to this project, I certify that:
48+
49+
* (a) The contribution was created in whole or in part by me and I
50+
have the right to submit it under the open source license indicated
51+
in the file; or
52+
* (b) The contribution is based upon previous work that, to the best
53+
of my knowledge, is covered under an appropriate open source license
54+
and I have the right under that license to submit that work with
55+
modifications, whether created in whole or in part by me, under the
56+
same open source license (unless I am permitted to submit under a
57+
different license), as indicated in the file; or
58+
* (c) The contribution was provided directly to me by some other
59+
person who certified (a), (b) or (c) and I have not modified it.

CREDITS.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Credits
2+
3+
This is the list of all the kind people that have contributed to this project,
4+
directly or before it was forked from [teamcity-aws-codedeploy-plugin](https://github.com/JetBrains/teamcity-aws-codedeploy-plugin).
5+
6+
This list is ordered by first contribution.
7+
8+
Thanks,
9+
@rtfpessoa
10+
11+
----------
12+
13+
vbedrosova, [@vbedrosova](https://github.com/vbedrosova)
14+
15+
Rod MacKenzie, [@rodm](https://github.com/rodm)
16+
17+
Vladislav Rassokhin, [@VladRassokhin](https://github.com/VladRassokhin)
18+
19+
Rodrigo Fernandes, [@rtfpessoa](https://github.com/rtfpessoa)

LICENSE.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Copyright 2016 rtfpessoa
2+
3+
Licensed under the Apache License, Version 2.0 (the "License");
4+
you may not use this file except in compliance with the License.
5+
You may obtain a copy of the License at
6+
7+
http://www.apache.org/licenses/LICENSE-2.0
8+
9+
Unless required by applicable law or agreed to in writing, software
10+
distributed under the License is distributed on an "AS IS" BASIS,
11+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
See the License for the specific language governing permissions and
13+
limitations under the License.

LICENSE.txt

-68
This file was deleted.

README.md

+35-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,35 @@
1-
teamcity-aws-codedeploy-plugin
2-
==============================
1+
# Teamcity AWS Elastic Beanstalk Plugin (teamcity-aws-elasticbeanstalk-plugin)
2+
3+
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/a88f10539dbd47b588cf444b57346d5b)](https://www.codacy.com/app/Codacy/teamcity-aws-elasticbeanstalk-plugin?utm_source=github.com&utm_medium=referral&utm_content=rtfpessoa/teamcity-aws-elasticbeanstalk-plugin&utm_campaign=Badge_Grade)
4+
[![Travis](https://travis-ci.org/rtfpessoa/teamcity-aws-elasticbeanstalk-plugin.svg?branch=master)](https://travis-ci.org/rtfpessoa/teamcity-aws-elasticbeanstalk-plugin)
5+
[![Dependency Status](https://dependencyci.com/github/rtfpessoa/teamcity-aws-elasticbeanstalk-plugin/badge)](https://dependencyci.com/github/rtfpessoa/teamcity-aws-elasticbeanstalk-plugin)
6+
7+
teamcity-aws-elasticbeanstalk-plugin is a **VERY EARLY STAGE** Teamcity plugin that allows deployments
8+
to Elastic Beanstalk.
9+
10+
This plugin started from the code in [teamcity-aws-codedeploy-plugin](https://github.com/JetBrains/teamcity-aws-codedeploy-plugin)
11+
and was adapted for Elastic Beanstalk and slightly ajusted.
12+
13+
## Features
14+
15+
* S3 bundle deployment to Elastic Beanstalk
16+
17+
## Release
18+
19+
* 1.0.0-alpha1 [aws-elasticbeanstalk-plugin.zip](https://github.com/rtfpessoa/teamcity-aws-elasticbeanstalk-plugin/releases/download/1.0.0-alpha1/aws-elasticbeanstalk-plugin.zip)
20+
21+
## Contributions
22+
23+
This is a developer friendly project, all the contributions are welcome.
24+
To contribute just send a pull request with your changes following the guidelines described in `CONTRIBUTING.md`.
25+
I will try to review them as soon as possible.
26+
27+
## License
28+
29+
Copyright 2016 Rodrigo Fernandes. Licensed under the Apache License, Version 2.0 (the "License").
30+
31+
## Thanks
32+
33+
This project started from the codebase in [teamcity-aws-codedeploy-plugin](https://github.com/JetBrains/teamcity-aws-codedeploy-plugin).
34+
35+
---

0 commit comments

Comments
 (0)