File tree Expand file tree Collapse file tree 2 files changed +50
-0
lines changed
src/test/java/com/checkmarx/ast Expand file tree Collapse file tree 2 files changed +50
-0
lines changed Original file line number Diff line number Diff line change 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 >
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 >
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+ 108+ <organization >Checkmarx Ltd</organization >
109+ <organizationUrl >https://www.checkmarx.com/</organizationUrl >
110+ </developer >
111+ </developers >
82112</project >
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments