We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bfc7ab commit ccd79beCopy full SHA for ccd79be
commands/curation/curationaudit.go
@@ -75,6 +75,7 @@ const (
75
MinArtiGolangSupport = "7.87.0"
76
MinArtiNuGetSupport = "7.93.0"
77
MinXrayPassThroughSupport = "3.92.0"
78
+ MinArtiGradlesupport = "7.63.5"
79
)
80
81
var CurationOutputFormats = []string{string(outFormat.Table), string(outFormat.Json)}
@@ -94,7 +95,7 @@ var supportedTech = map[techutils.Technology]func(ca *CurationAuditCommand) (boo
94
95
return ca.checkSupportByVersionOrEnv(techutils.Nuget, MinArtiNuGetSupport)
96
},
97
techutils.Gradle: func(ca *CurationAuditCommand) (bool, error) {
- return ca.checkSupportByVersionOrEnv(techutils.Gradle, MinArtiPassThroughSupport)
98
+ return ca.checkSupportByVersionOrEnv(techutils.Gradle, MinArtiGradlesupport)
99
100
}
101
0 commit comments