Skip to content

Commit a486a0a

Browse files
authored
Added changes to sources param (#3)
* Added changes to sources param
1 parent d6eb3dc commit a486a0a

File tree

6 files changed

+3
-3
lines changed

6 files changed

+3
-3
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.checkmarx.ast</groupId>
66
<artifactId>ast-cli-java-wrapper</artifactId>
7-
<version>1.0.1</version>
7+
<version>1.0.2</version>
88
<packaging>jar</packaging>
99

1010
<dependencies>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package com.checkmarx.ast;
22

33
public enum CxParamType {
4-
S, V, G, D, PROJECT_NAME, SCAN_TYPES, SAST_PRESET_NAME, FILTER, DIRECTORY, ADDITIONAL_PARAMETERS, AGENT
4+
S, V, G, PROJECT_NAME, SCAN_TYPES, SAST_PRESET_NAME, FILTER, DIRECTORY, ADDITIONAL_PARAMETERS, AGENT, SOURCES
55
}

src/main/resources/cx-exe

-2.71 MB
Binary file not shown.

src/main/resources/cx-mac

-2.77 MB
Binary file not shown.

src/main/resources/cx.exe

-2.26 MB
Binary file not shown.

src/test/java/com/checkmarx/ast/CxAuthTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public void init() throws InterruptedException, IOException, URISyntaxException
4141
}
4242
params.put(CxParamType.PROJECT_NAME, "TestCaseWrapper");
4343
params.put(CxParamType.SCAN_TYPES, "sast");
44-
params.put(CxParamType.D, ".");
44+
params.put(CxParamType.S, ".");
4545
params.put(CxParamType.FILTER, "*.java");
4646
auth = new CxAuth(config, log);
4747

0 commit comments

Comments
 (0)