/t-proxy

TProxy is used to quickly read proxy information from system settings and environment variables || TLIB series works.

Primary LanguageJavaApache License 2.0Apache-2.0

TProxy

Maven Central Version javadoc

TProxy is used to quickly read proxy information from system settings and environment variables.

No need to install TLIB Base, need Java 17.

Install

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

maven

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

Gradle (Groovy)

repositories {
    mavenCentral()
}

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

Gradle (Kotlin DSL)

repositories {
    mavenCentral()
}

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