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 50
50
<artifactId >slf4j-simple</artifactId >
51
51
<version >1.7.5</version >
52
52
</dependency >
53
+ <dependency >
54
+ <groupId >org.junit.jupiter</groupId >
55
+ <artifactId >junit-jupiter</artifactId >
56
+ <version >RELEASE</version >
57
+ <scope >test</scope >
58
+ </dependency >
53
59
</dependencies >
54
60
55
61
<build >
66
72
</execution >
67
73
</executions >
68
74
</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 >
69
87
</plugins >
70
88
</build >
71
89
<distributionManagement >
74
92
<name >CheckmarxDev</name >
75
93
<url >https://maven.pkg.github.com/CheckmarxDev/ast-cli-java-wrapper</url >
76
94
</repository >
95
+ <repository >
96
+ <id >ossrh</id >
97
+ <url >https://oss.sonatype.org/service/local/staging/deploy/maven2/</url >
98
+ </repository >
77
99
</distributionManagement >
78
100
<properties >
79
101
<maven .compiler.source>8</maven .compiler.source>
80
102
<maven .compiler.target>8</maven .compiler.target>
81
103
</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 >
82
112
</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