Lines Matching refs:artifactId
64 func (r *RewriteNames) MavenToBp(groupId string, artifactId string) string {
66 if r.regexp.MatchString(groupId + ":" + artifactId) {
67 return r.regexp.ReplaceAllString(groupId+":"+artifactId, r.repl)
68 } else if r.regexp.MatchString(artifactId) {
69 return r.regexp.ReplaceAllString(artifactId, r.repl)
72 return artifactId
109 func (n HostModuleNames) IsHostModule(groupId string, artifactId string) bool {
110 _, found := n[groupId+":"+artifactId]
144 ArtifactId string `xml:"artifactId"`
152 d.BpTarget = rewriteNames.MavenToBp(d.GroupId, d.ArtifactId)
166 ArtifactId string `xml:"artifactId"`
182 return hostModuleNames.IsHostModule(p.GroupId, p.ArtifactId)
219 p.BpTarget = rewriteNames.MavenToBp(p.GroupId, p.ArtifactId)
244 name := rewriteNames.MavenToBp(d.GroupId, d.ArtifactId)
467 either the Maven project's <groupId>:<artifactId> or <artifactId> will be used to generate
468 the Android.bp module name using <replace>. If no matches are found, <artifactId> is used.