Check 检查是否是合法maven依赖
()
| 286 | |
| 287 | // Check 检查是否是合法maven依赖 |
| 288 | func (dep PomDependency) Check() bool { |
| 289 | return !(dep.ArtifactId == "" || dep.GroupId == "" || dep.Version == "" || strings.Contains(dep.GAV(), "$")) |
| 290 | } |
| 291 | |
| 292 | // ImportPath 引入路径 |
| 293 | func (dep PomDependency) ImportPath() []PomDependency { |
no test coverage detected