generated from plexusorg/ExampleModule
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit d04e6de
Showing
16 changed files
with
1,274 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Gradle | ||
|
||
on: [ push ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v2 | ||
with: | ||
distribution: temurin | ||
java-version: 17 | ||
cache: gradle | ||
- name: Build with Gradle | ||
run: chmod a+x gradlew && ./gradlew build --no-daemon |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/.idea/ | ||
*.iml | ||
/target/ | ||
|
||
# OS | ||
.DS_Store | ||
._* | ||
.Spotlight-V100 | ||
.Trashes | ||
ehthumbs.db | ||
Thumbs.db | ||
|
||
# Gradle | ||
/build/ | ||
/.gradle/ |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
For those who are wanting to contribute, we fully encourage doing so. There are a few rules we require following when contributing however. | ||
|
||
## Steps | ||
1. Make an issue and get feedback. It's important to know if your idea will be accepted before writing any code. | ||
- If it is a feature request, describe the feature and be extremely specific. | ||
- If it is a bug report, ensure you include how to reproduce the bug and the expected outcome | ||
- If it is an enhancement, describe your proposed changes. Ensure you are extremely specific. | ||
2. Fork this project | ||
3. Create a new branch that describes the new feature, enhancement, or bug fix. For example, this is good: `feature/add-xyz`. This is bad: `fix-this-lol`. | ||
4. Write the code that addresses your change. | ||
- Keep in mind that it **must** be formatted correctly. If you are using IntelliJ, there is a `codeStyle.xml` file that tells IntelliJ how to format your code. Check this link for information on how to use the file: https://www.jetbrains.com/help/idea/configuring-code-style.html#import-export-schemes | ||
- If you are not using IntelliJ, that is fine. We use the Plexus Code Style (which is almost the same as Allman) so please format your code accordingly. | ||
6. Push your changes to your new branch and make a PR based off of that branch. | ||
|
||
## Requirements for a PR | ||
- The issue must be marked as approved | ||
- It must only address each specific issue. Don't make one PR for multiple issues. | ||
- Your PR must compile and work. If it does not compile or work, your PR will most likely be rejected. | ||
|
||
## Code requirements | ||
- Most importantly, your code must be efficient. Your pull request may be rejected if your code is deemed inefficient or sloppy. | ||
- Do not repeat yourself. Create functions as needed if you're using large blocks of code over and over again. | ||
- Do not use an excessive amount of commits when making your PR. It makes the master branch look messy. | ||
- Your code must be consistent with Plex's codebase. If a function already exists, use it. |
Oops, something went wrong.