Uses of Class
org.apache.maven.api.plugin.descriptor.PluginDescriptor
Packages that use PluginDescriptor
Package
Description
Maven Core API
Provides classes for Maven plugin descriptors that define plugin metadata, configuration,
and execution parameters.
Provides XML-specific services for reading and writing Maven's configuration files
and descriptors.
-
Uses of PluginDescriptor in org.apache.maven.api
Methods in org.apache.maven.api that return PluginDescriptor -
Uses of PluginDescriptor in org.apache.maven.api.plugin.descriptor
Methods in org.apache.maven.api.plugin.descriptor that return PluginDescriptorModifier and TypeMethodDescriptionPluginDescriptor.Builder.build()
static PluginDescriptor
PluginDescriptor.newInstance()
Creates a newPluginDescriptor
instance.static PluginDescriptor
PluginDescriptor.newInstance
(boolean withDefaults) Creates a newPluginDescriptor
instance using default values or not.PluginDescriptor.withArtifactId
(String artifactId) Creates a newPluginDescriptor
instance using the specified artifactId.PluginDescriptor.withDescription
(String description) Creates a newPluginDescriptor
instance using the specified description.PluginDescriptor.withGoalPrefix
(String goalPrefix) Creates a newPluginDescriptor
instance using the specified goalPrefix.PluginDescriptor.withGroupId
(String groupId) Creates a newPluginDescriptor
instance using the specified groupId.PluginDescriptor.withInheritedByDefault
(boolean inheritedByDefault) Creates a newPluginDescriptor
instance using the specified inheritedByDefault.PluginDescriptor.withIsolatedRealm
(boolean isolatedRealm) Creates a newPluginDescriptor
instance using the specified isolatedRealm.PluginDescriptor.withMojos
(Collection<MojoDescriptor> mojos) Creates a newPluginDescriptor
instance using the specified mojos.Creates a newPluginDescriptor
instance using the specified name.PluginDescriptor.withRequiredJavaVersion
(String requiredJavaVersion) Creates a newPluginDescriptor
instance using the specified requiredJavaVersion.PluginDescriptor.withRequiredMavenVersion
(String requiredMavenVersion) Creates a newPluginDescriptor
instance using the specified requiredMavenVersion.PluginDescriptor.withVersion
(String version) Creates a newPluginDescriptor
instance using the specified version.Methods in org.apache.maven.api.plugin.descriptor with parameters of type PluginDescriptorModifier and TypeMethodDescriptionstatic PluginDescriptor.Builder
PluginDescriptor.newBuilder
(PluginDescriptor from) Creates a newPluginDescriptor
builder instance using the specified object as a basis.static PluginDescriptor.Builder
PluginDescriptor.newBuilder
(PluginDescriptor from, boolean forceCopy) Creates a newPluginDescriptor
builder instance using the specified object as a basis.Constructors in org.apache.maven.api.plugin.descriptor with parameters of type PluginDescriptor -
Uses of PluginDescriptor in org.apache.maven.api.services.xml
Subinterfaces with type arguments of type PluginDescriptor in org.apache.maven.api.services.xmlModifier and TypeInterfaceDescriptioninterface
Reads and writes aPluginDescriptor
object to/from XML.