Index2 is groupId:artifactId:classifier:type
()
| 112 | |
| 113 | // Index2 is groupId:artifactId:classifier:type |
| 114 | func (pd PomDependency) Index2() string { |
| 115 | if pd.Type == "jar" { |
| 116 | pd.Type = "" |
| 117 | } |
| 118 | return fmt.Sprintf("%s:%s:%s:%s", pd.GroupId, pd.ArtifactId, pd.Classifier, pd.Type) |
| 119 | } |
| 120 | |
| 121 | // Index3 is groupId:artifactId:classifier:type:version |
| 122 | func (pd PomDependency) Index3() string { |
no outgoing calls
no test coverage detected