Skip to content

Commit 39b3d19

Browse files
committed
feat(gradle): Implement Gradle analyser
1 parent 8ba5602 commit 39b3d19

File tree

10 files changed

+302
-365
lines changed

10 files changed

+302
-365
lines changed

analyzers/analyzer.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import (
55
"errors"
66

77
"github.com/fossas/fossa-cli/analyzers/golang"
8+
"github.com/fossas/fossa-cli/analyzers/gradle"
89
"github.com/fossas/fossa-cli/analyzers/nodejs"
910
"github.com/fossas/fossa-cli/analyzers/python"
1011
"github.com/fossas/fossa-cli/analyzers/ruby"
@@ -45,7 +46,7 @@ func New(key pkg.Type, options map[string]interface{}) (Analyzer, error) {
4546
case pkg.Go:
4647
return golang.New(options)
4748
case pkg.Gradle:
48-
return nil, ErrAnalyzerNotImplemented
49+
return gradle.New(options)
4950
case pkg.Maven:
5051
return nil, ErrAnalyzerNotImplemented
5152
case pkg.NodeJS:

analyzers/gradle/builder.go

-208
This file was deleted.

0 commit comments

Comments
 (0)