vulnerability-advisor
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.ibm.cloud</groupId>
<artifactId>vulnerability-advisor</artifactId>
<version>1.1.6</version>
</dependency><project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<!-- >>> Replace this with the parent pom's artifactId -->
<artifactId>container-registry-parent</artifactId>
<groupId>com.ibm.cloud</groupId>
<version>1.1.6</version>
<relativePath>../..</relativePath>
</parent>
<!-- >>> Replace this with the service module's artifactId (e.g. "example-service") -->
<artifactId>vulnerability-advisor</artifactId>
<!-- >>> Replace this with a text description of this module (e.g. "Example Service") -->
<name>Vulnerability Advisor</name>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>com.ibm.cloud</groupId>
<artifactId>sdk-core</artifactId>
</dependency>
<dependency>
<!-- >>> Replace this with the "common" module's artifactId (e.g. my-services-common) -->
<artifactId>container-registry-common</artifactId>
<groupId>${project.groupId}</groupId>
</dependency>
<dependency>
<artifactId>container-registry-common</artifactId>
<groupId>${project.groupId}</groupId>
<type>test-jar</type>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>mockwebserver</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-api-mockito2</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-module-testng</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<developers>
<developer>
<name>IBM Cloud DevX SDK Development</name>
<email>devxsdk@us.ibm.com</email>
<url>https://www.ibm.com/</url>
</developer>
</developers>
</project>