We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, Dep-Check CLI manual lists "--artifactoryUrl" as a parameter: https://jeremylong.github.io/DependencyCheck/dependency-check-cli/arguments.html However, it would appear that command: dependency-check.sh --artifactoryUrl gives an error: Unrecognized option: --artifactoryUrl
The string/argument is present in https://github.com/jeremylong/DependencyCheck/blob/master/cli/src/main/java/org/owasp/dependencycheck/CliParser.java public static final String ARTIFACTORY_URL = "artifactoryUrl"; However, as far as I can tell, the variable is not referenced in the source code. This has been tested with Dependency-Check Core version 3.3.2
public static final String ARTIFACTORY_URL = "artifactoryUrl";
Is this a bug, not yet implemented or deprecated feature?
[user@localhost ~]$ ./dependency-check.sh --artifactoryUrl http://artifactory.local Unrecognized option: --artifactoryUrl
The text was updated successfully, but these errors were encountered:
fix for #1492
15a134e
Sorry about that. This will be fixed in the next release.
--jeremy
Sorry, something went wrong.
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
No branches or pull requests
Hello,
Dep-Check CLI manual lists "--artifactoryUrl" as a parameter:
https://jeremylong.github.io/DependencyCheck/dependency-check-cli/arguments.html
However, it would appear that command:
dependency-check.sh --artifactoryUrl
gives an error:
Unrecognized option: --artifactoryUrl
The string/argument is present in https://github.com/jeremylong/DependencyCheck/blob/master/cli/src/main/java/org/owasp/dependencycheck/CliParser.java
public static final String ARTIFACTORY_URL = "artifactoryUrl";
However, as far as I can tell, the variable is not referenced in the source code. This has been tested with Dependency-Check Core version 3.3.2
Is this a bug, not yet implemented or deprecated feature?
Example
The text was updated successfully, but these errors were encountered: