Skip to content

Commit 8411bd2

Browse files
author
Jay Nanduri
committed
changed the pom.xml settings
1 parent 14edb9a commit 8411bd2

File tree

2 files changed

+50
-0
lines changed

2 files changed

+50
-0
lines changed

pom.xml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,12 @@
5050
<artifactId>slf4j-simple</artifactId>
5151
<version>1.7.5</version>
5252
</dependency>
53+
<dependency>
54+
<groupId>org.junit.jupiter</groupId>
55+
<artifactId>junit-jupiter</artifactId>
56+
<version>RELEASE</version>
57+
<scope>test</scope>
58+
</dependency>
5359
</dependencies>
5460

5561
<build>
@@ -66,6 +72,18 @@
6672
</execution>
6773
</executions>
6874
</plugin>
75+
<plugin>
76+
<groupId>org.sonatype.plugins</groupId>
77+
<artifactId>nexus-staging-maven-plugin</artifactId>
78+
<version>1.6.7</version>
79+
<extensions>true</extensions>
80+
<configuration>
81+
<serverId>ossrh</serverId>
82+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
83+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
84+
<stagingProgressTimeoutMinutes>10</stagingProgressTimeoutMinutes>
85+
</configuration>
86+
</plugin>
6987
</plugins>
7088
</build>
7189
<distributionManagement>
@@ -74,9 +92,21 @@
7492
<name>CheckmarxDev</name>
7593
<url>https://maven.pkg.github.com/CheckmarxDev/ast-cli-java-wrapper</url>
7694
</repository>
95+
<repository>
96+
<id>ossrh</id>
97+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
98+
</repository>
7799
</distributionManagement>
78100
<properties>
79101
<maven.compiler.source>8</maven.compiler.source>
80102
<maven.compiler.target>8</maven.compiler.target>
81103
</properties>
104+
<developers>
105+
<developer>
106+
<name>Jay Nanduri</name>
107+
<email>[email protected]</email>
108+
<organization>Checkmarx Ltd</organization>
109+
<organizationUrl>https://www.checkmarx.com/</organizationUrl>
110+
</developer>
111+
</developers>
82112
</project>
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
package com.checkmarx.ast;
2+
3+
import org.junit.Test;
4+
5+
import static org.junit.Assert.*;
6+
7+
public class CxAuthTest {
8+
9+
@Test
10+
public void cxScanShow() {
11+
}
12+
13+
@Test
14+
public void cxAstScanList() {
15+
}
16+
17+
@Test
18+
public void cxScanCreate() {
19+
}
20+
}

0 commit comments

Comments
 (0)