Skip to content

Releases: pickeloe5/parseknife

Release list

0.0.1

0.0.1 Pre-release
Pre-release

Choose a tag to compare

@pickeloe5 pickeloe5 released this 05 Jun 17:29

Beta

Contains most of the fundamentals that will carry on throughout the maturation of this project
But should probably not be counted on to solve every enterprise scenario just yet
Documentation and API reference will be coming soon to https://parseknife.nickmatt.dev

Usage

README.md
Direct download links are bundled with this release for jars containing both the compiled library and its sources.
Configuration for dependency managers can be found below courtesy of JitPack.

Gradle (Kotlin)

repositories {
  // ...
  mavenCentral()
  maven { url = uri("https://jitpack.io") }
}
dependencies {
  // ...
  implementation("com.github.pickeloe5:parseknife:0.0.1")
}

Gradle (Groovy)

repositories {
  // ...
  mavenCentral()
  maven { url 'https://jitpack.io' }
}
dependencies {
  // ...
  implementation 'com.github.pickeloe5:parseknife:0.0.1'
}

Maven

<repositories>
  <!-- ... -->
  <repository>
    <id>jitpack.io</id>
    <url>https://jitpack.io</url>
  </repository>
</repositories>
<dependencies>
  <!-- ... -->
  <dependency>
    <groupId>com.github.pickeloe5</groupId>
    <artifactId>parseknife</artifactId>
    <version>0.0.1</version>
  </dependency>
</dependencies>

JitPack has some information about configuring other dependency managers.