Package org.gradle.api.artifacts.maven
Interface MavenPom
-
public interface MavenPomIs used for generating a Maven POM file and customizing the generation. To learn about the Maven POM see: http://maven.apache.org/pom.html
-
-
Field Summary
Fields Modifier and Type Field Description static StringPOM_FILE_ENCODING
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetArtifactId()Returns the artifact id for this POM.ConfigurationContainergetConfigurations()Returns the configuration container used for mapping configurations to Maven scopes.List<?>getDependencies()Returns the dependencies for this POM.MavenPomgetEffectivePom()Returns a POM with the generated dependencies and thewhenConfigured(org.gradle.api.Action)actions applied.StringgetGroupId()Returns the group id for this POM.ObjectgetModel()Returns the underlying native MavenModelobject.StringgetPackaging()Returns the packaging for this POM.Conf2ScopeMappingContainergetScopeMappings()Returns the scope mappings used for generating this POM.StringgetVersion()Returns the version for this POM.MavenPomproject(Closure pom)Provides a builder for the Maven POM for adding or modifying properties of the MavengetModel().MavenPomproject(Action<? super GroovyObject> pom)Provides a builder for the Maven POM for adding or modifying properties of the MavengetModel().MavenPomsetArtifactId(String artifactId)Sets the artifact id for this POM.MavenPomsetConfigurations(ConfigurationContainer configurations)Sets the configuration container used for mapping configurations to Maven scopes.MavenPomsetDependencies(List<?> dependencies)Sets the dependencies for this POM.MavenPomsetGroupId(String groupId)Sets the group id for this POM.MavenPomsetModel(Object model)Sets the underlying native MavenModelobject.MavenPomsetPackaging(String packaging)Sets the packaging for this POM.MavenPomsetVersion(String version)Sets the version for this POM.MavenPomwhenConfigured(Closure closure)Adds a closure to be called when the POM has been configured.MavenPomwhenConfigured(Action<MavenPom> action)Adds an action to be called when the POM has been configured.MavenPomwithXml(Closure closure)Adds a closure to be called when the POM XML has been created.MavenPomwithXml(Action<XmlProvider> action)Adds an action to be called when the POM XML has been created.MavenPomwriteTo(Writer writer)Writes thegetEffectivePom()XML to a writer while applying thewithXml(org.gradle.api.Action)actions.MavenPomwriteTo(Object path)Writes thegetEffectivePom()XML to a file while applying thewithXml(org.gradle.api.Action)actions.
-
-
-
Field Detail
-
POM_FILE_ENCODING
static final String POM_FILE_ENCODING
- See Also:
- Constant Field Values
-
-
Method Detail
-
getScopeMappings
Conf2ScopeMappingContainer getScopeMappings()
Returns the scope mappings used for generating this POM.
-
project
MavenPom project(Closure pom)
Provides a builder for the Maven POM for adding or modifying properties of the MavengetModel(). The syntax is exactly the same as used by polyglot Maven. For example:pom.project { inceptionYear '2008' licenses { license { name 'The Apache Software License, Version 2.0' url 'http://www.apache.org/licenses/LICENSE-2.0.txt' distribution 'repo' } } }- Returns:
- this
-
project
MavenPom project(Action<? super GroovyObject> pom)
Provides a builder for the Maven POM for adding or modifying properties of the MavengetModel(). The syntax is exactly the same as used by polyglot Maven. For example:pom.project { inceptionYear '2008' licenses { license { name 'The Apache Software License, Version 2.0' url 'http://www.apache.org/licenses/LICENSE-2.0.txt' distribution 'repo' } } }- Returns:
- this
- Since:
- 4.2
-
getGroupId
String getGroupId()
Returns the group id for this POM.- See Also:
Model.setGroupId(String)
-
setGroupId
MavenPom setGroupId(String groupId)
Sets the group id for this POM.- Returns:
- this
- See Also:
Model.getGroupId()
-
getArtifactId
String getArtifactId()
Returns the artifact id for this POM.- See Also:
Model.getArtifactId()
-
setArtifactId
MavenPom setArtifactId(String artifactId)
Sets the artifact id for this POM.- Returns:
- this
- See Also:
Model.setArtifactId(String)
-
getVersion
String getVersion()
Returns the version for this POM.- See Also:
Model.getVersion()
-
setVersion
MavenPom setVersion(String version)
Sets the version for this POM.- Returns:
- this
- See Also:
Model.setVersion(String)
-
getPackaging
String getPackaging()
Returns the packaging for this POM.- See Also:
Model.getPackaging()
-
setPackaging
MavenPom setPackaging(String packaging)
Sets the packaging for this POM.- Returns:
- this
- See Also:
Model.setPackaging(String)
-
setDependencies
MavenPom setDependencies(List<?> dependencies)
Sets the dependencies for this POM.- Returns:
- this
- See Also:
ModelBase.setDependencies(java.util.List)
-
getDependencies
List<?> getDependencies()
Returns the dependencies for this POM.- See Also:
ModelBase.getDependencies()
-
getModel
Object getModel()
Returns the underlying native MavenModelobject. The MavenPom object delegates all the configuration information to this object. There Gradle MavenPom objects provides delegation methods just for setting the groupId, artifactId, version and packaging. For all other elements, either use the model object orproject(groovy.lang.Closure).- Returns:
- the underlying native Maven object
-
setModel
MavenPom setModel(Object model)
Sets the underlying native MavenModelobject.- Returns:
- this
- See Also:
getModel()
-
writeTo
MavenPom writeTo(Writer writer)
Writes thegetEffectivePom()XML to a writer while applying thewithXml(org.gradle.api.Action)actions. Closes the supplied Writer when finished.- Parameters:
writer- The writer to write the POM to.- Returns:
- this
-
writeTo
MavenPom writeTo(Object path)
Writes thegetEffectivePom()XML to a file while applying thewithXml(org.gradle.api.Action)actions. The path is resolved as defined byProject.files(Object...)The file will be encoded as UTF-8.- Parameters:
path- The path of the file to write the POM into.- Returns:
- this
-
whenConfigured
MavenPom whenConfigured(Closure closure)
Adds a closure to be called when the POM has been configured. The POM is passed to the closure as a parameter.
- Parameters:
closure- The closure to execute when the POM has been configured.- Returns:
- this
-
whenConfigured
MavenPom whenConfigured(Action<MavenPom> action)
Adds an action to be called when the POM has been configured. The POM is passed to the action as a parameter.
- Parameters:
action- The action to execute when the POM has been configured.- Returns:
- this
-
withXml
MavenPom withXml(Closure closure)
Adds a closure to be called when the POM XML has been created. The XML is passed to the closure as a parameter in form of a
XmlProvider. The action can modify the XML.- Parameters:
closure- The closure to execute when the POM XML has been created.- Returns:
- this
-
withXml
MavenPom withXml(Action<XmlProvider> action)
Adds an action to be called when the POM XML has been created. The XML is passed to the action as a parameter in form of a
XmlProvider. The action can modify the XML.- Parameters:
action- The action to execute when the POM XML has been created.- Returns:
- this
-
getConfigurations
ConfigurationContainer getConfigurations()
Returns the configuration container used for mapping configurations to Maven scopes.
-
setConfigurations
MavenPom setConfigurations(ConfigurationContainer configurations)
Sets the configuration container used for mapping configurations to Maven scopes.- Returns:
- this
-
getEffectivePom
MavenPom getEffectivePom()
Returns a POM with the generated dependencies and thewhenConfigured(org.gradle.api.Action)actions applied.- Returns:
- the effective POM
-
-