Skip to content

v0.3.0

Latest

Choose a tag to compare

@mudkipdev mudkipdev released this 19 Feb 11:50
· 2 commits to main since this release
bd280a8
  • Added a new multiline formatting style called PRETTY. The old formatting style which kept everything in one line has been renamed to INLINE_PRETTY. (breaking change)

Installation

Binary

Gradle (Kotlin)
dependencies {
    implementation("dev.mudkip:alpine-binary:0.3.0")
    implementation("io.netty:netty-buffer:4.2.10.Final")
}
Gradle (Groovy)
dependencies {
    implementation 'dev.mudkip:alpine-binary:0.3.0'
    implementation 'io.netty:netty-buffer:4.2.10.Final'
}
Maven
<dependency>
    <groupId>dev.mudkip</groupId>
    <artifactId>alpine-binary</artifactId>
    <version>0.3.0</version>
</dependency>

<dependency>
    <groupId>io.netty</groupId>
    <artifactId>netty-buffer</artifactId>
    <version>4.2.10.Final</version>
</dependency>

JSON

Gradle (Kotlin)
dependencies {
    implementation("dev.mudkip:alpine-json:0.3.0")
}
Gradle (Groovy)
dependencies {
    implementation 'dev.mudkip:alpine-json:0.3.0'
}
Maven
<dependency>
    <groupId>dev.mudkip</groupId>
    <artifactId>alpine-json</artifactId>
    <version>0.3.0</version>
</dependency>