Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aecsocket/alexandria
Library for Minecraft platforms
https://github.com/aecsocket/alexandria
kotlin
Last synced: 5 days ago
JSON representation
Library for Minecraft platforms
- Host: GitHub
- URL: https://github.com/aecsocket/alexandria
- Owner: aecsocket
- License: mit
- Created: 2022-01-22T13:39:39.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-15T22:17:14.000Z (over 1 year ago)
- Last Synced: 2024-10-18T09:23:20.403Z (28 days ago)
- Topics: kotlin
- Language: Kotlin
- Homepage: https://aecsocket.github.io/alexandria
- Size: 2.35 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Alexandria
[![CI](https://img.shields.io/github/actions/workflow/status/aecsocket/alexandria/build.yml)](https://github.com/aecsocket/alexandria/actions/workflows/build.yml)
[![Release](https://img.shields.io/maven-central/v/io.github.aecsocket/alexandria-api?label=release)](https://central.sonatype.com/artifact/io.github.aecsocket/alexandria-api)
[![Snapshot](https://img.shields.io/nexus/s/io.github.aecsocket/alexandria-api?label=snapshot&server=https%3A%2F%2Fs01.oss.sonatype.org)](https://central.sonatype.com/artifact/io.github.aecsocket/alexandria-api)Multiplatform utilities for Minecraft projects
### [GitHub](https://github.com/aecsocket/alexandria) · [Dokka](https://aecsocket.github.io/alexandria/dokka)
A generic set of utilities for other projects, designed to be multiplatform but also have certain
platform-specific utilities.There is no user documentation; see the Dokka page to get API docs.
## Usage
See the version badges for the latest release and snapshot builds.
Modules:
- `alexandria-api` - platform-independent API
- `alexandria-common` - common library for implementing the API onto a platform
- `alexandria-paper` - [Paper](https://papermc.io) implementation
- `alexandria-fabric` - [Fabric](https://fabricmc.net) implementation```kotlin
repositories {
mavenCentral()
// for snapshot builds
// maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
}dependencies {
implementation("io.github.aecsocket", "alexandria-MODULE", "VERSION")
}
```