ast-cli-java-wrapper
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.checkmarx.ast</groupId>
<artifactId>ast-cli-java-wrapper</artifactId>
<version>2.4.23</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.checkmarx.ast</groupId>
<artifactId>${ast.wrapper.id}</artifactId>
<version>2.4.23</version>
<packaging>jar</packaging>
<name>Checkmarx AST Client</name>
<description>Checkmarx AST CLI SDK</description>
<url>https://www.checkmarx.com</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<ast.wrapper.id>ast-cli-java-wrapper</ast.wrapper.id>
<ast.wrapper.version>dev</ast.wrapper.version>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.18.0</version>
</dependency>
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.21.1</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.32</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.12.1</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>2.0.12</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.10.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.8</version>
<configuration>
<excludes>
<exclude>**/com/checkmarx/ast/results/**</exclude>
<exclude>**/com/checkmarx/ast/kicsRealtimeResults/**</exclude>
<exclude>**/com/checkmarx/ast/asca/**</exclude>
<exclude>**/com/checkmarx/ast/learnMore/**</exclude>
<exclude>**/com/checkmarx/ast/predicate/**</exclude>
<exclude>**/com/checkmarx/ast/scan/**</exclude>
<exclude>**/com/checkmarx/ast/codebashing/**</exclude>
<exclude>**/com/checkmarx/ast/remediation/**</exclude>
<exclude>**/com/checkmarx/ast/project/**</exclude>
<exclude>**/com/checkmarx/ast/tenant/**</exclude>
<exclude>**/com/checkmarx/ast/wrapper/CxConstants.class</exclude>
<exclude>**/com/checkmarx/ast/wrapper/CxException.class</exclude>
<exclude>**/com/checkmarx/ast/wrapper/CxConfig.class</exclude>
<exclude>**/com/checkmarx/ast/wrapper/CxBaseObject.class</exclude>
<exclude>**/com/checkmarx/ast/wrapper/CxConfig$*.class</exclude>
<!-- Add other patterns as needed -->
</excludes>
</configuration>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>4.8.3.1</version>
<configuration>
<effort>Max</effort>
<threshold>High</threshold>
<xmlOutput>true</xmlOutput>
<failOnError>false</failOnError>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.5</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.3</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.8.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<autoPublish>true</autoPublish> <!-- Optional -->
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>central</id>
<url>https://central.sonatype.com/api/v1/publish</url>
</repository>
</distributionManagement>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<organization>
<name>Checkmarx</name>
<url>https://www.checkmarx.com/</url>
</organization>
<scm>
<connection>scm:git:git://github.com/CheckmarxDev/ast-cli-java-wrapper.git</connection>
<developerConnection>scm:git:ssh://github.com/CheckmarxDev/ast-cli-java-wrapper.git</developerConnection>
<url>https://github.com/CheckmarxDev/ast-cli-java-wrapper/tree/master</url>
</scm>
<developers>
<developer>
<name>Anand Nandeshwar</name>
<email>anand.nandeshwar@checkmarx.com</email>
<organization>Checkmarx</organization>
<organizationUrl>https://www.checkmarx.com/</organizationUrl>
</developer>
</developers>
</project>