Skip to content

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

License

Notifications You must be signed in to change notification settings

Harleyoc1/SerDes

Repository files navigation

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")

About

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published