kezhenxu94 commented on a change in pull request #53:
URL: https://github.com/apache/skywalking-eyes/pull/53#discussion_r687388434



##########
File path: pkg/deps/jar.go
##########
@@ -0,0 +1,136 @@
+//
+// Licensed to Apache Software Foundation (ASF) under one or more contributor
+// license agreements. See the NOTICE file distributed with
+// this work for additional information regarding copyright
+// ownership. Apache Software Foundation (ASF) licenses this file to you under
+// the Apache License, Version 2.0 (the "License"); you may
+// not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing,
+// software distributed under the License is distributed on an
+// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+// KIND, either express or implied.  See the License for the
+// specific language governing permissions and limitations
+// under the License.
+package deps
+
+import (
+       "archive/zip"
+       "bufio"
+       "bytes"
+       "fmt"
+       "io"
+       "path/filepath"
+       "regexp"
+
+       "github.com/apache/skywalking-eyes/license-eye/internal/logger"
+       "github.com/apache/skywalking-eyes/license-eye/pkg/license"
+)
+
+type JarResolver struct{}
+
+func (resolver *JarResolver) CanResolve(jarFile string) bool {
+       return filepath.Ext(jarFile) == ".jar"
+}
+
+func (resolver *JarResolver) Resolve(jarFile string, report *Report) error {
+       state := NotFound
+       if err := resolver.ResolveJar(&state, jarFile, report); err != nil {

Review comment:
       > From my understanding, JarResolver is only responsible for resolve the 
licenses of jar files. And `deps/config.go` will enter all jar files in the 
`dist/**/*.jar`
   
   Well, now, it seems `deps/config.go` doesn't expand the pattern 
`dist/**/*.jar` to all `.jar` files (like `dist/module1/log4j.jar`, 
`dist/module2/junit.jar`), we should do this, right?




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to