Skip to content

Commit 3e35c70

Browse files
Merge pull request #162 from Checkmarx/fix/AST-105522
Fix/ast 105522
2 parents 6163b31 + 45723be commit 3e35c70

File tree

5 files changed

+19
-43
lines changed

5 files changed

+19
-43
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 18 deletions
This file was deleted.

.github/workflows/pr-automation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ jobs:
1919
GH_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
2020
PRNUM: ${{ github.event.pull_request.number }}
2121
PRAUTHOR: ${{ github.event.pull_request.user.login }}
22-
run: gh pr edit $PRNUM --add-reviewer Checkmarx/ast-galactica-team
22+
run: gh pr edit $PRNUM --add-reviewer Checkmarx/cx-anurag-dalke

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@
2121
<br />
2222
<p align="center">
2323
<a href="https://github.com/CheckmarxDev/ast-cli-maven-plugin">
24-
<img src="https://raw.githubusercontent.com/Checkmarx/ci-cd-integrations/main/.images/logo.png" alt="Logo" width="80" height="80" />
24+
<img src="https://raw.githubusercontent.com/Checkmarx/ci-cd-integrations/main/.images/cx_azure_x-icon-80px.png" alt="Logo" width="80" height="80" />
2525
</a>
2626

2727

2828
<h3 align="center">AST CLI Maven Plugin</h3>
2929
<p align="center">
3030
The AST CLI Maven Plugin allows you to use the AST CLI inside Maven.
3131
<br />
32-
<a href=""><strong>Explore the docs »</strong></a>
32+
<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>
3333
<br />
3434
<br />
3535
<a href="https://github.com/CheckmarxDev/ast-cli-maven-plugin/issues/new">Report Bug</a>

logo.png

4.46 KB
Loading

pom.xml

Lines changed: 16 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>com.checkmarx.ast</groupId>
4040
<artifactId>ast-cli-java-wrapper</artifactId>
41-
<version>2.0.8</version>
41+
<version>2.4.7</version>
4242
</dependency>
4343
</dependencies>
4444

@@ -54,17 +54,15 @@
5454
</pluginManagement>
5555
<plugins>
5656
<plugin>
57-
<groupId>org.sonatype.plugins</groupId>
58-
<artifactId>nexus-staging-maven-plugin</artifactId>
59-
<version>1.6.13</version>
60-
<extensions>true</extensions>
61-
<configuration>
62-
<serverId>ossrh</serverId>
63-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
64-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
65-
<stagingProgressTimeoutMinutes>10</stagingProgressTimeoutMinutes>
66-
</configuration>
67-
</plugin>
57+
<groupId>org.sonatype.central</groupId>
58+
<artifactId>central-publishing-maven-plugin</artifactId>
59+
<version>0.8.0</version>
60+
<extensions>true</extensions>
61+
<configuration>
62+
<publishingServerId>central</publishingServerId>
63+
<autoPublish>true</autoPublish> <!-- Optional -->
64+
</configuration>
65+
</plugin>
6866
<plugin>
6967
<groupId>org.apache.maven.plugins</groupId>
7068
<artifactId>maven-gpg-plugin</artifactId>
@@ -101,16 +99,12 @@
10199
</plugins>
102100
</build>
103101

104-
<distributionManagement>
105-
<snapshotRepository>
106-
<id>ossrh</id>
107-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
108-
</snapshotRepository>
109-
<repository>
110-
<id>ossrh</id>
111-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
112-
</repository>
113-
</distributionManagement>
102+
<distributionManagement>
103+
<repository>
104+
<id>central</id>
105+
<url>https://central.sonatype.com/api/v1/publish</url>
106+
</repository>
107+
</distributionManagement>
114108

115109
<licenses>
116110
<license>

0 commit comments

Comments
 (0)