Skip to content

Various Java utility classes to bootstrap development, and some scripts that are common to many of my projects.

License

Notifications You must be signed in to change notification settings

GlitchyByte/glitchy-kit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Glitchy Kit

Java

Included in this repository are libraries and utilities common to many of my projects.


GLib Java library

Version

Classes and utilities for general development. Read the javadoc!

To use in your own projects, make sure you have the appropriate credentials in your gradle.properties, and add the repository and dependency like this (Gradle Kotlin):

repositories {
    maven {
        // GitHub repository.
        name = "GitHubPackages"
        url = uri("https://maven.pkg.github.com/GlitchyByte/*")
        credentials {
            username = project.findProperty("gpr.username") as String?
            password = project.findProperty("gpr.token") as String?
        }
        metadataSources {
            gradleMetadata()
        }
    }
}

dependencies {
    implementation("com.glitchybyte.glib:glib:1.9.0")
}

About

Various Java utility classes to bootstrap development, and some scripts that are common to many of my projects.

Topics

Resources

License

Stars

Watchers

Forks