Skip to content

404Setup/t-thread

Repository files navigation

T2hread

Maven Central Version javadoc

No need to install TLIB Base, need Java 17.

Install

Please use shadow to remap T2hread to your own path to avoid conflicts with other libraries/plugins using T2hread.

maven

<dependency>
    <groupId>one.tranic</groupId>
    <artifactId>t-thread</artifactId>
    <version>[VERSION]</version>
</dependency>

Gradle (Groovy)

repositories {
    mavenCentral()
}

dependencies {
    implementation 'one.tranic:t-thread:[VERSION]'
}

Gradle (Kotlin DSL)

repositories {
    mavenCentral()
}

dependencies {
    implementation("one.tranic:t-thread:[VERSION]")
}