Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/normalhuman01/bukkit-helper-alya
a bukkit helper and storage helper to create your own plugins very fast and following SOLID, OOP, DI.
https://github.com/normalhuman01/bukkit-helper-alya
Last synced: about 1 month ago
JSON representation
a bukkit helper and storage helper to create your own plugins very fast and following SOLID, OOP, DI.
- Host: GitHub
- URL: https://github.com/normalhuman01/bukkit-helper-alya
- Owner: normalhuman01
- License: mit
- Created: 2023-12-16T19:26:45.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-16T19:28:13.000Z (about 1 year ago)
- Last Synced: 2023-12-16T20:28:41.762Z (about 1 year ago)
- Language: Java
- Size: 69.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Alya ![Build Status](https://img.shields.io/github/workflow/status/pixeldev/alya/build/master)
This is a bukkit helper and storage helper to create your own plugins very fast and following SOLID, OOP, DI.
## Repositories
### Releases repository
All versions that doesn't end with "-SNAPSHOT" will be here.
#### Maven (pom.xml)
```xml
unnamed-releases
https://repo.unnamed.team/repository/unnamed-releases/```
#### Gradle (build.gradle)
```groovy
repositories {
maven { url 'https://repo.unnamed.team/repository/unnamed-releases/' }
}
```### Snapshots repository
All versions ending with "-SNAPSHOT" will be here
#### Maven (pom.xml)
```xml
unnamed-snapshots
https://repo.unnamed.team/repository/unnamed-snapshots/```
#### Gradle (build.gradle)
```groovy
repositories {
maven { url 'https://repo.unnamed.team/repository/unnamed-snapshots/' }
}
```### Dependency
- Latest
snapshot: [![Latest Snapshot](https://img.shields.io/nexus/s/me.pixeldev.alya/bukkit.svg?server=https%3A%2F%2Frepo.unnamed.team)](https://repo.unnamed.team/repository/unnamed-snapshots)
- Latest
release: [![Latest Release](https://img.shields.io/nexus/r/me.pixeldev.alya/bukkit.svg?server=https%3A%2F%2Frepo.unnamed.team)](https://repo.unnamed.team/repository/unnamed-releases)#### Maven (pom.xml)
```xml
me.pixeldev.alya
bukkit
VERSION
all```
If you're using the annotation processor to AutoListener use in your *maven-compiler-plugin*:
```xml
me.pixeldev.alya
bukkit
VERSION
all
```
#### Gradle (build.gradle)
```groovy
dependencies {
implementation('me.pixeldev.alya:bukkit:VERSION:all') {transitive = true}
}
```If you're using the annotation processor to AutoListener use too:
```groovy
annotationProcessor 'me.pixeldev.alya:bukkit:1.0-SNAPSHOT:all'
```If you want to use some other module, just change the artifactId to the chosen module.
### Current modules:
- jdk
- gson