You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
c.Flags().BoolVar(&skipSkills, "skip-skills", false, "disable Skills security scanning for this run")
82
83
c.Flags().StringArrayVar(&toolver.Default.Maven.AdditionalPrependArgs, "maven-prepend-arg", []string{}, "Prepend an argument to the Maven command. Can be specified multiple times.")
83
84
c.Flags().StringArrayVar(&toolver.Default.Maven.AdditionalArgs, "maven-arg", []string{}, "Append an argument to the Maven command. Can be specified multiple times.")
84
85
c.Flags().StringVar(&toolver.Default.Maven.JdkVersion, "maven-jdk", "", "specify JDK version for Maven build")
@@ -108,7 +109,6 @@ func DfCmd() *cobra.Command {
108
109
c.Flags().Var(&sbomOutputType, "sbom-format", "(Required) specify the SBOM format, currently supports: msdx1.1+json")
109
110
c.Flags().StringVar(&webhookAddr, "webhook-addr", "", "specify the webhook address")
110
111
c.Flags().Var(&webhookMode, "webhook-mode", "specify the webhook mode, currently supports: simple, full(default)")
111
-
c.Flags().BoolVar(&skipSkills, "skip-skills", false, "disable Skills security scanning for this run")
112
112
c.Flags().Var(&distribution, "distribution", "specify the distribution, currently supports: external, internal, saas, open_source")
113
113
c.Flags().StringVar(&extraData, "extra-data", "", "specify the extra data")
114
114
c.Flags().BoolVar(&scanCodeHash, "scan-snippets", false, "Enable scanning of code snippets to detect SBOM and vulnerabilities. Disabled by default")
0 commit comments