Skip to content

ValentinJDT/ValLib

Repository files navigation

ValLib

This repo contains all the tools I have developed for projects.

You can find :

  • EventRegister (+ Event API)
  • PluginLoader (+ Plugin API)
  • Html builder
  • YamlReader (Does not support lists at the moment)
  • Test framework
  • Socket connection : client and server (Kotlin + Java version)

And others functions in the package : fr.valentinjdt.lib.utils

Installation

Add repository :

repositories {
    /* Others repositories */
    maven {
        name = "jitpack.io"
        url = uri("https://jitpack.io")
    }
}

Add implementation :

dependencies {
    /* Others dependencies */
    implementation("com.github.ValentinJDT:ValLib:v0.2.0")
}

Compile lib in your project :

jar {
    from {
        configurations
                .runtimeClasspath
                .collect {
                    if (it.name.contains("ValLib")) {
                        zipTree(it)
                    }
                }
    }
}

About

This repo contains all the tools I have developed for projects.

Resources

Stars

Watchers

Forks

Packages

No packages published