MVN

com.sshtools : sshapi-trilead

Maven & Gradle

Aug 17, 2018

SSHAPI Trilead · Trilead SSH-2 for Java is a library which implements the SSH-2 protocol in pure Java (minimum required JRE: 1.4.2). It allows one to connect to SSH servers from within Java programs. It supports SSH sessions (remote command execution and shell access), local and remote port forwarding, local stream forwarding, X11 forwarding, SCP and SFTP. There are no dependencies on any JCE provider, as all crypto functionality is included. This library is the provider bridge for SSHAPI.

<dependency>
    <groupId>com.sshtools</groupId>
    <artifactId>sshapi-trilead</artifactId>
    <version>1.1.2</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.sshtools : sshapi-trilead to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.1.2

All Versions

Choose a version of com.sshtools : sshapi-trilead to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.1.x
sshapi-trilead-1.1.2
sshapi-trilead-1.1.1
sshapi-trilead-1.1.0

How to add a dependency to Maven

Add the following com.sshtools : sshapi-trilead maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.sshtools</groupId>
    <artifactId>sshapi-trilead</artifactId>
    <version>1.1.2</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.sshtools : sshapi-trilead gradle dependency to your build.gradle file:

implementation 'com.sshtools:sshapi-trilead:1.1.2'

Gradle Kotlin DSL: Add the following com.sshtools : sshapi-trilead gradle kotlin dependency to your build.gradle.kts file:

implementation("com.sshtools:sshapi-trilead:1.1.2")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.sshtools : sshapi-trilead sbt scala dependency to your build.sbt file:

libraryDependencies += "com.sshtools" % "sshapi-trilead" % "1.1.2"

Advertisement