Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 0 additions & 18 deletions .github/workflows/ci.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/pr-automation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ jobs:
GH_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
PRNUM: ${{ github.event.pull_request.number }}
PRAUTHOR: ${{ github.event.pull_request.user.login }}
run: gh pr edit $PRNUM --add-reviewer Checkmarx/ast-galactica-team
run: gh pr edit $PRNUM --add-reviewer Checkmarx/cx-anurag-dalke
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@
<br />
<p align="center">
<a href="https://github.com/CheckmarxDev/ast-cli-maven-plugin">
<img src="https://raw.githubusercontent.com/Checkmarx/ci-cd-integrations/main/.images/logo.png" alt="Logo" width="80" height="80" />
<img src="https://raw.githubusercontent.com/Checkmarx/ci-cd-integrations/main/.images/cx_azure_x-icon-80px.png" alt="Logo" width="80" height="80" />
</a>


<h3 align="center">AST CLI Maven Plugin</h3>
<p align="center">
The AST CLI Maven Plugin allows you to use the AST CLI inside Maven.
<br />
<a href=""><strong>Explore the docs »</strong></a>
<a href="https://docs.checkmarx.com/en/34965-68718-checkmarx-one-maven-plugin.html#UUID-b98fc723-b965-f205-9bff-8dded9a5d75d_id_ASTMavenPlugin-ASTMavenPluginInitialSetup"><strong>Explore the docs »</strong></a>
<br />
<br />
<a href="https://github.com/CheckmarxDev/ast-cli-maven-plugin/issues/new">Report Bug</a>
Expand Down
Binary file modified logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
38 changes: 16 additions & 22 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<dependency>
<groupId>com.checkmarx.ast</groupId>
<artifactId>ast-cli-java-wrapper</artifactId>
<version>2.0.8</version>
<version>2.4.7</version>
</dependency>
</dependencies>

Expand All @@ -54,17 +54,15 @@
</pluginManagement>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.13</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
<stagingProgressTimeoutMinutes>10</stagingProgressTimeoutMinutes>
</configuration>
</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>
Expand Down Expand Up @@ -101,16 +99,12 @@
</plugins>
</build>

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<distributionManagement>
<repository>
<id>central</id>
<url>https://central.sonatype.com/api/v1/publish</url>
</repository>
</distributionManagement>

<licenses>
<license>
Expand Down