Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cyclopsmc/commoncapabilitiesapi
The public API for CommonCapabilities
https://github.com/cyclopsmc/commoncapabilitiesapi
forge java minecraft
Last synced: 3 days ago
JSON representation
The public API for CommonCapabilities
- Host: GitHub
- URL: https://github.com/cyclopsmc/commoncapabilitiesapi
- Owner: CyclopsMC
- License: mit
- Created: 2016-03-02T18:56:36.000Z (over 8 years ago)
- Default Branch: master-1.21
- Last Pushed: 2024-08-21T15:47:09.000Z (3 months ago)
- Last Synced: 2024-08-22T17:58:10.905Z (3 months ago)
- Topics: forge, java, minecraft
- Language: Java
- Size: 231 KB
- Stars: 6
- Watchers: 5
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
## CommonCapabilitiesAPI
API for the [CommonCapabilities](https://github.com/CyclopsMC/CommonCapabilities) mod.
This API simply contains various capabilities that can be used by any mod.### Contributing
* New Capabilities should first be discussed through an RFC issue.
* All Capabilities must have a default implementation that acts as an example for other modders.
* All code must comply to our coding conventions, be clean and must be well documented.### Using the API
Don't package the API (*recommended*):
```
git submodule add https://github.com/CyclopsMC/CommonCapabilitiesAPI.git src/api/java/org/cyclops/commoncapabilities/api/
```Repackage the API (Only if you know what you're doing):
```
git submodule add https://github.com/CyclopsMC/CommonCapabilitiesAPI.git src/main/java/org/cyclops/commoncapabilities/api/
```### Branching Strategy
For every major Minecraft version, two branches exist:
* `master-{mc_version}`: Latest (potentially unstable) development.
* `release-{mc_version}`: Latest stable release for that Minecraft version. This is also tagged with all mod releases.### License
All code and images are licenced under the [MIT License](https://github.com/CyclopsMC/CommonCapabilitiesAPI/blob/master-1.8/LICENSE.txt)