|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | METHOD | DETAIL: FIELD | METHOD |
interface PomFilterContainer
Field Summary | |
---|---|
java.lang.String |
DEFAULT_ARTIFACT_POM_NAME
|
Method Summary | |
---|---|
MavenPom
|
addFilter(java.lang.String name, PublishFilter publishFilter)
If you want to deploy more than one artifact you need to define filters to select each of those artifacts. |
PublishFilter
|
filter(java.lang.String name)
Returns a filter added with { |
java.lang.Iterable
|
getActivePomFilters()
|
PublishFilter
|
getFilter()
Returns the default filter being used. . |
MavenPom
|
getPom()
Returns the pom property of the custom filter. |
MavenPom
|
pom(java.lang.String name)
Returns the pom associated with a filter added with { |
void
|
setFilter(PublishFilter defaultFilter)
Sets the default filter to be used. |
void
|
setPom(MavenPom defaultPom)
Sets the default pom to be used. |
Field Detail |
---|
java.lang.String DEFAULT_ARTIFACT_POM_NAME
Method Detail |
---|
public MavenPom addFilter(java.lang.String name, PublishFilter publishFilter)
public PublishFilter filter(java.lang.String name)
public java.lang.Iterable getActivePomFilters()
public PublishFilter getFilter()
public MavenPom getPom()
public MavenPom pom(java.lang.String name)
public void setFilter(PublishFilter defaultFilter)
Sets the default filter to be used. This filter is active if no custom filters have been added (see #addFilter(String, org.gradle.api.artifacts.maven.PublishFilter)). If at least one custom filter has been added the default filter is not used any longer.
The default for this property is PublishFilter#ALWAYS_ACCEPT. If there is only one artifact you are fine with this filter. If there is more than one artifact, deployment will lead to an exception, if you don't specify a filter that selects the artifact to deploy. If you want to deploy more than one artiact you have to use the (see #addFilter(String, org.gradle.api.artifacts.maven.PublishFilter) method.
public void setPom(MavenPom defaultPom)
Sets the default pom to be used. This pom is active if no custom filters have been added (see #addFilter(String, org.gradle.api.artifacts.maven.PublishFilter)). If at least one custom filter has been added the default pom is not used any longer.
Usually you don't need to set this property as the default value provides you a pom object you might use for configuration. By default the properties of such a pom object are all null. If they are null, Gradle will use default values for generating the Maven pom. Those default values are derived from the deployable artifact and from the project type (e.g. java, war, ...). If you explicitly set a pom property, Gradle will use this instead.
Groovy Documentation