Home | History | Annotate | Download | only in pom2mk

Lines Matching refs:artifactId

61 func (r *RewriteNames) MavenToMk(groupId string, artifactId string) string {
63 if r.regexp.MatchString(groupId + ":" + artifactId) {
64 return r.regexp.ReplaceAllString(groupId+":"+artifactId, r.repl)
65 } else if r.regexp.MatchString(artifactId) {
66 return r.regexp.ReplaceAllString(artifactId, r.repl)
69 return artifactId
124 ArtifactId string `xml:"artifactId"`
132 d.MakeTarget = rewriteNames.MavenToMk(d.GroupId, d.ArtifactId)
145 ArtifactId string `xml:"artifactId"`
162 p.MakeTarget = rewriteNames.MavenToMk(p.GroupId, p.ArtifactId)
187 name := rewriteNames.MavenToMk(d.GroupId, d.ArtifactId)
355 either the Maven project's <groupId>:<artifactId> or <artifactId> will be used to generate
356 the Make module name using <replace>. If no matches are found, <artifactId> is used.