Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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