No need to install TLIB Base, need Java 17.
Please use shadow to remap TNetwork to your own path to avoid conflicts with other libraries/plugins using TProxy.
maven
<dependency>
<groupId>one.tranic</groupId>
<artifactId>t-network</artifactId>
<version>[VERSION]</version>
</dependency>
Gradle (Groovy)
repositories {
mavenCentral()
}
dependencies {
implementation 'one.tranic:t-network:[VERSION]'
}
Gradle (Kotlin DSL)
repositories {
mavenCentral()
}
dependencies {
implementation("one.tranic:t-network:[VERSION]")
}