MVN

com.github.secdec.astam-correlator : threadfix-cli-lib

Maven & Gradle

Mar 15, 2022
23 stars

This module contains library classes for accessing the ThreadFix REST API. The ThreadFix IDE plugins use this library to retrieve application and vulnerability marker information, and in the ThreadFix scanner plugins to get endpoint information and upload scans to ThreadFix applications. The easiest way to start using the library is with the PluginClient or ThreadFixRestClient classes. Both have constructors that take a PropertiesManager instance, which holds the ThreadFix API key and url information. The default PropertiesManager implementation stores these properties in threadfix.properties, but the ThreadFix plugins extend the default PropertiesManager class to override this behavior for the target platform.

<dependency>
    <groupId>com.github.secdec.astam-correlator</groupId>
    <artifactId>threadfix-cli-lib</artifactId>
    <version>1.3.8</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.github.secdec.astam-correlator : threadfix-cli-lib to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.3.8

All Versions

Choose a version of com.github.secdec.astam-correlator : threadfix-cli-lib to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.3.x
threadfix-cli-lib-1.3.8
threadfix-cli-lib-1.3.7
threadfix-cli-lib-1.3.6
threadfix-cli-lib-1.3.5
threadfix-cli-lib-1.3.4
threadfix-cli-lib-1.3.3
threadfix-cli-lib-1.3.2
threadfix-cli-lib-1.3.1
threadfix-cli-lib-1.3.0
1.2.x
threadfix-cli-lib-1.2.18
threadfix-cli-lib-1.2.17.1
threadfix-cli-lib-1.2.17
threadfix-cli-lib-1.2.16.1
threadfix-cli-lib-1.2.16
threadfix-cli-lib-1.2.14
threadfix-cli-lib-1.2.13
threadfix-cli-lib-1.2.12
threadfix-cli-lib-1.2.11
threadfix-cli-lib-1.2.10
threadfix-cli-lib-1.2.9
threadfix-cli-lib-1.2.2

How to add a dependency to Maven

Add the following com.github.secdec.astam-correlator : threadfix-cli-lib maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.github.secdec.astam-correlator</groupId>
    <artifactId>threadfix-cli-lib</artifactId>
    <version>1.3.8</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.github.secdec.astam-correlator : threadfix-cli-lib gradle dependency to your build.gradle file:

implementation 'com.github.secdec.astam-correlator:threadfix-cli-lib:1.3.8'

Gradle Kotlin DSL: Add the following com.github.secdec.astam-correlator : threadfix-cli-lib gradle kotlin dependency to your build.gradle.kts file:

implementation("com.github.secdec.astam-correlator:threadfix-cli-lib:1.3.8")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.github.secdec.astam-correlator : threadfix-cli-lib sbt scala dependency to your build.sbt file:

libraryDependencies += "com.github.secdec.astam-correlator" % "threadfix-cli-lib" % "1.3.8"