You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This framework is very lightweight annotation based command system that works similar to Bukkit's event system. It removes the necessity to
8
-
add command to your plugin.yml but will still allow you to set command usage, description, permission, aliases, sender type, cooldown, minimum
8
+
add commands to your plugin.yml but will still allow you to set command usage, description, permission, aliases, sender type, cooldown, minimum
9
9
and maximum argument length through the code and adds bunch of new methods to improve your code.
10
10
11
11
## Documentation
12
-
More information can be found on the [wiki page](https://github.com/Despical/CommandFramework/wiki). The [Javadoc](https://javadoc.jitpack.io/com/github/Despical/CommandFramework/latest/javadoc/index.html) can be browsed. Questions
13
-
related to the usage of Command Framework should be posted on my [Discord server](https://discord.com/invite/Vhyy4HA).
12
+
More information can be found on the [wiki page](https://github.com/Despical/CommandFramework/wiki). The [Java documentations](https://javadoc.jitpack.io/com/github/Despical/CommandFramework/latest/javadoc/index.html) can be browsed. Questions
13
+
related to the usage of Command Framework should be posted on my [Discord server](https://discord.com/invite/rVkaGmyszE).
14
+
15
+
# Donations
16
+
You like the framework? Then [donate](https://www.patreon.com/despical) back me to support the development.
17
+
Donations are more like motivation than money and, they are speeding up the development.
14
18
15
19
## Using Command Framework
16
20
The project isn't in the Central Repository yet, so specifying a repository is needed.<br>
@@ -28,7 +32,7 @@ To add this project as a dependency to your project, add the following to your p
@@ -110,18 +114,15 @@ This code is under [GPL-3.0 License](http://www.gnu.org/licenses/gpl-3.0.html)
110
114
111
115
See the [LICENSE](https://github.com/Despical/CommandFramework/blob/main/LICENSE) file for required notices and attributions.
112
116
113
-
## Donations
114
-
You like the Command Framework? Then [donate](https://www.patreon.com/despical) back me to support the development.
115
-
116
-
## ~~Contributing~~ (No more contributing)
117
+
## Contributing
117
118
118
119
I accept Pull Requests via GitHub. There are some guidelines which will make applying PRs easier for me:
119
120
+ Ensure you didn't use tabs! Please use spaces for indentation.
120
121
+ Respect the code style.
121
122
+ Do not increase the version numbers in any examples files and the README.md to the new version that this Pull Request would represent.
122
123
+ Create minimal diffs - disable on save actions like reformat source code or organize imports. If you feel the source code should be reformatted create a separate PR for this change.
123
124
124
-
You can learn more about contributing via GitHub in [contribution guidelines](CONTRIBUTING.md).
125
+
You can learn more about contributing via GitHub in [contribution guidelines](../CONTRIBUTING.md).
125
126
126
127
## Known issues
127
128
*~~Sub-commands aren't compatible with tab completions.~~
@@ -133,6 +134,6 @@ You can learn more about contributing via GitHub in [contribution guidelines](CO
133
134
If you want to build this project from source code, run the following from Git Bash:
134
135
```
135
136
git clone https://www.github.com/Despical/CommandFramework && cd CommandFramework
136
-
mvn clean package
137
+
mvn clean package -Dmaven.javadoc.skip=true
137
138
```
138
139
Also don't forget to install Maven before building.
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
# Contributing
2
2
3
3
When contributing to this repository, please first discuss the change you wish to make via [issue](https://github.com/Despical/CommandFramework/issues/new),
4
-
or [Discord](https://discord.com/invite/Vhyy4HA) with the owner of this repository before making a change.
4
+
or [Discord](https://discord.com/invite/rVkaGmyszE) with the owner of this repository before making a change.
5
5
6
6
Please note we have a code of conduct, please follow it in all your interactions with the project.
0 commit comments