Skip to content

Latest commit

 

History

History
executable file
·
34 lines (26 loc) · 1.52 KB

README.md

File metadata and controls

executable file
·
34 lines (26 loc) · 1.52 KB

SerDes GitHub

A library for serialisation and deserialisation to and from an SQL table and a Java object. Built on Java 16.

Due to this being in early stages of development, semantic versioning conventions are currently not strictly followed. There is also not currently any documentation, though most methods and classes have Javadoc (I am slowly adding Javadoc to all methods and classes, and fields where necessary).

Gradle Setup

Don't reinvent the wheel, add it to your build.gradle!

To add it to your gradle script, first add the following code to the repositories block to load my maven repository:

build.gradle [for Groovy build scripts]

maven {
    name 'Harley O\'Connor Maven'
    url 'https://harleyoconnor.com/maven/'
}

build.gradle.kts [for Kotlin build scripts]

maven("https://harleyoconnor.com/maven/")

Next, add the following to your dependencies block to load SerDes itself:

build.gradle [for Groovy build scripts]

implementation group: 'com.harleyoconnor.serdes', name: 'SerDes', version: '0.0.6'

build.gradle.kts [for Kotlin build scripts]

implementation(group = "com.harleyoconnor.serdes", name = "SerDes", version = "0.0.6")