Skip to content

Commit

Permalink
Revert "added the jas scanner"
Browse files Browse the repository at this point in the history
This reverts commit 17039a9.
  • Loading branch information
eyalk007 committed Aug 25, 2024
1 parent 17039a9 commit 17e3b2d
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 54 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def idePluginsCommonVersion = '2.3.6'
dependencies {
implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '2.15.2'
implementation group: 'org.jfrog.buildinfo', name: 'build-info-extractor', version: buildInfoVersion
implementation files('../ide-plugins-common/build/libs/ide-plugins-common-2.3.x-SNAPSHOT.jar')
implementation group: 'com.jfrog.ide', name: 'ide-plugins-common', version: idePluginsCommonVersion
implementation group: 'org.jfrog.buildinfo', name: 'build-info-client', version: buildInfoVersion
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.15.2'
implementation group: 'org.jfrog.buildinfo', name: 'build-info-api', version: buildInfoVersion
Expand Down
51 changes: 0 additions & 51 deletions src/main/java/com/jfrog/ide/idea/scan/JasScanExecutor.java

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public abstract class ScanBinaryExecutor {
private static final int USER_NOT_ENTITLED = 31;
private static final int NOT_SUPPORTED = 13;
private static final String SCANNER_BINARY_NAME = "analyzerManager";
private static final String SCANNER_BINARY_VERSION = "1.8.13";
private static final String SCANNER_BINARY_VERSION = "1.6.3";
private static final String BINARY_DOWNLOAD_URL = "xsc-gen-exe-analyzer-manager-local/v1/" + SCANNER_BINARY_VERSION;
private static final String DOWNLOAD_SCANNER_NAME = "analyzerManager.zip";
private static final String MINIMAL_XRAY_VERSION_SUPPORTED_FOR_ENTITLEMENT = "3.66.0";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,6 @@ private Map<SourceCodeScanType, ScanBinaryExecutor> initScannersCollection() {
scanners.put(SourceCodeScanType.SECRETS, new SecretsScannerExecutor(Logger.getInstance()));
scanners.put(SourceCodeScanType.IAC, new IACScannerExecutor(Logger.getInstance()));
scanners.put(SourceCodeScanType.SAST, new SastScannerExecutor(Logger.getInstance()));
scanners.put(SourceCodeScanType.JAS, new JasScanExecutor(Logger.getInstance()));
return scanners;
}

Expand Down

0 comments on commit 17e3b2d

Please sign in to comment.