Package | Description |
---|---|
org.apache.maven.api | |
org.apache.maven.api.model |
Maven POM (Project Object Model) classes, generated from
maven.mdo model. |
org.apache.maven.api.services | |
org.apache.maven.api.services.xml | |
org.apache.maven.api.settings | |
org.apache.maven.api.toolchain | |
org.apache.maven.api.xml | |
org.apache.maven.internal.impl | |
org.apache.maven.model | |
org.apache.maven.plugin.lifecycle | |
org.apache.maven.settings | |
org.apache.maven.toolchain.model |
Modifier and Type | Method and Description |
---|---|
String |
Version.asString()
Returns a string representation of this version.
|
String |
VersionRange.asString()
Returns a string representation of this version range
|
Node |
Session.collectDependencies(Artifact artifact)
Shortcut for
getService(DependencyCollector.class).collect(...) |
Node |
Session.collectDependencies(DependencyCoordinate dependency)
Shortcut for
getService(DependencyResolver.class).resolve(...) |
Node |
Session.collectDependencies(Project project)
Shortcut for
getService(DependencyCollector.class).collect(...) |
DependencyCoordinate |
Session.createDependencyCoordinate(ArtifactCoordinate coordinate)
Shortcut for
getService(DependencyFactory.class).create(...) |
RemoteRepository |
Session.createRemoteRepository(Repository repository)
Shortcut for
getService(RepositoryFactory.class).createRemote(...) |
RemoteRepository |
Session.createRemoteRepository(String id,
String url)
Shortcut for
getService(RepositoryFactory.class).createRemote(...) |
Artifact |
Project.getArtifact() |
String |
ArtifactCoordinate.getArtifactId()
The artifactId of the artifact.
|
String |
Project.getArtifactId() |
String |
Artifact.getArtifactId()
The artifactId of the artifact.
|
Optional<Path> |
Session.getArtifactPath(Artifact artifact)
Shortcut for
getService(ArtifactManager.class).getPath(...) |
default Optional<Path> |
Project.getBasedir() |
default Build |
Project.getBuild() |
List<Node> |
Node.getChildren()
Gets the child nodes of this node.
|
String |
ArtifactCoordinate.getClassifier()
The classifier of the artifact.
|
String |
Artifact.getClassifier()
The classifier of the artifact.
|
Optional<Dom> |
MojoExecution.getConfiguration() |
SessionData |
Session.getData() |
List<DependencyCoordinate> |
Project.getDependencies() |
Collection<Exclusion> |
DependencyCoordinate.getExclusions() |
String |
MojoExecution.getExecutionId() |
Path |
Session.getExecutionRootDirectory() |
String |
ArtifactCoordinate.getExtension()
The extension of the artifact.
|
String |
Artifact.getExtension()
The file extension of the artifact.
|
String |
MojoExecution.getGoal() |
String |
ArtifactCoordinate.getGroupId()
The groupId of the artifact.
|
String |
Project.getGroupId() |
String |
Artifact.getGroupId()
The groupId of the artifact.
|
String |
Repository.getId()
Gets the identifier of this repository.
|
default String |
Project.getId() |
Collection<Listener> |
Session.getListeners()
Returns the list of registered listeners.
|
LocalRepository |
Session.getLocalRepository() |
List<DependencyCoordinate> |
Project.getManagedDependencies() |
String |
Session.getMavenVersion()
Returns the current maven version
|
Model |
Project.getModel() |
Optional<MojoExecution> |
Event.getMojoExecution()
Gets the current mojo execution (if any).
|
Path |
Session.getMultiModuleProjectDirectory() |
String |
Project.getPackaging() |
Optional<Project> |
Project.getParent() |
Path |
LocalRepository.getPath() |
Plugin |
MojoExecution.getPlugin() |
Map<String,Object> |
Session.getPluginContext(Project project)
Returns the plugin context for mojo being executed and the specified
Project , never returns null as if context not present, creates it. |
Optional<Path> |
Project.getPomPath()
Returns the path to the pom file for this project.
|
Optional<Project> |
Event.getProject()
Gets the current project (if any).
|
List<Project> |
Session.getProjects() |
String |
RemoteRepository.getProtocol() |
List<RemoteRepository> |
Project.getRemotePluginRepositories() |
List<RemoteRepository> |
Project.getRemoteProjectRepositories() |
List<RemoteRepository> |
Session.getRemoteRepositories() |
List<RemoteRepository> |
Node.getRemoteRepositories() |
Optional<RemoteRepository> |
Node.getRepository()
The repository where this artifact has been downloaded from.
|
Scope |
DependencyCoordinate.getScope() |
<T extends Service> |
Session.getService(Class<T> clazz)
Retrieves the service for the interface
|
Session |
Event.getSession()
Gets the session from which this event originates.
|
Settings |
Session.getSettings() |
Instant |
Session.getStartTime() |
Map<String,String> |
Session.getSystemProperties() |
String |
Repository.getType()
Gets the type of the repository, for example "default".
|
Type |
DependencyCoordinate.getType()
The type of the artifact.
|
Type |
Dependency.getType()
The artifact type.
|
EventType |
Event.getType()
Gets the type of the event.
|
String |
RemoteRepository.getUrl() |
Map<String,String> |
Session.getUserProperties() |
VersionRange |
ArtifactCoordinate.getVersion()
The version of the artifact.
|
String |
Project.getVersion() |
Version |
Artifact.getVersion()
The version of the artifact.
|
Version |
Session.parseVersion(String version)
Shortcut for
getService(VersionParser.class).parseVersion(...) |
VersionRange |
Session.parseVersionRange(String versionRange)
Shortcut for
getService(VersionParser.class).parseVersionRange(...) |
default Stream<Node> |
Node.stream()
Obtain a Stream containing this node and all its descendant.
|
DependencyCoordinate |
Dependency.toCoordinate()
Creates a
DependencyCoordinate based on this Dependency . |
ArtifactCoordinate |
Artifact.toCoordinate()
Shortcut for
session.createArtifactCoordinate(artifact) |
Session |
Session.withLocalRepository(LocalRepository localRepository)
Creates a derived session using the given local repository.
|
Session |
Session.withRemoteRepositories(List<RemoteRepository> repositories)
Creates a derived session using the given remote repositories.
|
Modifier and Type | Method and Description |
---|---|
boolean |
Node.accept(NodeVisitor visitor)
Traverses this node and potentially its children using the specified visitor.
|
Node |
Session.collectDependencies(Artifact artifact)
Shortcut for
getService(DependencyCollector.class).collect(...) |
Node |
Session.collectDependencies(DependencyCoordinate dependency)
Shortcut for
getService(DependencyResolver.class).resolve(...) |
Node |
Session.collectDependencies(Project project)
Shortcut for
getService(DependencyCollector.class).collect(...) |
Object |
SessionData.computeIfAbsent(Object key,
Supplier<Object> supplier)
Retrieve of compute the data associated with the specified key.
|
Object |
SessionData.computeIfAbsent(Object key,
Supplier<Object> supplier)
Retrieve of compute the data associated with the specified key.
|
boolean |
VersionRange.contains(Version version)
Determines whether the specified version is contained within this range.
|
DependencyCoordinate |
Session.createDependencyCoordinate(ArtifactCoordinate coordinate)
Shortcut for
getService(DependencyFactory.class).create(...) |
RemoteRepository |
Session.createRemoteRepository(Repository repository)
Shortcut for
getService(RepositoryFactory.class).createRemote(...) |
RemoteRepository |
Session.createRemoteRepository(String id,
String url)
Shortcut for
getService(RepositoryFactory.class).createRemote(...) |
RemoteRepository |
Session.createRemoteRepository(String id,
String url)
Shortcut for
getService(RepositoryFactory.class).createRemote(...) |
boolean |
NodeVisitor.enter(Node node)
Starts the visit to the specified dependency node.
|
Object |
SessionData.get(Object key)
Gets the session data associated with the specified key.
|
Optional<Path> |
Session.getArtifactPath(Artifact artifact)
Shortcut for
getService(ArtifactManager.class).getPath(...) |
Path |
Session.getPathForLocalArtifact(Artifact artifact) |
Map<String,Object> |
Session.getPluginContext(Project project)
Returns the plugin context for mojo being executed and the specified
Project , never returns null as if context not present, creates it. |
<T extends Service> |
Session.getService(Class<T> clazz)
Retrieves the service for the interface
|
boolean |
Session.isVersionSnapshot(String version)
Shortcut for
getService(ArtifactManager.class).isSnapshot(...) |
boolean |
NodeVisitor.leave(Node node)
Ends the visit to the specified dependency node.
|
void |
Listener.onEvent(Event event) |
Version |
Session.parseVersion(String version)
Shortcut for
getService(VersionParser.class).parseVersion(...) |
VersionRange |
Session.parseVersionRange(String versionRange)
Shortcut for
getService(VersionParser.class).parseVersionRange(...) |
void |
Session.registerListener(Listener listener)
Register the given listener which will receive all events.
|
void |
SessionData.set(Object key,
Object value)
Associates the specified session data with the given key.
|
boolean |
SessionData.set(Object key,
Object oldValue,
Object newValue)
Associates the specified session data with the given key if the key is currently mapped to the given value.
|
void |
Session.setArtifactPath(Artifact artifact,
Path path)
Shortcut for
getService(ArtifactManager.class).setPath(...) |
void |
Session.setArtifactPath(Artifact artifact,
Path path)
Shortcut for
getService(ArtifactManager.class).setPath(...) |
void |
Session.unregisterListener(Listener listener)
Unregisters a previously registered listener.
|
Session |
Session.withLocalRepository(LocalRepository localRepository)
Creates a derived session using the given local repository.
|
Session |
Session.withRemoteRepositories(List<RemoteRepository> repositories)
Creates a derived session using the given remote repositories.
|
Modifier and Type | Method and Description |
---|---|
Profile.Builder |
Profile.Builder.activation(Activation activation) |
Activation.Builder |
Activation.Builder.activeByDefault(boolean activeByDefault) |
Notifier.Builder |
Notifier.Builder.address(String address) |
ActivationOS.Builder |
ActivationOS.Builder.arch(String arch) |
MailingList.Builder |
MailingList.Builder.archive(String archive) |
Model.Builder |
Model.Builder.artifactId(String artifactId) |
Parent.Builder |
Parent.Builder.artifactId(String artifactId) |
Relocation.Builder |
Relocation.Builder.artifactId(String artifactId) |
ReportPlugin.Builder |
ReportPlugin.Builder.artifactId(String artifactId) |
Exclusion.Builder |
Exclusion.Builder.artifactId(String artifactId) |
Extension.Builder |
Extension.Builder.artifactId(String artifactId) |
Dependency.Builder |
Dependency.Builder.artifactId(String artifactId) |
Plugin.Builder |
Plugin.Builder.artifactId(String artifactId) |
Model |
Model.Builder.build() |
PluginManagement |
PluginManagement.Builder.build() |
Reporting |
Reporting.Builder.build() |
ActivationFile |
ActivationFile.Builder.build() |
Parent |
Parent.Builder.build() |
Activation |
Activation.Builder.build() |
ReportSet |
ReportSet.Builder.build() |
Repository |
Repository.Builder.build() |
ActivationOS |
ActivationOS.Builder.build() |
ModelBase |
ModelBase.Builder.build() |
Build |
Build.Builder.build() |
Notifier |
Notifier.Builder.build() |
Relocation |
Relocation.Builder.build() |
License |
License.Builder.build() |
ReportPlugin |
ReportPlugin.Builder.build() |
PluginConfiguration |
PluginConfiguration.Builder.build() |
PatternSet |
PatternSet.Builder.build() |
Exclusion |
Exclusion.Builder.build() |
Extension |
Extension.Builder.build() |
Developer |
Developer.Builder.build() |
PluginContainer |
PluginContainer.Builder.build() |
RepositoryPolicy |
RepositoryPolicy.Builder.build() |
Resource |
Resource.Builder.build() |
MailingList |
MailingList.Builder.build() |
Profile |
Profile.Builder.build() |
BuildBase |
BuildBase.Builder.build() |
Dependency |
Dependency.Builder.build() |
Prerequisites |
Prerequisites.Builder.build() |
Contributor |
Contributor.Builder.build() |
ConfigurationContainer |
ConfigurationContainer.Builder.build() |
DependencyManagement |
DependencyManagement.Builder.build() |
FileSet |
FileSet.Builder.build() |
DeploymentRepository |
DeploymentRepository.Builder.build() |
CiManagement |
CiManagement.Builder.build() |
DistributionManagement |
DistributionManagement.Builder.build() |
Site |
Site.Builder.build() |
PluginExecution |
PluginExecution.Builder.build() |
Organization |
Organization.Builder.build() |
ActivationProperty |
ActivationProperty.Builder.build() |
RepositoryBase |
RepositoryBase.Builder.build() |
IssueManagement |
IssueManagement.Builder.build() |
Scm |
Scm.Builder.build() |
Plugin |
Plugin.Builder.build() |
Model.Builder |
Model.Builder.build(Build build) |
Profile.Builder |
Profile.Builder.build(BuildBase build) |
RepositoryPolicy.Builder |
RepositoryPolicy.Builder.checksumPolicy(String checksumPolicy) |
Model.Builder |
Model.Builder.childProjectUrlInheritAppendPath(String childProjectUrlInheritAppendPath) |
Scm.Builder |
Scm.Builder.childScmConnectionInheritAppendPath(String childScmConnectionInheritAppendPath) |
Scm.Builder |
Scm.Builder.childScmDeveloperConnectionInheritAppendPath(String childScmDeveloperConnectionInheritAppendPath) |
Scm.Builder |
Scm.Builder.childScmUrlInheritAppendPath(String childScmUrlInheritAppendPath) |
Site.Builder |
Site.Builder.childSiteUrlInheritAppendPath(String childSiteUrlInheritAppendPath) |
Model.Builder |
Model.Builder.ciManagement(CiManagement ciManagement) |
Dependency.Builder |
Dependency.Builder.classifier(String classifier) |
License.Builder |
License.Builder.comments(String comments) |
ReportSet.Builder |
ReportSet.Builder.configuration(Dom configuration) |
ReportPlugin.Builder |
ReportPlugin.Builder.configuration(Dom configuration) |
ConfigurationContainer.Builder |
ConfigurationContainer.Builder.configuration(Dom configuration) |
PluginExecution.Builder |
PluginExecution.Builder.configuration(Dom configuration) |
Plugin.Builder |
Plugin.Builder.configuration(Dom configuration) |
Notifier.Builder |
Notifier.Builder.configuration(Map<String,String> configuration) |
Scm.Builder |
Scm.Builder.connection(String connection) |
Model.Builder |
Model.Builder.contributors(Collection<Contributor> contributors) |
Build.Builder |
Build.Builder.defaultGoal(String defaultGoal) |
BuildBase.Builder |
BuildBase.Builder.defaultGoal(String defaultGoal) |
Model.Builder |
Model.Builder.dependencies(Collection<Dependency> dependencies) |
ModelBase.Builder |
ModelBase.Builder.dependencies(Collection<Dependency> dependencies) |
Profile.Builder |
Profile.Builder.dependencies(Collection<Dependency> dependencies) |
DependencyManagement.Builder |
DependencyManagement.Builder.dependencies(Collection<Dependency> dependencies) |
Plugin.Builder |
Plugin.Builder.dependencies(Collection<Dependency> dependencies) |
Model.Builder |
Model.Builder.dependencyManagement(DependencyManagement dependencyManagement) |
ModelBase.Builder |
ModelBase.Builder.dependencyManagement(DependencyManagement dependencyManagement) |
Profile.Builder |
Profile.Builder.dependencyManagement(DependencyManagement dependencyManagement) |
Model.Builder |
Model.Builder.description(String description) |
Scm.Builder |
Scm.Builder.developerConnection(String developerConnection) |
Model.Builder |
Model.Builder.developers(Collection<Developer> developers) |
Build.Builder |
Build.Builder.directory(String directory) |
Resource.Builder |
Resource.Builder.directory(String directory) |
BuildBase.Builder |
BuildBase.Builder.directory(String directory) |
FileSet.Builder |
FileSet.Builder.directory(String directory) |
License.Builder |
License.Builder.distribution(String distribution) |
Model.Builder |
Model.Builder.distributionManagement(DistributionManagement distributionManagement) |
ModelBase.Builder |
ModelBase.Builder.distributionManagement(DistributionManagement distributionManagement) |
Profile.Builder |
Profile.Builder.distributionManagement(DistributionManagement distributionManagement) |
DistributionManagement.Builder |
DistributionManagement.Builder.downloadUrl(String downloadUrl) |
Developer.Builder |
Developer.Builder.email(String email) |
Contributor.Builder |
Contributor.Builder.email(String email) |
RepositoryPolicy.Builder |
RepositoryPolicy.Builder.enabled(String enabled) |
Reporting.Builder |
Reporting.Builder.excludeDefaults(String excludeDefaults) |
PatternSet.Builder |
PatternSet.Builder.excludes(Collection<String> excludes) |
Resource.Builder |
Resource.Builder.excludes(Collection<String> excludes) |
FileSet.Builder |
FileSet.Builder.excludes(Collection<String> excludes) |
Dependency.Builder |
Dependency.Builder.exclusions(Collection<Exclusion> exclusions) |
Plugin.Builder |
Plugin.Builder.executions(Collection<PluginExecution> executions) |
ActivationFile.Builder |
ActivationFile.Builder.exists(String exists) |
Build.Builder |
Build.Builder.extensions(Collection<Extension> extensions) |
Plugin.Builder |
Plugin.Builder.extensions(String extensions) |
ActivationOS.Builder |
ActivationOS.Builder.family(String family) |
Activation.Builder |
Activation.Builder.file(ActivationFile file) |
Resource.Builder |
Resource.Builder.filtering(String filtering) |
Build.Builder |
Build.Builder.filters(Collection<String> filters) |
BuildBase.Builder |
BuildBase.Builder.filters(Collection<String> filters) |
Build.Builder |
Build.Builder.finalName(String finalName) |
BuildBase.Builder |
BuildBase.Builder.finalName(String finalName) |
Map<String,String> |
Notifier.getConfiguration()
Extended configuration specific to this notifier goes here.
|
List<Contributor> |
Model.getContributors()
Describes the contributors to a project that are not yet committers.
|
List<Dependency> |
ModelBase.getDependencies()
This element describes all of the dependencies associated with a
project.
|
List<Dependency> |
DependencyManagement.getDependencies()
The dependencies specified here are not used until they are referenced in a
POM within the group.
|
List<Dependency> |
Plugin.getDependencies()
Additional dependencies that this project needs to introduce to the plugin's
classloader.
|
List<Developer> |
Model.getDevelopers()
Describes the committers of a project.
|
List<String> |
PatternSet.getExcludes()
A list of patterns to exclude, e.g.
|
List<Exclusion> |
Dependency.getExclusions()
Lists a set of artifacts that should be excluded from this dependency's
artifact list when it comes to calculating transitive dependencies.
|
List<PluginExecution> |
Plugin.getExecutions()
Multiple specifications of a set of goals to execute during the build
lifecycle, each having (possibly) a different configuration.
|
List<Extension> |
Build.getExtensions()
A set of build extensions to use from this project.
|
List<String> |
BuildBase.getFilters()
The list of filter properties files that are used when filtering is enabled.
|
List<String> |
PluginExecution.getGoals()
The goals to execute with the given configuration.
|
List<String> |
PatternSet.getIncludes()
A list of patterns to include, e.g.
|
List<License> |
Model.getLicenses()
This element describes all of the licenses for this project.
|
List<MailingList> |
Model.getMailingLists()
Contains information about a project's mailing lists.
|
List<String> |
ModelBase.getModules()
The modules (sometimes called subprojects) to build as a part of this
project.
|
List<Notifier> |
CiManagement.getNotifiers()
Configuration for notifying developers/users when a build is unsuccessful,
including user information and notification mode.
|
List<String> |
MailingList.getOtherArchives()
The link to alternate URLs where you can browse the list archive.
|
List<Repository> |
ModelBase.getPluginRepositories()
The lists of the remote repositories for discovering plugins for builds and
reports.
|
List<ReportPlugin> |
Reporting.getPlugins()
The reporting plugins to use and their configuration.
|
List<Plugin> |
PluginContainer.getPlugins()
The list of plugins to use.
|
List<Profile> |
Model.getProfiles()
A listing of project-local build profiles which will modify the build process
when activated.
|
Map<String,String> |
ModelBase.getProperties()
Properties that can be used throughout the POM as a substitution, and
are used as filters in resources if enabled.
|
Map<String,String> |
Contributor.getProperties()
Properties about the contributor, such as an instant messenger handle.
|
List<String> |
ReportSet.getReports()
The list of reports from this plugin which should be generated from this set.
|
List<ReportSet> |
ReportPlugin.getReportSets()
Multiple specifications of a set of reports, each having (possibly) different
configuration.
|
List<Repository> |
ModelBase.getRepositories()
The lists of the remote repositories for discovering dependencies and
extensions.
|
List<Resource> |
BuildBase.getResources()
This element describes all of the classpath resources such as properties
files associated with a project.
|
List<String> |
Contributor.getRoles()
The roles the contributor plays in the project.
|
List<Resource> |
BuildBase.getTestResources()
This element describes all of the classpath resources such as properties
files associated with a project's unit tests.
|
PluginExecution.Builder |
PluginExecution.Builder.goals(Collection<String> goals) |
Model.Builder |
Model.Builder.groupId(String groupId) |
Parent.Builder |
Parent.Builder.groupId(String groupId) |
Relocation.Builder |
Relocation.Builder.groupId(String groupId) |
ReportPlugin.Builder |
ReportPlugin.Builder.groupId(String groupId) |
Exclusion.Builder |
Exclusion.Builder.groupId(String groupId) |
Extension.Builder |
Extension.Builder.groupId(String groupId) |
Dependency.Builder |
Dependency.Builder.groupId(String groupId) |
Plugin.Builder |
Plugin.Builder.groupId(String groupId) |
ReportSet.Builder |
ReportSet.Builder.id(String id) |
Repository.Builder |
Repository.Builder.id(String id) |
Developer.Builder |
Developer.Builder.id(String id) |
Profile.Builder |
Profile.Builder.id(String id) |
DeploymentRepository.Builder |
DeploymentRepository.Builder.id(String id) |
Site.Builder |
Site.Builder.id(String id) |
PluginExecution.Builder |
PluginExecution.Builder.id(String id) |
RepositoryBase.Builder |
RepositoryBase.Builder.id(String id) |
Model.Builder |
Model.Builder.inceptionYear(String inceptionYear) |
PatternSet.Builder |
PatternSet.Builder.includes(Collection<String> includes) |
Resource.Builder |
Resource.Builder.includes(Collection<String> includes) |
FileSet.Builder |
FileSet.Builder.includes(Collection<String> includes) |
ReportSet.Builder |
ReportSet.Builder.inherited(String inherited) |
ReportPlugin.Builder |
ReportPlugin.Builder.inherited(String inherited) |
ConfigurationContainer.Builder |
ConfigurationContainer.Builder.inherited(String inherited) |
PluginExecution.Builder |
PluginExecution.Builder.inherited(String inherited) |
Plugin.Builder |
Plugin.Builder.inherited(String inherited) |
Model.Builder |
Model.Builder.issueManagement(IssueManagement issueManagement) |
Activation.Builder |
Activation.Builder.jdk(String jdk) |
Repository.Builder |
Repository.Builder.layout(String layout) |
DeploymentRepository.Builder |
DeploymentRepository.Builder.layout(String layout) |
RepositoryBase.Builder |
RepositoryBase.Builder.layout(String layout) |
Model.Builder |
Model.Builder.licenses(Collection<License> licenses) |
Model.Builder |
Model.Builder.location(Object key,
InputLocation location) |
PluginManagement.Builder |
PluginManagement.Builder.location(Object key,
InputLocation location) |
Reporting.Builder |
Reporting.Builder.location(Object key,
InputLocation location) |
ActivationFile.Builder |
ActivationFile.Builder.location(Object key,
InputLocation location) |
Parent.Builder |
Parent.Builder.location(Object key,
InputLocation location) |
Activation.Builder |
Activation.Builder.location(Object key,
InputLocation location) |
ReportSet.Builder |
ReportSet.Builder.location(Object key,
InputLocation location) |
Repository.Builder |
Repository.Builder.location(Object key,
InputLocation location) |
ActivationOS.Builder |
ActivationOS.Builder.location(Object key,
InputLocation location) |
ModelBase.Builder |
ModelBase.Builder.location(Object key,
InputLocation location) |
Build.Builder |
Build.Builder.location(Object key,
InputLocation location) |
Notifier.Builder |
Notifier.Builder.location(Object key,
InputLocation location) |
Relocation.Builder |
Relocation.Builder.location(Object key,
InputLocation location) |
License.Builder |
License.Builder.location(Object key,
InputLocation location) |
ReportPlugin.Builder |
ReportPlugin.Builder.location(Object key,
InputLocation location) |
PluginConfiguration.Builder |
PluginConfiguration.Builder.location(Object key,
InputLocation location) |
PatternSet.Builder |
PatternSet.Builder.location(Object key,
InputLocation location) |
Exclusion.Builder |
Exclusion.Builder.location(Object key,
InputLocation location) |
Extension.Builder |
Extension.Builder.location(Object key,
InputLocation location) |
Developer.Builder |
Developer.Builder.location(Object key,
InputLocation location) |
PluginContainer.Builder |
PluginContainer.Builder.location(Object key,
InputLocation location) |
RepositoryPolicy.Builder |
RepositoryPolicy.Builder.location(Object key,
InputLocation location) |
Resource.Builder |
Resource.Builder.location(Object key,
InputLocation location) |
MailingList.Builder |
MailingList.Builder.location(Object key,
InputLocation location) |
Profile.Builder |
Profile.Builder.location(Object key,
InputLocation location) |
BuildBase.Builder |
BuildBase.Builder.location(Object key,
InputLocation location) |
Dependency.Builder |
Dependency.Builder.location(Object key,
InputLocation location) |
Prerequisites.Builder |
Prerequisites.Builder.location(Object key,
InputLocation location) |
Contributor.Builder |
Contributor.Builder.location(Object key,
InputLocation location) |
ConfigurationContainer.Builder |
ConfigurationContainer.Builder.location(Object key,
InputLocation location) |
DependencyManagement.Builder |
DependencyManagement.Builder.location(Object key,
InputLocation location) |
FileSet.Builder |
FileSet.Builder.location(Object key,
InputLocation location) |
DeploymentRepository.Builder |
DeploymentRepository.Builder.location(Object key,
InputLocation location) |
CiManagement.Builder |
CiManagement.Builder.location(Object key,
InputLocation location) |
DistributionManagement.Builder |
DistributionManagement.Builder.location(Object key,
InputLocation location) |
Site.Builder |
Site.Builder.location(Object key,
InputLocation location) |
PluginExecution.Builder |
PluginExecution.Builder.location(Object key,
InputLocation location) |
Organization.Builder |
Organization.Builder.location(Object key,
InputLocation location) |
ActivationProperty.Builder |
ActivationProperty.Builder.location(Object key,
InputLocation location) |
RepositoryBase.Builder |
RepositoryBase.Builder.location(Object key,
InputLocation location) |
IssueManagement.Builder |
IssueManagement.Builder.location(Object key,
InputLocation location) |
Scm.Builder |
Scm.Builder.location(Object key,
InputLocation location) |
Plugin.Builder |
Plugin.Builder.location(Object key,
InputLocation location) |
Model.Builder |
Model.Builder.mailingLists(Collection<MailingList> mailingLists) |
Prerequisites.Builder |
Prerequisites.Builder.maven(String maven) |
Resource.Builder |
Resource.Builder.mergeId(String mergeId) |
Relocation.Builder |
Relocation.Builder.message(String message) |
ActivationFile.Builder |
ActivationFile.Builder.missing(String missing) |
Model.Builder |
Model.Builder.modelEncoding(String modelEncoding) |
Model.Builder |
Model.Builder.modelVersion(String modelVersion) |
Model.Builder |
Model.Builder.modules(Collection<String> modules) |
ModelBase.Builder |
ModelBase.Builder.modules(Collection<String> modules) |
Profile.Builder |
Profile.Builder.modules(Collection<String> modules) |
Model.Builder |
Model.Builder.name(String name) |
Repository.Builder |
Repository.Builder.name(String name) |
ActivationOS.Builder |
ActivationOS.Builder.name(String name) |
License.Builder |
License.Builder.name(String name) |
Developer.Builder |
Developer.Builder.name(String name) |
MailingList.Builder |
MailingList.Builder.name(String name) |
Contributor.Builder |
Contributor.Builder.name(String name) |
DeploymentRepository.Builder |
DeploymentRepository.Builder.name(String name) |
Site.Builder |
Site.Builder.name(String name) |
Organization.Builder |
Organization.Builder.name(String name) |
ActivationProperty.Builder |
ActivationProperty.Builder.name(String name) |
RepositoryBase.Builder |
RepositoryBase.Builder.name(String name) |
static Model.Builder |
Model.newBuilder()
Creates a new
Model builder instance. |
static PluginManagement.Builder |
PluginManagement.newBuilder()
Creates a new
PluginManagement builder instance. |
static Reporting.Builder |
Reporting.newBuilder()
Creates a new
Reporting builder instance. |
static ActivationFile.Builder |
ActivationFile.newBuilder()
Creates a new
ActivationFile builder instance. |
static Parent.Builder |
Parent.newBuilder()
Creates a new
Parent builder instance. |
static Activation.Builder |
Activation.newBuilder()
Creates a new
Activation builder instance. |
static ReportSet.Builder |
ReportSet.newBuilder()
Creates a new
ReportSet builder instance. |
static Repository.Builder |
Repository.newBuilder()
Creates a new
Repository builder instance. |
static ActivationOS.Builder |
ActivationOS.newBuilder()
Creates a new
ActivationOS builder instance. |
static ModelBase.Builder |
ModelBase.newBuilder()
Creates a new
ModelBase builder instance. |
static Build.Builder |
Build.newBuilder()
Creates a new
Build builder instance. |
static Notifier.Builder |
Notifier.newBuilder()
Creates a new
Notifier builder instance. |
static Relocation.Builder |
Relocation.newBuilder()
Creates a new
Relocation builder instance. |
static License.Builder |
License.newBuilder()
Creates a new
License builder instance. |
static ReportPlugin.Builder |
ReportPlugin.newBuilder()
Creates a new
ReportPlugin builder instance. |
static PluginConfiguration.Builder |
PluginConfiguration.newBuilder()
Creates a new
PluginConfiguration builder instance. |
static PatternSet.Builder |
PatternSet.newBuilder()
Creates a new
PatternSet builder instance. |
static Exclusion.Builder |
Exclusion.newBuilder()
Creates a new
Exclusion builder instance. |
static Extension.Builder |
Extension.newBuilder()
Creates a new
Extension builder instance. |
static Developer.Builder |
Developer.newBuilder()
Creates a new
Developer builder instance. |
static PluginContainer.Builder |
PluginContainer.newBuilder()
Creates a new
PluginContainer builder instance. |
static RepositoryPolicy.Builder |
RepositoryPolicy.newBuilder()
Creates a new
RepositoryPolicy builder instance. |
static Resource.Builder |
Resource.newBuilder()
Creates a new
Resource builder instance. |
static MailingList.Builder |
MailingList.newBuilder()
Creates a new
MailingList builder instance. |
static Profile.Builder |
Profile.newBuilder()
Creates a new
Profile builder instance. |
static BuildBase.Builder |
BuildBase.newBuilder()
Creates a new
BuildBase builder instance. |
static Dependency.Builder |
Dependency.newBuilder()
Creates a new
Dependency builder instance. |
static Prerequisites.Builder |
Prerequisites.newBuilder()
Creates a new
Prerequisites builder instance. |
static Contributor.Builder |
Contributor.newBuilder()
Creates a new
Contributor builder instance. |
static ConfigurationContainer.Builder |
ConfigurationContainer.newBuilder()
Creates a new
ConfigurationContainer builder instance. |
static DependencyManagement.Builder |
DependencyManagement.newBuilder()
Creates a new
DependencyManagement builder instance. |
static FileSet.Builder |
FileSet.newBuilder()
Creates a new
FileSet builder instance. |
static DeploymentRepository.Builder |
DeploymentRepository.newBuilder()
Creates a new
DeploymentRepository builder instance. |
static CiManagement.Builder |
CiManagement.newBuilder()
Creates a new
CiManagement builder instance. |
static DistributionManagement.Builder |
DistributionManagement.newBuilder()
Creates a new
DistributionManagement builder instance. |
static Site.Builder |
Site.newBuilder()
Creates a new
Site builder instance. |
static PluginExecution.Builder |
PluginExecution.newBuilder()
Creates a new
PluginExecution builder instance. |
static Organization.Builder |
Organization.newBuilder()
Creates a new
Organization builder instance. |
static ActivationProperty.Builder |
ActivationProperty.newBuilder()
Creates a new
ActivationProperty builder instance. |
static RepositoryBase.Builder |
RepositoryBase.newBuilder()
Creates a new
RepositoryBase builder instance. |
static IssueManagement.Builder |
IssueManagement.newBuilder()
Creates a new
IssueManagement builder instance. |
static Scm.Builder |
Scm.newBuilder()
Creates a new
Scm builder instance. |
static Plugin.Builder |
Plugin.newBuilder()
Creates a new
Plugin builder instance. |
static Activation.Builder |
Activation.newBuilder(Activation from)
Creates a new
Activation builder instance using the specified object as a basis. |
static Activation.Builder |
Activation.newBuilder(Activation from,
boolean forceCopy)
Creates a new
Activation builder instance using the specified object as a basis. |
static ActivationFile.Builder |
ActivationFile.newBuilder(ActivationFile from)
Creates a new
ActivationFile builder instance using the specified object as a basis. |
static ActivationFile.Builder |
ActivationFile.newBuilder(ActivationFile from,
boolean forceCopy)
Creates a new
ActivationFile builder instance using the specified object as a basis. |
static ActivationOS.Builder |
ActivationOS.newBuilder(ActivationOS from)
Creates a new
ActivationOS builder instance using the specified object as a basis. |
static ActivationOS.Builder |
ActivationOS.newBuilder(ActivationOS from,
boolean forceCopy)
Creates a new
ActivationOS builder instance using the specified object as a basis. |
static ActivationProperty.Builder |
ActivationProperty.newBuilder(ActivationProperty from)
Creates a new
ActivationProperty builder instance using the specified object as a basis. |
static ActivationProperty.Builder |
ActivationProperty.newBuilder(ActivationProperty from,
boolean forceCopy)
Creates a new
ActivationProperty builder instance using the specified object as a basis. |
static Model.Builder |
Model.newBuilder(boolean withDefaults)
Creates a new
Model builder instance using default values or not. |
static PluginManagement.Builder |
PluginManagement.newBuilder(boolean withDefaults)
Creates a new
PluginManagement builder instance using default values or not. |
static Reporting.Builder |
Reporting.newBuilder(boolean withDefaults)
Creates a new
Reporting builder instance using default values or not. |
static ActivationFile.Builder |
ActivationFile.newBuilder(boolean withDefaults)
Creates a new
ActivationFile builder instance using default values or not. |
static Parent.Builder |
Parent.newBuilder(boolean withDefaults)
Creates a new
Parent builder instance using default values or not. |
static Activation.Builder |
Activation.newBuilder(boolean withDefaults)
Creates a new
Activation builder instance using default values or not. |
static ReportSet.Builder |
ReportSet.newBuilder(boolean withDefaults)
Creates a new
ReportSet builder instance using default values or not. |
static Repository.Builder |
Repository.newBuilder(boolean withDefaults)
Creates a new
Repository builder instance using default values or not. |
static ActivationOS.Builder |
ActivationOS.newBuilder(boolean withDefaults)
Creates a new
ActivationOS builder instance using default values or not. |
static ModelBase.Builder |
ModelBase.newBuilder(boolean withDefaults)
Creates a new
ModelBase builder instance using default values or not. |
static Build.Builder |
Build.newBuilder(boolean withDefaults)
Creates a new
Build builder instance using default values or not. |
static Notifier.Builder |
Notifier.newBuilder(boolean withDefaults)
Creates a new
Notifier builder instance using default values or not. |
static Relocation.Builder |
Relocation.newBuilder(boolean withDefaults)
Creates a new
Relocation builder instance using default values or not. |
static License.Builder |
License.newBuilder(boolean withDefaults)
Creates a new
License builder instance using default values or not. |
static ReportPlugin.Builder |
ReportPlugin.newBuilder(boolean withDefaults)
Creates a new
ReportPlugin builder instance using default values or not. |
static PluginConfiguration.Builder |
PluginConfiguration.newBuilder(boolean withDefaults)
Creates a new
PluginConfiguration builder instance using default values or not. |
static PatternSet.Builder |
PatternSet.newBuilder(boolean withDefaults)
Creates a new
PatternSet builder instance using default values or not. |
static Exclusion.Builder |
Exclusion.newBuilder(boolean withDefaults)
Creates a new
Exclusion builder instance using default values or not. |
static Extension.Builder |
Extension.newBuilder(boolean withDefaults)
Creates a new
Extension builder instance using default values or not. |
static Developer.Builder |
Developer.newBuilder(boolean withDefaults)
Creates a new
Developer builder instance using default values or not. |
static PluginContainer.Builder |
PluginContainer.newBuilder(boolean withDefaults)
Creates a new
PluginContainer builder instance using default values or not. |
static RepositoryPolicy.Builder |
RepositoryPolicy.newBuilder(boolean withDefaults)
Creates a new
RepositoryPolicy builder instance using default values or not. |
static Resource.Builder |
Resource.newBuilder(boolean withDefaults)
Creates a new
Resource builder instance using default values or not. |
static MailingList.Builder |
MailingList.newBuilder(boolean withDefaults)
Creates a new
MailingList builder instance using default values or not. |
static Profile.Builder |
Profile.newBuilder(boolean withDefaults)
Creates a new
Profile builder instance using default values or not. |
static BuildBase.Builder |
BuildBase.newBuilder(boolean withDefaults)
Creates a new
BuildBase builder instance using default values or not. |
static Dependency.Builder |
Dependency.newBuilder(boolean withDefaults)
Creates a new
Dependency builder instance using default values or not. |
static Prerequisites.Builder |
Prerequisites.newBuilder(boolean withDefaults)
Creates a new
Prerequisites builder instance using default values or not. |
static Contributor.Builder |
Contributor.newBuilder(boolean withDefaults)
Creates a new
Contributor builder instance using default values or not. |
static ConfigurationContainer.Builder |
ConfigurationContainer.newBuilder(boolean withDefaults)
Creates a new
ConfigurationContainer builder instance using default values or not. |
static DependencyManagement.Builder |
DependencyManagement.newBuilder(boolean withDefaults)
Creates a new
DependencyManagement builder instance using default values or not. |
static FileSet.Builder |
FileSet.newBuilder(boolean withDefaults)
Creates a new
FileSet builder instance using default values or not. |
static DeploymentRepository.Builder |
DeploymentRepository.newBuilder(boolean withDefaults)
Creates a new
DeploymentRepository builder instance using default values or not. |
static CiManagement.Builder |
CiManagement.newBuilder(boolean withDefaults)
Creates a new
CiManagement builder instance using default values or not. |
static DistributionManagement.Builder |
DistributionManagement.newBuilder(boolean withDefaults)
Creates a new
DistributionManagement builder instance using default values or not. |
static Site.Builder |
Site.newBuilder(boolean withDefaults)
Creates a new
Site builder instance using default values or not. |
static PluginExecution.Builder |
PluginExecution.newBuilder(boolean withDefaults)
Creates a new
PluginExecution builder instance using default values or not. |
static Organization.Builder |
Organization.newBuilder(boolean withDefaults)
Creates a new
Organization builder instance using default values or not. |
static ActivationProperty.Builder |
ActivationProperty.newBuilder(boolean withDefaults)
Creates a new
ActivationProperty builder instance using default values or not. |
static RepositoryBase.Builder |
RepositoryBase.newBuilder(boolean withDefaults)
Creates a new
RepositoryBase builder instance using default values or not. |
static IssueManagement.Builder |
IssueManagement.newBuilder(boolean withDefaults)
Creates a new
IssueManagement builder instance using default values or not. |
static Scm.Builder |
Scm.newBuilder(boolean withDefaults)
Creates a new
Scm builder instance using default values or not. |
static Plugin.Builder |
Plugin.newBuilder(boolean withDefaults)
Creates a new
Plugin builder instance using default values or not. |
static Build.Builder |
Build.newBuilder(Build from)
Creates a new
Build builder instance using the specified object as a basis. |
static BuildBase.Builder |
BuildBase.newBuilder(BuildBase from)
Creates a new
BuildBase builder instance using the specified object as a basis. |
static BuildBase.Builder |
BuildBase.newBuilder(BuildBase from,
boolean forceCopy)
Creates a new
BuildBase builder instance using the specified object as a basis. |
static Build.Builder |
Build.newBuilder(Build from,
boolean forceCopy)
Creates a new
Build builder instance using the specified object as a basis. |
static CiManagement.Builder |
CiManagement.newBuilder(CiManagement from)
Creates a new
CiManagement builder instance using the specified object as a basis. |
static CiManagement.Builder |
CiManagement.newBuilder(CiManagement from,
boolean forceCopy)
Creates a new
CiManagement builder instance using the specified object as a basis. |
static ConfigurationContainer.Builder |
ConfigurationContainer.newBuilder(ConfigurationContainer from)
Creates a new
ConfigurationContainer builder instance using the specified object as a basis. |
static ConfigurationContainer.Builder |
ConfigurationContainer.newBuilder(ConfigurationContainer from,
boolean forceCopy)
Creates a new
ConfigurationContainer builder instance using the specified object as a basis. |
static Contributor.Builder |
Contributor.newBuilder(Contributor from)
Creates a new
Contributor builder instance using the specified object as a basis. |
static Contributor.Builder |
Contributor.newBuilder(Contributor from,
boolean forceCopy)
Creates a new
Contributor builder instance using the specified object as a basis. |
static Dependency.Builder |
Dependency.newBuilder(Dependency from)
Creates a new
Dependency builder instance using the specified object as a basis. |
static Dependency.Builder |
Dependency.newBuilder(Dependency from,
boolean forceCopy)
Creates a new
Dependency builder instance using the specified object as a basis. |
static DependencyManagement.Builder |
DependencyManagement.newBuilder(DependencyManagement from)
Creates a new
DependencyManagement builder instance using the specified object as a basis. |
static DependencyManagement.Builder |
DependencyManagement.newBuilder(DependencyManagement from,
boolean forceCopy)
Creates a new
DependencyManagement builder instance using the specified object as a basis. |
static DeploymentRepository.Builder |
DeploymentRepository.newBuilder(DeploymentRepository from)
Creates a new
DeploymentRepository builder instance using the specified object as a basis. |
static DeploymentRepository.Builder |
DeploymentRepository.newBuilder(DeploymentRepository from,
boolean forceCopy)
Creates a new
DeploymentRepository builder instance using the specified object as a basis. |
static Developer.Builder |
Developer.newBuilder(Developer from)
Creates a new
Developer builder instance using the specified object as a basis. |
static Developer.Builder |
Developer.newBuilder(Developer from,
boolean forceCopy)
Creates a new
Developer builder instance using the specified object as a basis. |
static DistributionManagement.Builder |
DistributionManagement.newBuilder(DistributionManagement from)
Creates a new
DistributionManagement builder instance using the specified object as a basis. |
static DistributionManagement.Builder |
DistributionManagement.newBuilder(DistributionManagement from,
boolean forceCopy)
Creates a new
DistributionManagement builder instance using the specified object as a basis. |
static Exclusion.Builder |
Exclusion.newBuilder(Exclusion from)
Creates a new
Exclusion builder instance using the specified object as a basis. |
static Exclusion.Builder |
Exclusion.newBuilder(Exclusion from,
boolean forceCopy)
Creates a new
Exclusion builder instance using the specified object as a basis. |
static Extension.Builder |
Extension.newBuilder(Extension from)
Creates a new
Extension builder instance using the specified object as a basis. |
static Extension.Builder |
Extension.newBuilder(Extension from,
boolean forceCopy)
Creates a new
Extension builder instance using the specified object as a basis. |
static FileSet.Builder |
FileSet.newBuilder(FileSet from)
Creates a new
FileSet builder instance using the specified object as a basis. |
static FileSet.Builder |
FileSet.newBuilder(FileSet from,
boolean forceCopy)
Creates a new
FileSet builder instance using the specified object as a basis. |
static IssueManagement.Builder |
IssueManagement.newBuilder(IssueManagement from)
Creates a new
IssueManagement builder instance using the specified object as a basis. |
static IssueManagement.Builder |
IssueManagement.newBuilder(IssueManagement from,
boolean forceCopy)
Creates a new
IssueManagement builder instance using the specified object as a basis. |
static License.Builder |
License.newBuilder(License from)
Creates a new
License builder instance using the specified object as a basis. |
static License.Builder |
License.newBuilder(License from,
boolean forceCopy)
Creates a new
License builder instance using the specified object as a basis. |
static MailingList.Builder |
MailingList.newBuilder(MailingList from)
Creates a new
MailingList builder instance using the specified object as a basis. |
static MailingList.Builder |
MailingList.newBuilder(MailingList from,
boolean forceCopy)
Creates a new
MailingList builder instance using the specified object as a basis. |
static Model.Builder |
Model.newBuilder(Model from)
Creates a new
Model builder instance using the specified object as a basis. |
static ModelBase.Builder |
ModelBase.newBuilder(ModelBase from)
Creates a new
ModelBase builder instance using the specified object as a basis. |
static ModelBase.Builder |
ModelBase.newBuilder(ModelBase from,
boolean forceCopy)
Creates a new
ModelBase builder instance using the specified object as a basis. |
static Model.Builder |
Model.newBuilder(Model from,
boolean forceCopy)
Creates a new
Model builder instance using the specified object as a basis. |
static Notifier.Builder |
Notifier.newBuilder(Notifier from)
Creates a new
Notifier builder instance using the specified object as a basis. |
static Notifier.Builder |
Notifier.newBuilder(Notifier from,
boolean forceCopy)
Creates a new
Notifier builder instance using the specified object as a basis. |
static Organization.Builder |
Organization.newBuilder(Organization from)
Creates a new
Organization builder instance using the specified object as a basis. |
static Organization.Builder |
Organization.newBuilder(Organization from,
boolean forceCopy)
Creates a new
Organization builder instance using the specified object as a basis. |
static Parent.Builder |
Parent.newBuilder(Parent from)
Creates a new
Parent builder instance using the specified object as a basis. |
static Parent.Builder |
Parent.newBuilder(Parent from,
boolean forceCopy)
Creates a new
Parent builder instance using the specified object as a basis. |
static PatternSet.Builder |
PatternSet.newBuilder(PatternSet from)
Creates a new
PatternSet builder instance using the specified object as a basis. |
static PatternSet.Builder |
PatternSet.newBuilder(PatternSet from,
boolean forceCopy)
Creates a new
PatternSet builder instance using the specified object as a basis. |
static Plugin.Builder |
Plugin.newBuilder(Plugin from)
Creates a new
Plugin builder instance using the specified object as a basis. |
static Plugin.Builder |
Plugin.newBuilder(Plugin from,
boolean forceCopy)
Creates a new
Plugin builder instance using the specified object as a basis. |
static PluginConfiguration.Builder |
PluginConfiguration.newBuilder(PluginConfiguration from)
Creates a new
PluginConfiguration builder instance using the specified object as a basis. |
static PluginConfiguration.Builder |
PluginConfiguration.newBuilder(PluginConfiguration from,
boolean forceCopy)
Creates a new
PluginConfiguration builder instance using the specified object as a basis. |
static PluginContainer.Builder |
PluginContainer.newBuilder(PluginContainer from)
Creates a new
PluginContainer builder instance using the specified object as a basis. |
static PluginContainer.Builder |
PluginContainer.newBuilder(PluginContainer from,
boolean forceCopy)
Creates a new
PluginContainer builder instance using the specified object as a basis. |
static PluginExecution.Builder |
PluginExecution.newBuilder(PluginExecution from)
Creates a new
PluginExecution builder instance using the specified object as a basis. |
static PluginExecution.Builder |
PluginExecution.newBuilder(PluginExecution from,
boolean forceCopy)
Creates a new
PluginExecution builder instance using the specified object as a basis. |
static PluginManagement.Builder |
PluginManagement.newBuilder(PluginManagement from)
Creates a new
PluginManagement builder instance using the specified object as a basis. |
static PluginManagement.Builder |
PluginManagement.newBuilder(PluginManagement from,
boolean forceCopy)
Creates a new
PluginManagement builder instance using the specified object as a basis. |
static Prerequisites.Builder |
Prerequisites.newBuilder(Prerequisites from)
Creates a new
Prerequisites builder instance using the specified object as a basis. |
static Prerequisites.Builder |
Prerequisites.newBuilder(Prerequisites from,
boolean forceCopy)
Creates a new
Prerequisites builder instance using the specified object as a basis. |
static Profile.Builder |
Profile.newBuilder(Profile from)
Creates a new
Profile builder instance using the specified object as a basis. |
static Profile.Builder |
Profile.newBuilder(Profile from,
boolean forceCopy)
Creates a new
Profile builder instance using the specified object as a basis. |
static Relocation.Builder |
Relocation.newBuilder(Relocation from)
Creates a new
Relocation builder instance using the specified object as a basis. |
static Relocation.Builder |
Relocation.newBuilder(Relocation from,
boolean forceCopy)
Creates a new
Relocation builder instance using the specified object as a basis. |
static Reporting.Builder |
Reporting.newBuilder(Reporting from)
Creates a new
Reporting builder instance using the specified object as a basis. |
static Reporting.Builder |
Reporting.newBuilder(Reporting from,
boolean forceCopy)
Creates a new
Reporting builder instance using the specified object as a basis. |
static ReportPlugin.Builder |
ReportPlugin.newBuilder(ReportPlugin from)
Creates a new
ReportPlugin builder instance using the specified object as a basis. |
static ReportPlugin.Builder |
ReportPlugin.newBuilder(ReportPlugin from,
boolean forceCopy)
Creates a new
ReportPlugin builder instance using the specified object as a basis. |
static ReportSet.Builder |
ReportSet.newBuilder(ReportSet from)
Creates a new
ReportSet builder instance using the specified object as a basis. |
static ReportSet.Builder |
ReportSet.newBuilder(ReportSet from,
boolean forceCopy)
Creates a new
ReportSet builder instance using the specified object as a basis. |
static Repository.Builder |
Repository.newBuilder(Repository from)
Creates a new
Repository builder instance using the specified object as a basis. |
static RepositoryBase.Builder |
RepositoryBase.newBuilder(RepositoryBase from)
Creates a new
RepositoryBase builder instance using the specified object as a basis. |
static RepositoryBase.Builder |
RepositoryBase.newBuilder(RepositoryBase from,
boolean forceCopy)
Creates a new
RepositoryBase builder instance using the specified object as a basis. |
static Repository.Builder |
Repository.newBuilder(Repository from,
boolean forceCopy)
Creates a new
Repository builder instance using the specified object as a basis. |
static RepositoryPolicy.Builder |
RepositoryPolicy.newBuilder(RepositoryPolicy from)
Creates a new
RepositoryPolicy builder instance using the specified object as a basis. |
static RepositoryPolicy.Builder |
RepositoryPolicy.newBuilder(RepositoryPolicy from,
boolean forceCopy)
Creates a new
RepositoryPolicy builder instance using the specified object as a basis. |
static Resource.Builder |
Resource.newBuilder(Resource from)
Creates a new
Resource builder instance using the specified object as a basis. |
static Resource.Builder |
Resource.newBuilder(Resource from,
boolean forceCopy)
Creates a new
Resource builder instance using the specified object as a basis. |
static Scm.Builder |
Scm.newBuilder(Scm from)
Creates a new
Scm builder instance using the specified object as a basis. |
static Scm.Builder |
Scm.newBuilder(Scm from,
boolean forceCopy)
Creates a new
Scm builder instance using the specified object as a basis. |
static Site.Builder |
Site.newBuilder(Site from)
Creates a new
Site builder instance using the specified object as a basis. |
static Site.Builder |
Site.newBuilder(Site from,
boolean forceCopy)
Creates a new
Site builder instance using the specified object as a basis. |
static Model |
Model.newInstance()
Creates a new
Model instance. |
static PluginManagement |
PluginManagement.newInstance()
Creates a new
PluginManagement instance. |
static Reporting |
Reporting.newInstance()
Creates a new
Reporting instance. |
static ActivationFile |
ActivationFile.newInstance()
Creates a new
ActivationFile instance. |
static Parent |
Parent.newInstance()
Creates a new
Parent instance. |
static Activation |
Activation.newInstance()
Creates a new
Activation instance. |
static ReportSet |
ReportSet.newInstance()
Creates a new
ReportSet instance. |
static Repository |
Repository.newInstance()
Creates a new
Repository instance. |
static ActivationOS |
ActivationOS.newInstance()
Creates a new
ActivationOS instance. |
static ModelBase |
ModelBase.newInstance()
Creates a new
ModelBase instance. |
static Build |
Build.newInstance()
Creates a new
Build instance. |
static Notifier |
Notifier.newInstance()
Creates a new
Notifier instance. |
static Relocation |
Relocation.newInstance()
Creates a new
Relocation instance. |
static License |
License.newInstance()
Creates a new
License instance. |
static ReportPlugin |
ReportPlugin.newInstance()
Creates a new
ReportPlugin instance. |
static PluginConfiguration |
PluginConfiguration.newInstance()
Creates a new
PluginConfiguration instance. |
static PatternSet |
PatternSet.newInstance()
Creates a new
PatternSet instance. |
static Exclusion |
Exclusion.newInstance()
Creates a new
Exclusion instance. |
static Extension |
Extension.newInstance()
Creates a new
Extension instance. |
static Developer |
Developer.newInstance()
Creates a new
Developer instance. |
static PluginContainer |
PluginContainer.newInstance()
Creates a new
PluginContainer instance. |
static RepositoryPolicy |
RepositoryPolicy.newInstance()
Creates a new
RepositoryPolicy instance. |
static Resource |
Resource.newInstance()
Creates a new
Resource instance. |
static MailingList |
MailingList.newInstance()
Creates a new
MailingList instance. |
static Profile |
Profile.newInstance()
Creates a new
Profile instance. |
static BuildBase |
BuildBase.newInstance()
Creates a new
BuildBase instance. |
static Dependency |
Dependency.newInstance()
Creates a new
Dependency instance. |
static Prerequisites |
Prerequisites.newInstance()
Creates a new
Prerequisites instance. |
static Contributor |
Contributor.newInstance()
Creates a new
Contributor instance. |
static ConfigurationContainer |
ConfigurationContainer.newInstance()
Creates a new
ConfigurationContainer instance. |
static DependencyManagement |
DependencyManagement.newInstance()
Creates a new
DependencyManagement instance. |
static FileSet |
FileSet.newInstance()
Creates a new
FileSet instance. |
static DeploymentRepository |
DeploymentRepository.newInstance()
Creates a new
DeploymentRepository instance. |
static CiManagement |
CiManagement.newInstance()
Creates a new
CiManagement instance. |
static DistributionManagement |
DistributionManagement.newInstance()
Creates a new
DistributionManagement instance. |
static Site |
Site.newInstance()
Creates a new
Site instance. |
static PluginExecution |
PluginExecution.newInstance()
Creates a new
PluginExecution instance. |
static Organization |
Organization.newInstance()
Creates a new
Organization instance. |
static ActivationProperty |
ActivationProperty.newInstance()
Creates a new
ActivationProperty instance. |
static RepositoryBase |
RepositoryBase.newInstance()
Creates a new
RepositoryBase instance. |
static IssueManagement |
IssueManagement.newInstance()
Creates a new
IssueManagement instance. |
static Scm |
Scm.newInstance()
Creates a new
Scm instance. |
static Plugin |
Plugin.newInstance()
Creates a new
Plugin instance. |
static Model |
Model.newInstance(boolean withDefaults)
Creates a new
Model instance using default values or not. |
static PluginManagement |
PluginManagement.newInstance(boolean withDefaults)
Creates a new
PluginManagement instance using default values or not. |
static Reporting |
Reporting.newInstance(boolean withDefaults)
Creates a new
Reporting instance using default values or not. |
static ActivationFile |
ActivationFile.newInstance(boolean withDefaults)
Creates a new
ActivationFile instance using default values or not. |
static Parent |
Parent.newInstance(boolean withDefaults)
Creates a new
Parent instance using default values or not. |
static Activation |
Activation.newInstance(boolean withDefaults)
Creates a new
Activation instance using default values or not. |
static ReportSet |
ReportSet.newInstance(boolean withDefaults)
Creates a new
ReportSet instance using default values or not. |
static Repository |
Repository.newInstance(boolean withDefaults)
Creates a new
Repository instance using default values or not. |
static ActivationOS |
ActivationOS.newInstance(boolean withDefaults)
Creates a new
ActivationOS instance using default values or not. |
static ModelBase |
ModelBase.newInstance(boolean withDefaults)
Creates a new
ModelBase instance using default values or not. |
static Build |
Build.newInstance(boolean withDefaults)
Creates a new
Build instance using default values or not. |
static Notifier |
Notifier.newInstance(boolean withDefaults)
Creates a new
Notifier instance using default values or not. |
static Relocation |
Relocation.newInstance(boolean withDefaults)
Creates a new
Relocation instance using default values or not. |
static License |
License.newInstance(boolean withDefaults)
Creates a new
License instance using default values or not. |
static ReportPlugin |
ReportPlugin.newInstance(boolean withDefaults)
Creates a new
ReportPlugin instance using default values or not. |
static PluginConfiguration |
PluginConfiguration.newInstance(boolean withDefaults)
Creates a new
PluginConfiguration instance using default values or not. |
static PatternSet |
PatternSet.newInstance(boolean withDefaults)
Creates a new
PatternSet instance using default values or not. |
static Exclusion |
Exclusion.newInstance(boolean withDefaults)
Creates a new
Exclusion instance using default values or not. |
static Extension |
Extension.newInstance(boolean withDefaults)
Creates a new
Extension instance using default values or not. |
static Developer |
Developer.newInstance(boolean withDefaults)
Creates a new
Developer instance using default values or not. |
static PluginContainer |
PluginContainer.newInstance(boolean withDefaults)
Creates a new
PluginContainer instance using default values or not. |
static RepositoryPolicy |
RepositoryPolicy.newInstance(boolean withDefaults)
Creates a new
RepositoryPolicy instance using default values or not. |
static Resource |
Resource.newInstance(boolean withDefaults)
Creates a new
Resource instance using default values or not. |
static MailingList |
MailingList.newInstance(boolean withDefaults)
Creates a new
MailingList instance using default values or not. |
static Profile |
Profile.newInstance(boolean withDefaults)
Creates a new
Profile instance using default values or not. |
static BuildBase |
BuildBase.newInstance(boolean withDefaults)
Creates a new
BuildBase instance using default values or not. |
static Dependency |
Dependency.newInstance(boolean withDefaults)
Creates a new
Dependency instance using default values or not. |
static Prerequisites |
Prerequisites.newInstance(boolean withDefaults)
Creates a new
Prerequisites instance using default values or not. |
static Contributor |
Contributor.newInstance(boolean withDefaults)
Creates a new
Contributor instance using default values or not. |
static ConfigurationContainer |
ConfigurationContainer.newInstance(boolean withDefaults)
Creates a new
ConfigurationContainer instance using default values or not. |
static DependencyManagement |
DependencyManagement.newInstance(boolean withDefaults)
Creates a new
DependencyManagement instance using default values or not. |
static FileSet |
FileSet.newInstance(boolean withDefaults)
Creates a new
FileSet instance using default values or not. |
static DeploymentRepository |
DeploymentRepository.newInstance(boolean withDefaults)
Creates a new
DeploymentRepository instance using default values or not. |
static CiManagement |
CiManagement.newInstance(boolean withDefaults)
Creates a new
CiManagement instance using default values or not. |
static DistributionManagement |
DistributionManagement.newInstance(boolean withDefaults)
Creates a new
DistributionManagement instance using default values or not. |
static Site |
Site.newInstance(boolean withDefaults)
Creates a new
Site instance using default values or not. |
static PluginExecution |
PluginExecution.newInstance(boolean withDefaults)
Creates a new
PluginExecution instance using default values or not. |
static Organization |
Organization.newInstance(boolean withDefaults)
Creates a new
Organization instance using default values or not. |
static ActivationProperty |
ActivationProperty.newInstance(boolean withDefaults)
Creates a new
ActivationProperty instance using default values or not. |
static RepositoryBase |
RepositoryBase.newInstance(boolean withDefaults)
Creates a new
RepositoryBase instance using default values or not. |
static IssueManagement |
IssueManagement.newInstance(boolean withDefaults)
Creates a new
IssueManagement instance using default values or not. |
static Scm |
Scm.newInstance(boolean withDefaults)
Creates a new
Scm instance using default values or not. |
static Plugin |
Plugin.newInstance(boolean withDefaults)
Creates a new
Plugin instance using default values or not. |
CiManagement.Builder |
CiManagement.Builder.notifiers(Collection<Notifier> notifiers) |
Dependency.Builder |
Dependency.Builder.optional(String optional) |
Model.Builder |
Model.Builder.organization(Organization organization) |
Developer.Builder |
Developer.Builder.organization(String organization) |
Contributor.Builder |
Contributor.Builder.organization(String organization) |
Developer.Builder |
Developer.Builder.organizationUrl(String organizationUrl) |
Contributor.Builder |
Contributor.Builder.organizationUrl(String organizationUrl) |
Activation.Builder |
Activation.Builder.os(ActivationOS os) |
MailingList.Builder |
MailingList.Builder.otherArchives(Collection<String> otherArchives) |
Reporting.Builder |
Reporting.Builder.outputDirectory(String outputDirectory) |
Build.Builder |
Build.Builder.outputDirectory(String outputDirectory) |
Model.Builder |
Model.Builder.packaging(String packaging) |
Model.Builder |
Model.Builder.parent(Parent parent) |
PluginExecution.Builder |
PluginExecution.Builder.phase(String phase) |
Build.Builder |
Build.Builder.pluginManagement(PluginManagement pluginManagement) |
PluginConfiguration.Builder |
PluginConfiguration.Builder.pluginManagement(PluginManagement pluginManagement) |
BuildBase.Builder |
BuildBase.Builder.pluginManagement(PluginManagement pluginManagement) |
Model.Builder |
Model.Builder.pluginRepositories(Collection<Repository> pluginRepositories) |
ModelBase.Builder |
ModelBase.Builder.pluginRepositories(Collection<Repository> pluginRepositories) |
Profile.Builder |
Profile.Builder.pluginRepositories(Collection<Repository> pluginRepositories) |
PluginManagement.Builder |
PluginManagement.Builder.plugins(Collection<Plugin> plugins) |
Build.Builder |
Build.Builder.plugins(Collection<Plugin> plugins) |
PluginConfiguration.Builder |
PluginConfiguration.Builder.plugins(Collection<Plugin> plugins) |
PluginContainer.Builder |
PluginContainer.Builder.plugins(Collection<Plugin> plugins) |
BuildBase.Builder |
BuildBase.Builder.plugins(Collection<Plugin> plugins) |
Reporting.Builder |
Reporting.Builder.plugins(Collection<ReportPlugin> plugins) |
Model.Builder |
Model.Builder.pomFile(Path pomFile) |
MailingList.Builder |
MailingList.Builder.post(String post) |
Model.Builder |
Model.Builder.prerequisites(Prerequisites prerequisites) |
PluginExecution.Builder |
PluginExecution.Builder.priority(int priority) |
Model.Builder |
Model.Builder.profiles(Collection<Profile> profiles) |
Model.Builder |
Model.Builder.properties(Map<String,String> properties) |
ModelBase.Builder |
ModelBase.Builder.properties(Map<String,String> properties) |
Developer.Builder |
Developer.Builder.properties(Map<String,String> properties) |
Profile.Builder |
Profile.Builder.properties(Map<String,String> properties) |
Contributor.Builder |
Contributor.Builder.properties(Map<String,String> properties) |
Activation.Builder |
Activation.Builder.property(ActivationProperty property) |
Parent.Builder |
Parent.Builder.relativePath(String relativePath) |
Repository.Builder |
Repository.Builder.releases(RepositoryPolicy releases) |
DeploymentRepository.Builder |
DeploymentRepository.Builder.releases(RepositoryPolicy releases) |
DistributionManagement.Builder |
DistributionManagement.Builder.relocation(Relocation relocation) |
Model.Builder |
Model.Builder.reporting(Reporting reporting) |
ModelBase.Builder |
ModelBase.Builder.reporting(Reporting reporting) |
Profile.Builder |
Profile.Builder.reporting(Reporting reporting) |
ReportSet.Builder |
ReportSet.Builder.reports(Collection<String> reports) |
ReportPlugin.Builder |
ReportPlugin.Builder.reportSets(Collection<ReportSet> reportSets) |
Model.Builder |
Model.Builder.repositories(Collection<Repository> repositories) |
ModelBase.Builder |
ModelBase.Builder.repositories(Collection<Repository> repositories) |
Profile.Builder |
Profile.Builder.repositories(Collection<Repository> repositories) |
DistributionManagement.Builder |
DistributionManagement.Builder.repository(DeploymentRepository repository) |
Build.Builder |
Build.Builder.resources(Collection<Resource> resources) |
BuildBase.Builder |
BuildBase.Builder.resources(Collection<Resource> resources) |
Developer.Builder |
Developer.Builder.roles(Collection<String> roles) |
Contributor.Builder |
Contributor.Builder.roles(Collection<String> roles) |
Model.Builder |
Model.Builder.scm(Scm scm) |
Dependency.Builder |
Dependency.Builder.scope(String scope) |
Build.Builder |
Build.Builder.scriptSourceDirectory(String scriptSourceDirectory) |
Notifier.Builder |
Notifier.Builder.sendOnError(boolean sendOnError) |
Notifier.Builder |
Notifier.Builder.sendOnFailure(boolean sendOnFailure) |
Notifier.Builder |
Notifier.Builder.sendOnSuccess(boolean sendOnSuccess) |
Notifier.Builder |
Notifier.Builder.sendOnWarning(boolean sendOnWarning) |
DistributionManagement.Builder |
DistributionManagement.Builder.site(Site site) |
DistributionManagement.Builder |
DistributionManagement.Builder.snapshotRepository(DeploymentRepository snapshotRepository) |
Repository.Builder |
Repository.Builder.snapshots(RepositoryPolicy snapshots) |
DeploymentRepository.Builder |
DeploymentRepository.Builder.snapshots(RepositoryPolicy snapshots) |
Build.Builder |
Build.Builder.sourceDirectory(String sourceDirectory) |
DistributionManagement.Builder |
DistributionManagement.Builder.status(String status) |
MailingList.Builder |
MailingList.Builder.subscribe(String subscribe) |
CiManagement.Builder |
CiManagement.Builder.system(String system) |
IssueManagement.Builder |
IssueManagement.Builder.system(String system) |
Dependency.Builder |
Dependency.Builder.systemPath(String systemPath) |
Scm.Builder |
Scm.Builder.tag(String tag) |
Resource.Builder |
Resource.Builder.targetPath(String targetPath) |
Build.Builder |
Build.Builder.testOutputDirectory(String testOutputDirectory) |
Build.Builder |
Build.Builder.testResources(Collection<Resource> testResources) |
BuildBase.Builder |
BuildBase.Builder.testResources(Collection<Resource> testResources) |
Build.Builder |
Build.Builder.testSourceDirectory(String testSourceDirectory) |
Developer.Builder |
Developer.Builder.timezone(String timezone) |
Contributor.Builder |
Contributor.Builder.timezone(String timezone) |
Notifier.Builder |
Notifier.Builder.type(String type) |
Dependency.Builder |
Dependency.Builder.type(String type) |
DeploymentRepository.Builder |
DeploymentRepository.Builder.uniqueVersion(boolean uniqueVersion) |
MailingList.Builder |
MailingList.Builder.unsubscribe(String unsubscribe) |
RepositoryPolicy.Builder |
RepositoryPolicy.Builder.updatePolicy(String updatePolicy) |
Model.Builder |
Model.Builder.url(String url) |
Repository.Builder |
Repository.Builder.url(String url) |
License.Builder |
License.Builder.url(String url) |
Developer.Builder |
Developer.Builder.url(String url) |
Contributor.Builder |
Contributor.Builder.url(String url) |
DeploymentRepository.Builder |
DeploymentRepository.Builder.url(String url) |
CiManagement.Builder |
CiManagement.Builder.url(String url) |
Site.Builder |
Site.Builder.url(String url) |
Organization.Builder |
Organization.Builder.url(String url) |
RepositoryBase.Builder |
RepositoryBase.Builder.url(String url) |
IssueManagement.Builder |
IssueManagement.Builder.url(String url) |
Scm.Builder |
Scm.Builder.url(String url) |
ActivationProperty.Builder |
ActivationProperty.Builder.value(String value) |
Model.Builder |
Model.Builder.version(String version) |
Parent.Builder |
Parent.Builder.version(String version) |
ActivationOS.Builder |
ActivationOS.Builder.version(String version) |
Relocation.Builder |
Relocation.Builder.version(String version) |
ReportPlugin.Builder |
ReportPlugin.Builder.version(String version) |
Extension.Builder |
Extension.Builder.version(String version) |
Dependency.Builder |
Dependency.Builder.version(String version) |
Plugin.Builder |
Plugin.Builder.version(String version) |
Model.Builder |
Model.with()
Creates a new builder with this object as the basis.
|
PluginManagement.Builder |
PluginManagement.with()
Creates a new builder with this object as the basis.
|
Reporting.Builder |
Reporting.with()
Creates a new builder with this object as the basis.
|
ActivationFile.Builder |
ActivationFile.with()
Creates a new builder with this object as the basis.
|
Parent.Builder |
Parent.with()
Creates a new builder with this object as the basis.
|
Activation.Builder |
Activation.with()
Creates a new builder with this object as the basis.
|
ReportSet.Builder |
ReportSet.with()
Creates a new builder with this object as the basis.
|
Repository.Builder |
Repository.with()
Creates a new builder with this object as the basis.
|
ActivationOS.Builder |
ActivationOS.with()
Creates a new builder with this object as the basis.
|
ModelBase.Builder |
ModelBase.with()
Creates a new builder with this object as the basis.
|
Build.Builder |
Build.with()
Creates a new builder with this object as the basis.
|
Notifier.Builder |
Notifier.with()
Creates a new builder with this object as the basis.
|
Relocation.Builder |
Relocation.with()
Creates a new builder with this object as the basis.
|
License.Builder |
License.with()
Creates a new builder with this object as the basis.
|
ReportPlugin.Builder |
ReportPlugin.with()
Creates a new builder with this object as the basis.
|
PluginConfiguration.Builder |
PluginConfiguration.with()
Creates a new builder with this object as the basis.
|
PatternSet.Builder |
PatternSet.with()
Creates a new builder with this object as the basis.
|
Exclusion.Builder |
Exclusion.with()
Creates a new builder with this object as the basis.
|
Extension.Builder |
Extension.with()
Creates a new builder with this object as the basis.
|
Developer.Builder |
Developer.with()
Creates a new builder with this object as the basis.
|
PluginContainer.Builder |
PluginContainer.with()
Creates a new builder with this object as the basis.
|
RepositoryPolicy.Builder |
RepositoryPolicy.with()
Creates a new builder with this object as the basis.
|
Resource.Builder |
Resource.with()
Creates a new builder with this object as the basis.
|
MailingList.Builder |
MailingList.with()
Creates a new builder with this object as the basis.
|
Profile.Builder |
Profile.with()
Creates a new builder with this object as the basis.
|
BuildBase.Builder |
BuildBase.with()
Creates a new builder with this object as the basis.
|
Dependency.Builder |
Dependency.with()
Creates a new builder with this object as the basis.
|
Prerequisites.Builder |
Prerequisites.with()
Creates a new builder with this object as the basis.
|
Contributor.Builder |
Contributor.with()
Creates a new builder with this object as the basis.
|
ConfigurationContainer.Builder |
ConfigurationContainer.with()
Creates a new builder with this object as the basis.
|
DependencyManagement.Builder |
DependencyManagement.with()
Creates a new builder with this object as the basis.
|
FileSet.Builder |
FileSet.with()
Creates a new builder with this object as the basis.
|
DeploymentRepository.Builder |
DeploymentRepository.with()
Creates a new builder with this object as the basis.
|
CiManagement.Builder |
CiManagement.with()
Creates a new builder with this object as the basis.
|
DistributionManagement.Builder |
DistributionManagement.with()
Creates a new builder with this object as the basis.
|
Site.Builder |
Site.with()
Creates a new builder with this object as the basis.
|
PluginExecution.Builder |
PluginExecution.with()
Creates a new builder with this object as the basis.
|
Organization.Builder |
Organization.with()
Creates a new builder with this object as the basis.
|
ActivationProperty.Builder |
ActivationProperty.with()
Creates a new builder with this object as the basis.
|
RepositoryBase.Builder |
RepositoryBase.with()
Creates a new builder with this object as the basis.
|
IssueManagement.Builder |
IssueManagement.with()
Creates a new builder with this object as the basis.
|
Scm.Builder |
Scm.with()
Creates a new builder with this object as the basis.
|
Plugin.Builder |
Plugin.with()
Creates a new builder with this object as the basis.
|
Profile |
Profile.withActivation(Activation activation)
Creates a new
Profile instance using the specified activation. |
Activation |
Activation.withActiveByDefault(boolean activeByDefault)
Creates a new
Activation instance using the specified activeByDefault. |
Notifier |
Notifier.withAddress(String address)
Creates a new
Notifier instance using the specified address. |
ActivationOS |
ActivationOS.withArch(String arch)
Creates a new
ActivationOS instance using the specified arch. |
MailingList |
MailingList.withArchive(String archive)
Creates a new
MailingList instance using the specified archive. |
Model |
Model.withArtifactId(String artifactId)
Creates a new
Model instance using the specified artifactId. |
Parent |
Parent.withArtifactId(String artifactId)
Creates a new
Parent instance using the specified artifactId. |
Relocation |
Relocation.withArtifactId(String artifactId)
Creates a new
Relocation instance using the specified artifactId. |
ReportPlugin |
ReportPlugin.withArtifactId(String artifactId)
Creates a new
ReportPlugin instance using the specified artifactId. |
Exclusion |
Exclusion.withArtifactId(String artifactId)
Creates a new
Exclusion instance using the specified artifactId. |
Extension |
Extension.withArtifactId(String artifactId)
Creates a new
Extension instance using the specified artifactId. |
Dependency |
Dependency.withArtifactId(String artifactId)
Creates a new
Dependency instance using the specified artifactId. |
Plugin |
Plugin.withArtifactId(String artifactId)
Creates a new
Plugin instance using the specified artifactId. |
Model |
Model.withBuild(Build build)
Creates a new
Model instance using the specified build. |
Profile |
Profile.withBuild(BuildBase build)
Creates a new
Profile instance using the specified build. |
RepositoryPolicy |
RepositoryPolicy.withChecksumPolicy(String checksumPolicy)
Creates a new
RepositoryPolicy instance using the specified checksumPolicy. |
Model |
Model.withChildProjectUrlInheritAppendPath(String childProjectUrlInheritAppendPath)
Creates a new
Model instance using the specified childProjectUrlInheritAppendPath. |
Scm |
Scm.withChildScmConnectionInheritAppendPath(String childScmConnectionInheritAppendPath)
Creates a new
Scm instance using the specified childScmConnectionInheritAppendPath. |
Scm |
Scm.withChildScmDeveloperConnectionInheritAppendPath(String childScmDeveloperConnectionInheritAppendPath)
Creates a new
Scm instance using the specified childScmDeveloperConnectionInheritAppendPath. |
Scm |
Scm.withChildScmUrlInheritAppendPath(String childScmUrlInheritAppendPath)
Creates a new
Scm instance using the specified childScmUrlInheritAppendPath. |
Site |
Site.withChildSiteUrlInheritAppendPath(String childSiteUrlInheritAppendPath)
Creates a new
Site instance using the specified childSiteUrlInheritAppendPath. |
Model |
Model.withCiManagement(CiManagement ciManagement)
Creates a new
Model instance using the specified ciManagement. |
Dependency |
Dependency.withClassifier(String classifier)
Creates a new
Dependency instance using the specified classifier. |
License |
License.withComments(String comments)
Creates a new
License instance using the specified comments. |
ReportSet |
ReportSet.withConfiguration(Dom configuration)
Creates a new
ReportSet instance using the specified configuration. |
ReportPlugin |
ReportPlugin.withConfiguration(Dom configuration)
Creates a new
ReportPlugin instance using the specified configuration. |
ConfigurationContainer |
ConfigurationContainer.withConfiguration(Dom configuration)
Creates a new
ConfigurationContainer instance using the specified configuration. |
PluginExecution |
PluginExecution.withConfiguration(Dom configuration)
Creates a new
PluginExecution instance using the specified configuration. |
Plugin |
Plugin.withConfiguration(Dom configuration)
Creates a new
Plugin instance using the specified configuration. |
Notifier |
Notifier.withConfiguration(Map<String,String> configuration)
Creates a new
Notifier instance using the specified configuration. |
Scm |
Scm.withConnection(String connection)
Creates a new
Scm instance using the specified connection. |
Model |
Model.withContributors(Collection<Contributor> contributors)
Creates a new
Model instance using the specified contributors. |
Build |
Build.withDefaultGoal(String defaultGoal)
Creates a new
Build instance using the specified defaultGoal. |
BuildBase |
BuildBase.withDefaultGoal(String defaultGoal)
Creates a new
BuildBase instance using the specified defaultGoal. |
Model |
Model.withDependencies(Collection<Dependency> dependencies)
Creates a new
Model instance using the specified dependencies. |
ModelBase |
ModelBase.withDependencies(Collection<Dependency> dependencies)
Creates a new
ModelBase instance using the specified dependencies. |
Profile |
Profile.withDependencies(Collection<Dependency> dependencies)
Creates a new
Profile instance using the specified dependencies. |
DependencyManagement |
DependencyManagement.withDependencies(Collection<Dependency> dependencies)
Creates a new
DependencyManagement instance using the specified dependencies. |
Plugin |
Plugin.withDependencies(Collection<Dependency> dependencies)
Creates a new
Plugin instance using the specified dependencies. |
Model |
Model.withDependencyManagement(DependencyManagement dependencyManagement)
Creates a new
Model instance using the specified dependencyManagement. |
ModelBase |
ModelBase.withDependencyManagement(DependencyManagement dependencyManagement)
Creates a new
ModelBase instance using the specified dependencyManagement. |
Profile |
Profile.withDependencyManagement(DependencyManagement dependencyManagement)
Creates a new
Profile instance using the specified dependencyManagement. |
Model |
Model.withDescription(String description)
Creates a new
Model instance using the specified description. |
Scm |
Scm.withDeveloperConnection(String developerConnection)
Creates a new
Scm instance using the specified developerConnection. |
Model |
Model.withDevelopers(Collection<Developer> developers)
Creates a new
Model instance using the specified developers. |
Build |
Build.withDirectory(String directory)
Creates a new
Build instance using the specified directory. |
Resource |
Resource.withDirectory(String directory)
Creates a new
Resource instance using the specified directory. |
BuildBase |
BuildBase.withDirectory(String directory)
Creates a new
BuildBase instance using the specified directory. |
FileSet |
FileSet.withDirectory(String directory)
Creates a new
FileSet instance using the specified directory. |
License |
License.withDistribution(String distribution)
Creates a new
License instance using the specified distribution. |
Model |
Model.withDistributionManagement(DistributionManagement distributionManagement)
Creates a new
Model instance using the specified distributionManagement. |
ModelBase |
ModelBase.withDistributionManagement(DistributionManagement distributionManagement)
Creates a new
ModelBase instance using the specified distributionManagement. |
Profile |
Profile.withDistributionManagement(DistributionManagement distributionManagement)
Creates a new
Profile instance using the specified distributionManagement. |
DistributionManagement |
DistributionManagement.withDownloadUrl(String downloadUrl)
Creates a new
DistributionManagement instance using the specified downloadUrl. |
Developer |
Developer.withEmail(String email)
Creates a new
Developer instance using the specified email. |
Contributor |
Contributor.withEmail(String email)
Creates a new
Contributor instance using the specified email. |
RepositoryPolicy |
RepositoryPolicy.withEnabled(String enabled)
Creates a new
RepositoryPolicy instance using the specified enabled. |
Reporting |
Reporting.withExcludeDefaults(String excludeDefaults)
Creates a new
Reporting instance using the specified excludeDefaults. |
PatternSet |
PatternSet.withExcludes(Collection<String> excludes)
Creates a new
PatternSet instance using the specified excludes. |
Resource |
Resource.withExcludes(Collection<String> excludes)
Creates a new
Resource instance using the specified excludes. |
FileSet |
FileSet.withExcludes(Collection<String> excludes)
Creates a new
FileSet instance using the specified excludes. |
Dependency |
Dependency.withExclusions(Collection<Exclusion> exclusions)
Creates a new
Dependency instance using the specified exclusions. |
Plugin |
Plugin.withExecutions(Collection<PluginExecution> executions)
Creates a new
Plugin instance using the specified executions. |
ActivationFile |
ActivationFile.withExists(String exists)
Creates a new
ActivationFile instance using the specified exists. |
Build |
Build.withExtensions(Collection<Extension> extensions)
Creates a new
Build instance using the specified extensions. |
Plugin |
Plugin.withExtensions(String extensions)
Creates a new
Plugin instance using the specified extensions. |
ActivationOS |
ActivationOS.withFamily(String family)
Creates a new
ActivationOS instance using the specified family. |
Activation |
Activation.withFile(ActivationFile file)
Creates a new
Activation instance using the specified file. |
Resource |
Resource.withFiltering(String filtering)
Creates a new
Resource instance using the specified filtering. |
Build |
Build.withFilters(Collection<String> filters)
Creates a new
Build instance using the specified filters. |
BuildBase |
BuildBase.withFilters(Collection<String> filters)
Creates a new
BuildBase instance using the specified filters. |
Build |
Build.withFinalName(String finalName)
Creates a new
Build instance using the specified finalName. |
BuildBase |
BuildBase.withFinalName(String finalName)
Creates a new
BuildBase instance using the specified finalName. |
PluginExecution |
PluginExecution.withGoals(Collection<String> goals)
Creates a new
PluginExecution instance using the specified goals. |
Model |
Model.withGroupId(String groupId)
Creates a new
Model instance using the specified groupId. |
Parent |
Parent.withGroupId(String groupId)
Creates a new
Parent instance using the specified groupId. |
Relocation |
Relocation.withGroupId(String groupId)
Creates a new
Relocation instance using the specified groupId. |
ReportPlugin |
ReportPlugin.withGroupId(String groupId)
Creates a new
ReportPlugin instance using the specified groupId. |
Exclusion |
Exclusion.withGroupId(String groupId)
Creates a new
Exclusion instance using the specified groupId. |
Extension |
Extension.withGroupId(String groupId)
Creates a new
Extension instance using the specified groupId. |
Dependency |
Dependency.withGroupId(String groupId)
Creates a new
Dependency instance using the specified groupId. |
Plugin |
Plugin.withGroupId(String groupId)
Creates a new
Plugin instance using the specified groupId. |
ReportSet |
ReportSet.withId(String id)
Creates a new
ReportSet instance using the specified id. |
Repository |
Repository.withId(String id)
Creates a new
Repository instance using the specified id. |
Developer |
Developer.withId(String id)
Creates a new
Developer instance using the specified id. |
Profile |
Profile.withId(String id)
Creates a new
Profile instance using the specified id. |
DeploymentRepository |
DeploymentRepository.withId(String id)
Creates a new
DeploymentRepository instance using the specified id. |
Site |
Site.withId(String id)
Creates a new
Site instance using the specified id. |
PluginExecution |
PluginExecution.withId(String id)
Creates a new
PluginExecution instance using the specified id. |
RepositoryBase |
RepositoryBase.withId(String id)
Creates a new
RepositoryBase instance using the specified id. |
Model |
Model.withInceptionYear(String inceptionYear)
Creates a new
Model instance using the specified inceptionYear. |
PatternSet |
PatternSet.withIncludes(Collection<String> includes)
Creates a new
PatternSet instance using the specified includes. |
Resource |
Resource.withIncludes(Collection<String> includes)
Creates a new
Resource instance using the specified includes. |
FileSet |
FileSet.withIncludes(Collection<String> includes)
Creates a new
FileSet instance using the specified includes. |
ReportSet |
ReportSet.withInherited(String inherited)
Creates a new
ReportSet instance using the specified inherited. |
ReportPlugin |
ReportPlugin.withInherited(String inherited)
Creates a new
ReportPlugin instance using the specified inherited. |
ConfigurationContainer |
ConfigurationContainer.withInherited(String inherited)
Creates a new
ConfigurationContainer instance using the specified inherited. |
PluginExecution |
PluginExecution.withInherited(String inherited)
Creates a new
PluginExecution instance using the specified inherited. |
Plugin |
Plugin.withInherited(String inherited)
Creates a new
Plugin instance using the specified inherited. |
Model |
Model.withIssueManagement(IssueManagement issueManagement)
Creates a new
Model instance using the specified issueManagement. |
Activation |
Activation.withJdk(String jdk)
Creates a new
Activation instance using the specified jdk. |
Repository |
Repository.withLayout(String layout)
Creates a new
Repository instance using the specified layout. |
DeploymentRepository |
DeploymentRepository.withLayout(String layout)
Creates a new
DeploymentRepository instance using the specified layout. |
RepositoryBase |
RepositoryBase.withLayout(String layout)
Creates a new
RepositoryBase instance using the specified layout. |
Model |
Model.withLicenses(Collection<License> licenses)
Creates a new
Model instance using the specified licenses. |
Model |
Model.withMailingLists(Collection<MailingList> mailingLists)
Creates a new
Model instance using the specified mailingLists. |
Prerequisites |
Prerequisites.withMaven(String maven)
Creates a new
Prerequisites instance using the specified maven. |
Resource |
Resource.withMergeId(String mergeId)
Creates a new
Resource instance using the specified mergeId. |
Relocation |
Relocation.withMessage(String message)
Creates a new
Relocation instance using the specified message. |
ActivationFile |
ActivationFile.withMissing(String missing)
Creates a new
ActivationFile instance using the specified missing. |
Model |
Model.withModelVersion(String modelVersion)
Creates a new
Model instance using the specified modelVersion. |
Model |
Model.withModules(Collection<String> modules)
Creates a new
Model instance using the specified modules. |
ModelBase |
ModelBase.withModules(Collection<String> modules)
Creates a new
ModelBase instance using the specified modules. |
Profile |
Profile.withModules(Collection<String> modules)
Creates a new
Profile instance using the specified modules. |
Model |
Model.withName(String name)
Creates a new
Model instance using the specified name. |
Repository |
Repository.withName(String name)
Creates a new
Repository instance using the specified name. |
ActivationOS |
ActivationOS.withName(String name)
Creates a new
ActivationOS instance using the specified name. |
License |
License.withName(String name)
Creates a new
License instance using the specified name. |
Developer |
Developer.withName(String name)
Creates a new
Developer instance using the specified name. |
MailingList |
MailingList.withName(String name)
Creates a new
MailingList instance using the specified name. |
Contributor |
Contributor.withName(String name)
Creates a new
Contributor instance using the specified name. |
DeploymentRepository |
DeploymentRepository.withName(String name)
Creates a new
DeploymentRepository instance using the specified name. |
Site |
Site.withName(String name)
Creates a new
Site instance using the specified name. |
Organization |
Organization.withName(String name)
Creates a new
Organization instance using the specified name. |
ActivationProperty |
ActivationProperty.withName(String name)
Creates a new
ActivationProperty instance using the specified name. |
RepositoryBase |
RepositoryBase.withName(String name)
Creates a new
RepositoryBase instance using the specified name. |
CiManagement |
CiManagement.withNotifiers(Collection<Notifier> notifiers)
Creates a new
CiManagement instance using the specified notifiers. |
Dependency |
Dependency.withOptional(String optional)
Creates a new
Dependency instance using the specified optional. |
Model |
Model.withOrganization(Organization organization)
Creates a new
Model instance using the specified organization. |
Developer |
Developer.withOrganization(String organization)
Creates a new
Developer instance using the specified organization. |
Contributor |
Contributor.withOrganization(String organization)
Creates a new
Contributor instance using the specified organization. |
Developer |
Developer.withOrganizationUrl(String organizationUrl)
Creates a new
Developer instance using the specified organizationUrl. |
Contributor |
Contributor.withOrganizationUrl(String organizationUrl)
Creates a new
Contributor instance using the specified organizationUrl. |
Activation |
Activation.withOs(ActivationOS os)
Creates a new
Activation instance using the specified os. |
MailingList |
MailingList.withOtherArchives(Collection<String> otherArchives)
Creates a new
MailingList instance using the specified otherArchives. |
Reporting |
Reporting.withOutputDirectory(String outputDirectory)
Creates a new
Reporting instance using the specified outputDirectory. |
Build |
Build.withOutputDirectory(String outputDirectory)
Creates a new
Build instance using the specified outputDirectory. |
Model |
Model.withPackaging(String packaging)
Creates a new
Model instance using the specified packaging. |
Model |
Model.withParent(Parent parent)
Creates a new
Model instance using the specified parent. |
PluginExecution |
PluginExecution.withPhase(String phase)
Creates a new
PluginExecution instance using the specified phase. |
Build |
Build.withPluginManagement(PluginManagement pluginManagement)
Creates a new
Build instance using the specified pluginManagement. |
PluginConfiguration |
PluginConfiguration.withPluginManagement(PluginManagement pluginManagement)
Creates a new
PluginConfiguration instance using the specified pluginManagement. |
BuildBase |
BuildBase.withPluginManagement(PluginManagement pluginManagement)
Creates a new
BuildBase instance using the specified pluginManagement. |
Model |
Model.withPluginRepositories(Collection<Repository> pluginRepositories)
Creates a new
Model instance using the specified pluginRepositories. |
ModelBase |
ModelBase.withPluginRepositories(Collection<Repository> pluginRepositories)
Creates a new
ModelBase instance using the specified pluginRepositories. |
Profile |
Profile.withPluginRepositories(Collection<Repository> pluginRepositories)
Creates a new
Profile instance using the specified pluginRepositories. |
PluginManagement |
PluginManagement.withPlugins(Collection<Plugin> plugins)
Creates a new
PluginManagement instance using the specified plugins. |
Build |
Build.withPlugins(Collection<Plugin> plugins)
Creates a new
Build instance using the specified plugins. |
PluginConfiguration |
PluginConfiguration.withPlugins(Collection<Plugin> plugins)
Creates a new
PluginConfiguration instance using the specified plugins. |
PluginContainer |
PluginContainer.withPlugins(Collection<Plugin> plugins)
Creates a new
PluginContainer instance using the specified plugins. |
BuildBase |
BuildBase.withPlugins(Collection<Plugin> plugins)
Creates a new
BuildBase instance using the specified plugins. |
Reporting |
Reporting.withPlugins(Collection<ReportPlugin> plugins)
Creates a new
Reporting instance using the specified plugins. |
Model |
Model.withPomFile(Path pomFile)
Creates a new
Model instance using the specified pomFile. |
MailingList |
MailingList.withPost(String post)
Creates a new
MailingList instance using the specified post. |
Model |
Model.withPrerequisites(Prerequisites prerequisites)
Creates a new
Model instance using the specified prerequisites. |
PluginExecution |
PluginExecution.withPriority(int priority)
Creates a new
PluginExecution instance using the specified priority. |
Model |
Model.withProfiles(Collection<Profile> profiles)
Creates a new
Model instance using the specified profiles. |
Model |
Model.withProperties(Map<String,String> properties)
Creates a new
Model instance using the specified properties. |
ModelBase |
ModelBase.withProperties(Map<String,String> properties)
Creates a new
ModelBase instance using the specified properties. |
Developer |
Developer.withProperties(Map<String,String> properties)
Creates a new
Developer instance using the specified properties. |
Profile |
Profile.withProperties(Map<String,String> properties)
Creates a new
Profile instance using the specified properties. |
Contributor |
Contributor.withProperties(Map<String,String> properties)
Creates a new
Contributor instance using the specified properties. |
Activation |
Activation.withProperty(ActivationProperty property)
Creates a new
Activation instance using the specified property. |
Parent |
Parent.withRelativePath(String relativePath)
Creates a new
Parent instance using the specified relativePath. |
Repository |
Repository.withReleases(RepositoryPolicy releases)
Creates a new
Repository instance using the specified releases. |
DeploymentRepository |
DeploymentRepository.withReleases(RepositoryPolicy releases)
Creates a new
DeploymentRepository instance using the specified releases. |
DistributionManagement |
DistributionManagement.withRelocation(Relocation relocation)
Creates a new
DistributionManagement instance using the specified relocation. |
Model |
Model.withReporting(Reporting reporting)
Creates a new
Model instance using the specified reporting. |
ModelBase |
ModelBase.withReporting(Reporting reporting)
Creates a new
ModelBase instance using the specified reporting. |
Profile |
Profile.withReporting(Reporting reporting)
Creates a new
Profile instance using the specified reporting. |
ReportSet |
ReportSet.withReports(Collection<String> reports)
Creates a new
ReportSet instance using the specified reports. |
ReportPlugin |
ReportPlugin.withReportSets(Collection<ReportSet> reportSets)
Creates a new
ReportPlugin instance using the specified reportSets. |
Model |
Model.withRepositories(Collection<Repository> repositories)
Creates a new
Model instance using the specified repositories. |
ModelBase |
ModelBase.withRepositories(Collection<Repository> repositories)
Creates a new
ModelBase instance using the specified repositories. |
Profile |
Profile.withRepositories(Collection<Repository> repositories)
Creates a new
Profile instance using the specified repositories. |
DistributionManagement |
DistributionManagement.withRepository(DeploymentRepository repository)
Creates a new
DistributionManagement instance using the specified repository. |
Build |
Build.withResources(Collection<Resource> resources)
Creates a new
Build instance using the specified resources. |
BuildBase |
BuildBase.withResources(Collection<Resource> resources)
Creates a new
BuildBase instance using the specified resources. |
Developer |
Developer.withRoles(Collection<String> roles)
Creates a new
Developer instance using the specified roles. |
Contributor |
Contributor.withRoles(Collection<String> roles)
Creates a new
Contributor instance using the specified roles. |
Model |
Model.withScm(Scm scm)
Creates a new
Model instance using the specified scm. |
Dependency |
Dependency.withScope(String scope)
Creates a new
Dependency instance using the specified scope. |
Build |
Build.withScriptSourceDirectory(String scriptSourceDirectory)
Creates a new
Build instance using the specified scriptSourceDirectory. |
Notifier |
Notifier.withSendOnError(boolean sendOnError)
Creates a new
Notifier instance using the specified sendOnError. |
Notifier |
Notifier.withSendOnFailure(boolean sendOnFailure)
Creates a new
Notifier instance using the specified sendOnFailure. |
Notifier |
Notifier.withSendOnSuccess(boolean sendOnSuccess)
Creates a new
Notifier instance using the specified sendOnSuccess. |
Notifier |
Notifier.withSendOnWarning(boolean sendOnWarning)
Creates a new
Notifier instance using the specified sendOnWarning. |
DistributionManagement |
DistributionManagement.withSite(Site site)
Creates a new
DistributionManagement instance using the specified site. |
DistributionManagement |
DistributionManagement.withSnapshotRepository(DeploymentRepository snapshotRepository)
Creates a new
DistributionManagement instance using the specified snapshotRepository. |
Repository |
Repository.withSnapshots(RepositoryPolicy snapshots)
Creates a new
Repository instance using the specified snapshots. |
DeploymentRepository |
DeploymentRepository.withSnapshots(RepositoryPolicy snapshots)
Creates a new
DeploymentRepository instance using the specified snapshots. |
Build |
Build.withSourceDirectory(String sourceDirectory)
Creates a new
Build instance using the specified sourceDirectory. |
DistributionManagement |
DistributionManagement.withStatus(String status)
Creates a new
DistributionManagement instance using the specified status. |
MailingList |
MailingList.withSubscribe(String subscribe)
Creates a new
MailingList instance using the specified subscribe. |
CiManagement |
CiManagement.withSystem(String system)
Creates a new
CiManagement instance using the specified system. |
IssueManagement |
IssueManagement.withSystem(String system)
Creates a new
IssueManagement instance using the specified system. |
Dependency |
Dependency.withSystemPath(String systemPath)
Creates a new
Dependency instance using the specified systemPath. |
Scm |
Scm.withTag(String tag)
Creates a new
Scm instance using the specified tag. |
Resource |
Resource.withTargetPath(String targetPath)
Creates a new
Resource instance using the specified targetPath. |
Build |
Build.withTestOutputDirectory(String testOutputDirectory)
Creates a new
Build instance using the specified testOutputDirectory. |
Build |
Build.withTestResources(Collection<Resource> testResources)
Creates a new
Build instance using the specified testResources. |
BuildBase |
BuildBase.withTestResources(Collection<Resource> testResources)
Creates a new
BuildBase instance using the specified testResources. |
Build |
Build.withTestSourceDirectory(String testSourceDirectory)
Creates a new
Build instance using the specified testSourceDirectory. |
Developer |
Developer.withTimezone(String timezone)
Creates a new
Developer instance using the specified timezone. |
Contributor |
Contributor.withTimezone(String timezone)
Creates a new
Contributor instance using the specified timezone. |
Notifier |
Notifier.withType(String type)
Creates a new
Notifier instance using the specified type. |
Dependency |
Dependency.withType(String type)
Creates a new
Dependency instance using the specified type. |
DeploymentRepository |
DeploymentRepository.withUniqueVersion(boolean uniqueVersion)
Creates a new
DeploymentRepository instance using the specified uniqueVersion. |
MailingList |
MailingList.withUnsubscribe(String unsubscribe)
Creates a new
MailingList instance using the specified unsubscribe. |
RepositoryPolicy |
RepositoryPolicy.withUpdatePolicy(String updatePolicy)
Creates a new
RepositoryPolicy instance using the specified updatePolicy. |
Model |
Model.withUrl(String url)
Creates a new
Model instance using the specified url. |
Repository |
Repository.withUrl(String url)
Creates a new
Repository instance using the specified url. |
License |
License.withUrl(String url)
Creates a new
License instance using the specified url. |
Developer |
Developer.withUrl(String url)
Creates a new
Developer instance using the specified url. |
Contributor |
Contributor.withUrl(String url)
Creates a new
Contributor instance using the specified url. |
DeploymentRepository |
DeploymentRepository.withUrl(String url)
Creates a new
DeploymentRepository instance using the specified url. |
CiManagement |
CiManagement.withUrl(String url)
Creates a new
CiManagement instance using the specified url. |
Site |
Site.withUrl(String url)
Creates a new
Site instance using the specified url. |
Organization |
Organization.withUrl(String url)
Creates a new
Organization instance using the specified url. |
RepositoryBase |
RepositoryBase.withUrl(String url)
Creates a new
RepositoryBase instance using the specified url. |
IssueManagement |
IssueManagement.withUrl(String url)
Creates a new
IssueManagement instance using the specified url. |
Scm |
Scm.withUrl(String url)
Creates a new
Scm instance using the specified url. |
ActivationProperty |
ActivationProperty.withValue(String value)
Creates a new
ActivationProperty instance using the specified value. |
Model |
Model.withVersion(String version)
Creates a new
Model instance using the specified version. |
Parent |
Parent.withVersion(String version)
Creates a new
Parent instance using the specified version. |
ActivationOS |
ActivationOS.withVersion(String version)
Creates a new
ActivationOS instance using the specified version. |
Relocation |
Relocation.withVersion(String version)
Creates a new
Relocation instance using the specified version. |
ReportPlugin |
ReportPlugin.withVersion(String version)
Creates a new
ReportPlugin instance using the specified version. |
Extension |
Extension.withVersion(String version)
Creates a new
Extension instance using the specified version. |
Dependency |
Dependency.withVersion(String version)
Creates a new
Dependency instance using the specified version. |
Plugin |
Plugin.withVersion(String version)
Creates a new
Plugin instance using the specified version. |
Modifier and Type | Method and Description |
---|---|
MessageBuilder |
MessageBuilder.a(char[] value)
Append content to the message buffer.
|
MessageBuilder |
MessageBuilder.a(char[] value,
int offset,
int len)
Append content to the message buffer.
|
MessageBuilder |
MessageBuilder.a(CharSequence value)
Append content to the message buffer.
|
MessageBuilder |
MessageBuilder.a(CharSequence value,
int start,
int end)
Append content to the message buffer.
|
MessageBuilder |
MessageBuilder.a(Object value)
Append content to the message buffer.
|
ArtifactInstallerRequest.ArtifactInstallerRequestBuilder |
ArtifactInstallerRequest.ArtifactInstallerRequestBuilder.artifacts(Collection<Artifact> artifacts) |
String |
MessageBuilder.build()
Return the built message.
|
DependencyCollectorRequest |
DependencyCollectorRequest.DependencyCollectorRequestBuilder.build() |
ArtifactInstallerRequest |
ArtifactInstallerRequest.ArtifactInstallerRequestBuilder.build() |
ArtifactResolverRequest |
ArtifactResolverRequest.ArtifactResolverRequestBuilder.build() |
ArtifactDeployerRequest |
ArtifactDeployerRequest.ArtifactDeployerRequestBuilder.build() |
ProjectBuilderResult |
ProjectBuilder.build(ProjectBuilderRequest request)
Creates a
Project from a POM file. |
static DependencyCollectorRequest |
DependencyCollectorRequest.build(Session session,
Artifact root) |
default ProjectBuilderResult |
ProjectBuilder.build(Session session,
Artifact artifact)
Creates a
Project from an artifact. |
static ProjectBuilderRequest |
ProjectBuilderRequest.build(Session session,
Artifact artifact) |
static DependencyCoordinateFactoryRequest |
DependencyCoordinateFactoryRequest.build(Session session,
ArtifactCoordinate coordinate) |
default ProjectBuilderResult |
ProjectBuilder.build(Session session,
ArtifactCoordinate coordinate)
Creates a
Project from a coordinate. |
static ProjectBuilderRequest |
ProjectBuilderRequest.build(Session session,
ArtifactCoordinate coordinate) |
static ArtifactCoordinateFactoryRequest |
ArtifactCoordinateFactoryRequest.build(Session session,
ArtifactCoordinate coordinate) |
static ArtifactResolverRequest |
ArtifactResolverRequest.build(Session session,
Collection<? extends ArtifactCoordinate> coordinates) |
static ArtifactInstallerRequest |
ArtifactInstallerRequest.build(Session session,
Collection<Artifact> artifacts) |
static DependencyCoordinateFactoryRequest |
DependencyCoordinateFactoryRequest.build(Session session,
Dependency dependency) |
static DependencyCollectorRequest |
DependencyCollectorRequest.build(Session session,
DependencyCoordinate root) |
default ProjectBuilderResult |
ProjectBuilder.build(Session session,
Path path)
Creates a
Project from a POM file. |
static ProjectBuilderRequest |
ProjectBuilderRequest.build(Session session,
Path path) |
static DependencyCollectorRequest |
DependencyCollectorRequest.build(Session session,
Project project) |
default ProjectBuilderResult |
ProjectBuilder.build(Session session,
ProjectBuilderSource source)
Creates a
Project from a POM file. |
static ProjectBuilderRequest |
ProjectBuilderRequest.build(Session session,
ProjectBuilderSource source) |
static ArtifactDeployerRequest |
ArtifactDeployerRequest.build(Session session,
RemoteRepository repository,
Collection<Artifact> artifacts) |
static ArtifactCoordinateFactoryRequest |
ArtifactCoordinateFactoryRequest.build(Session session,
String groupId,
String artifactId,
String version,
String extension) |
static DependencyCoordinateFactoryRequest |
DependencyCoordinateFactoryRequest.build(Session session,
String groupId,
String artifactId,
String version,
String classifier,
String extension,
String type) |
static ArtifactCoordinateFactoryRequest |
ArtifactCoordinateFactoryRequest.build(Session session,
String groupId,
String artifactId,
String version,
String classifier,
String extension,
String type) |
static DependencyCollectorRequest.DependencyCollectorRequestBuilder |
DependencyCollectorRequest.builder() |
MessageBuilder |
MessageBuilderFactory.builder()
Creates a new message builder.
|
static DependencyCoordinateFactoryRequest.DependencyCoordinateFactoryRequestBuilder |
DependencyCoordinateFactoryRequest.builder() |
static ProjectBuilderRequest.ProjectBuilderRequestBuilder |
ProjectBuilderRequest.builder() |
static ArtifactInstallerRequest.ArtifactInstallerRequestBuilder |
ArtifactInstallerRequest.builder() |
static ArtifactResolverRequest.ArtifactResolverRequestBuilder |
ArtifactResolverRequest.builder() |
static ArtifactDeployerRequest.ArtifactDeployerRequestBuilder |
ArtifactDeployerRequest.builder() |
default MessageBuilder |
MessageBuilderFactory.builder(int size)
Creates a new message builder of the specified size.
|
MessageBuilder |
MessageBuilderFactory.builder(StringBuilder stringBuilder)
Creates a new message builder backed by the given string builder.
|
DependencyCollectorResult |
DependencyCollector.collect(DependencyCollectorRequest request)
Collects the transitive dependencies and builds a dependency graph.
|
default DependencyCollectorResult |
DependencyCollector.collect(Session session,
Artifact artifact)
Collects the transitive dependencies of some artifacts and builds a dependency graph.
|
default DependencyCollectorResult |
DependencyCollector.collect(Session session,
DependencyCoordinate root)
Collects the transitive dependencies of some artifacts and builds a dependency graph.
|
default DependencyCollectorResult |
DependencyCollector.collect(Session session,
Project project)
Collects the transitive dependencies of some artifacts and builds a dependency graph.
|
ArtifactResolverRequest.ArtifactResolverRequestBuilder |
ArtifactResolverRequest.ArtifactResolverRequestBuilder.coordinates(Collection<? extends ArtifactCoordinate> coordinates) |
ArtifactCoordinate |
ArtifactCoordinateFactory.create(ArtifactCoordinateFactoryRequest request)
Creates a coordinate.
|
Artifact |
ArtifactFactory.create(ArtifactFactoryRequest request)
Creates an artifact.
|
DependencyCoordinate |
DependencyCoordinateFactory.create(DependencyCoordinateFactoryRequest request)
Creates a new
DependencyCoordinate object from the request. |
default ArtifactCoordinate |
ArtifactCoordinateFactory.create(Session session,
Artifact artifact) |
default DependencyCoordinate |
DependencyCoordinateFactory.create(Session session,
ArtifactCoordinate coordinate) |
default DependencyCoordinate |
DependencyCoordinateFactory.create(Session session,
Dependency dependency) |
default DependencyCoordinate |
DependencyCoordinateFactory.create(Session session,
Dependency dependency) |
default DependencyCoordinate |
DependencyCoordinateFactory.create(Session session,
Plugin plugin) |
default DependencyCoordinate |
DependencyCoordinateFactory.create(Session session,
ReportPlugin reportPlugin) |
default ArtifactCoordinate |
ArtifactCoordinateFactory.create(Session session,
String groupId,
String artifactId,
String version,
String extension) |
default Artifact |
ArtifactFactory.create(Session session,
String groupId,
String artifactId,
String version,
String extension) |
default ArtifactCoordinate |
ArtifactCoordinateFactory.create(Session session,
String groupId,
String artifactId,
String version,
String classifier,
String extension,
String type) |
default Artifact |
ArtifactFactory.create(Session session,
String groupId,
String artifactId,
String version,
String classifier,
String extension,
String type) |
LocalRepository |
RepositoryFactory.createLocal(Path path) |
RemoteRepository |
RepositoryFactory.createRemote(Repository repository) |
RemoteRepository |
RepositoryFactory.createRemote(String id,
String url) |
DependencyCollectorRequest.DependencyCollectorRequestBuilder |
DependencyCollectorRequest.DependencyCollectorRequestBuilder.dependencies(List<DependencyCoordinate> dependencies)
Sets the direct dependencies.
|
DependencyCollectorRequest.DependencyCollectorRequestBuilder |
DependencyCollectorRequest.DependencyCollectorRequestBuilder.dependency(DependencyCoordinate dependency)
Adds the specified direct dependency.
|
MessageBuilder |
MessageBuilder.failure(Object message)
Append message content in failure style.
|
MessageBuilder |
MessageBuilder.format(String pattern,
Object... args)
Append formatted content to the buffer.
|
Optional<Artifact> |
ProjectBuilderRequest.getArtifact() |
Map<Artifact,Path> |
ArtifactResolverResult.getArtifacts() |
Collection<Artifact> |
ArtifactInstallerRequest.getArtifacts() |
Collection<Artifact> |
ArtifactDeployerRequest.getArtifacts() |
Collection<Artifact> |
ProjectManager.getAttachedArtifacts(Project project) |
Optional<ArtifactCoordinate> |
ProjectBuilderRequest.getCoordinate() |
Collection<? extends ArtifactCoordinate> |
ArtifactResolverRequest.getCoordinates() |
Collection<DependencyCoordinate> |
DependencyCollectorRequest.getDependencies() |
Optional<DependencyCollectorResult> |
ProjectBuilderResult.getDependencyResolverResult()
Gets the result of the dependency resolution for the project.
|
Collection<Exclusion> |
DependencyCoordinateFactoryRequest.getExclusions() |
Collection<DependencyCoordinate> |
DependencyCollectorRequest.getManagedDependencies() |
Optional<Path> |
ProjectBuilderRequest.getPath() |
Optional<Path> |
ArtifactManager.getPath(Artifact artifact)
Returns the path of the file previously associated to this artifact
or
Optional.empty() if no path has been associated. |
Optional<Path> |
ProjectManager.getPath(Project project)
Returns the path to the resolved file in the local repository
if the artifact has been resolved.
|
Optional<Path> |
ProjectBuilderResult.getPomFile()
Gets the POM file from which the project was built.
|
Collection<ProjectBuilderProblem> |
ProjectBuilderResult.getProblems()
Gets the problems that were encountered during the project building.
|
Optional<Project> |
ProjectBuilderResult.getProject()
Gets the project that was built.
|
String |
ProjectBuilderResult.getProjectId()
Gets the identifier of the project that could not be built.
|
RemoteRepository |
ArtifactDeployerRequest.getRepository() |
Optional<DependencyCoordinate> |
DependencyCollectorRequest.getRoot() |
Optional<Artifact> |
DependencyCollectorRequest.getRootArtifact() |
Session |
DependencyCollectorRequest.getSession() |
Session |
ProjectBuilderRequest.getSession() |
Session |
ArtifactFactoryRequest.getSession() |
Session |
ArtifactInstallerRequest.getSession() |
Session |
ArtifactResolverRequest.getSession() |
Session |
ArtifactCoordinateFactoryRequest.getSession() |
Session |
ArtifactDeployerRequest.getSession() |
Optional<ProjectBuilderSource> |
ProjectBuilderRequest.getSource() |
Optional<Toolchain> |
ToolchainManager.getToolchainFromBuildContext(Session session,
String type) |
List<Toolchain> |
ToolchainManager.getToolchains(Session session,
String type,
Map<String,String> requirements) |
List<Toolchain> |
ToolchainManager.getToolchainsForType(Session session,
String type) |
Type |
TypeRegistry.getType(String id)
Obtain the
Type from the specified id . |
DependencyCollectorRequest.DependencyCollectorRequestBuilder |
DependencyCollectorRequest.DependencyCollectorRequestBuilder.managedDependencies(List<DependencyCoordinate> managedDependencies)
Sets the dependency management to apply to transitive dependencies.
|
DependencyCollectorRequest.DependencyCollectorRequestBuilder |
DependencyCollectorRequest.DependencyCollectorRequestBuilder.managedDependency(DependencyCoordinate managedDependency)
Adds the specified managed dependency.
|
MessageBuilder |
MessageBuilder.mojo(Object message)
Append message content in mojo style.
|
MessageBuilder |
MessageBuilder.newline()
Append newline to the message buffer.
|
Version |
VersionParser.parseVersion(String version)
Parses the specified version string, for example "1.0".
|
VersionRange |
VersionParser.parseVersionRange(String range)
Parses the specified version range specification, for example "[1.0,2.0)".
|
MessageBuilder |
MessageBuilder.project(Object message)
Append message content in project style.
|
ArtifactDeployerRequest.ArtifactDeployerRequestBuilder |
ArtifactDeployerRequest.ArtifactDeployerRequestBuilder.repository(RemoteRepository repository) |
DependencyCollectorRequest.DependencyCollectorRequestBuilder |
DependencyCollectorRequest.DependencyCollectorRequestBuilder.root(DependencyCoordinate root) |
DependencyCollectorRequest.DependencyCollectorRequestBuilder |
DependencyCollectorRequest.DependencyCollectorRequestBuilder.rootArtifact(Artifact rootArtifact)
Sets the root artifact for the dependency graph.
|
DependencyCollectorRequest.DependencyCollectorRequestBuilder |
DependencyCollectorRequest.DependencyCollectorRequestBuilder.session(Session session) |
ArtifactInstallerRequest.ArtifactInstallerRequestBuilder |
ArtifactInstallerRequest.ArtifactInstallerRequestBuilder.session(Session session) |
ArtifactResolverRequest.ArtifactResolverRequestBuilder |
ArtifactResolverRequest.ArtifactResolverRequestBuilder.session(Session session) |
ArtifactDeployerRequest.ArtifactDeployerRequestBuilder |
ArtifactDeployerRequest.ArtifactDeployerRequestBuilder.session(Session session) |
MessageBuilder |
MessageBuilder.strong(Object message)
Append message content in strong style.
|
MessageBuilder |
MessageBuilder.success(Object message)
Append message content in success style.
|
DependencyCollectorRequest.DependencyCollectorRequestBuilder |
DependencyCollectorRequest.DependencyCollectorRequestBuilder.verbose(boolean verbose)
Specifies that the collection should be verbose.
|
MessageBuilder |
MessageBuilder.warning(Object message)
Append message content in warning style.
|
Modifier and Type | Method and Description |
---|---|
static DependencyCollectorRequest |
DependencyCollectorRequest.build(Session session,
Artifact root) |
default ProjectBuilderResult |
ProjectBuilder.build(Session session,
Artifact artifact)
Creates a
Project from an artifact. |
default ProjectBuilderResult |
ProjectBuilder.build(Session session,
Artifact artifact)
Creates a
Project from an artifact. |
static ProjectBuilderRequest |
ProjectBuilderRequest.build(Session session,
Artifact artifact) |
static ProjectBuilderRequest |
ProjectBuilderRequest.build(Session session,
Artifact artifact) |
static DependencyCoordinateFactoryRequest |
DependencyCoordinateFactoryRequest.build(Session session,
ArtifactCoordinate coordinate) |
static DependencyCoordinateFactoryRequest |
DependencyCoordinateFactoryRequest.build(Session session,
ArtifactCoordinate coordinate) |
default ProjectBuilderResult |
ProjectBuilder.build(Session session,
ArtifactCoordinate coordinate)
Creates a
Project from a coordinate. |
default ProjectBuilderResult |
ProjectBuilder.build(Session session,
ArtifactCoordinate coordinate)
Creates a
Project from a coordinate. |
static ProjectBuilderRequest |
ProjectBuilderRequest.build(Session session,
ArtifactCoordinate coordinate) |
static ProjectBuilderRequest |
ProjectBuilderRequest.build(Session session,
ArtifactCoordinate coordinate) |
static ArtifactCoordinateFactoryRequest |
ArtifactCoordinateFactoryRequest.build(Session session,
ArtifactCoordinate coordinate) |
static ArtifactCoordinateFactoryRequest |
ArtifactCoordinateFactoryRequest.build(Session session,
ArtifactCoordinate coordinate) |
static ArtifactResolverRequest |
ArtifactResolverRequest.build(Session session,
Collection<? extends ArtifactCoordinate> coordinates) |
static ArtifactResolverRequest |
ArtifactResolverRequest.build(Session session,
Collection<? extends ArtifactCoordinate> coordinates) |
static DependencyCoordinateFactoryRequest |
DependencyCoordinateFactoryRequest.build(Session session,
Dependency dependency) |
static DependencyCoordinateFactoryRequest |
DependencyCoordinateFactoryRequest.build(Session session,
Dependency dependency) |
static DependencyCollectorRequest |
DependencyCollectorRequest.build(Session session,
DependencyCoordinate root) |
static DependencyCollectorRequest |
DependencyCollectorRequest.build(Session session,
DependencyCoordinate root) |
default ProjectBuilderResult |
ProjectBuilder.build(Session session,
Path path)
Creates a
Project from a POM file. |
default ProjectBuilderResult |
ProjectBuilder.build(Session session,
Path path)
Creates a
Project from a POM file. |
static ProjectBuilderRequest |
ProjectBuilderRequest.build(Session session,
Path path) |
static ProjectBuilderRequest |
ProjectBuilderRequest.build(Session session,
Path path) |
static DependencyCollectorRequest |
DependencyCollectorRequest.build(Session session,
Project project) |
static DependencyCollectorRequest |
DependencyCollectorRequest.build(Session session,
Project project) |
default ProjectBuilderResult |
ProjectBuilder.build(Session session,
ProjectBuilderSource source)
Creates a
Project from a POM file. |
default ProjectBuilderResult |
ProjectBuilder.build(Session session,
ProjectBuilderSource source)
Creates a
Project from a POM file. |
static ProjectBuilderRequest |
ProjectBuilderRequest.build(Session session,
ProjectBuilderSource source) |
static ProjectBuilderRequest |
ProjectBuilderRequest.build(Session session,
ProjectBuilderSource source) |
static ArtifactDeployerRequest |
ArtifactDeployerRequest.build(Session session,
RemoteRepository repository,
Collection<Artifact> artifacts) |
static ArtifactDeployerRequest |
ArtifactDeployerRequest.build(Session session,
RemoteRepository repository,
Collection<Artifact> artifacts) |
static ArtifactDeployerRequest |
ArtifactDeployerRequest.build(Session session,
RemoteRepository repository,
Collection<Artifact> artifacts) |
static ArtifactCoordinateFactoryRequest |
ArtifactCoordinateFactoryRequest.build(Session session,
String groupId,
String artifactId,
String version,
String extension) |
static DependencyCoordinateFactoryRequest |
DependencyCoordinateFactoryRequest.build(Session session,
String groupId,
String artifactId,
String version,
String classifier,
String extension,
String type) |
static ArtifactCoordinateFactoryRequest |
ArtifactCoordinateFactoryRequest.build(Session session,
String groupId,
String artifactId,
String version,
String classifier,
String extension,
String type) |
MessageBuilder |
MessageBuilderFactory.builder(StringBuilder stringBuilder)
Creates a new message builder backed by the given string builder.
|
DependencyCollectorResult |
DependencyCollector.collect(DependencyCollectorRequest request)
Collects the transitive dependencies and builds a dependency graph.
|
default DependencyCollectorResult |
DependencyCollector.collect(Session session,
Artifact artifact)
Collects the transitive dependencies of some artifacts and builds a dependency graph.
|
default DependencyCollectorResult |
DependencyCollector.collect(Session session,
Artifact artifact)
Collects the transitive dependencies of some artifacts and builds a dependency graph.
|
default DependencyCollectorResult |
DependencyCollector.collect(Session session,
DependencyCoordinate root)
Collects the transitive dependencies of some artifacts and builds a dependency graph.
|
default DependencyCollectorResult |
DependencyCollector.collect(Session session,
DependencyCoordinate root)
Collects the transitive dependencies of some artifacts and builds a dependency graph.
|
default DependencyCollectorResult |
DependencyCollector.collect(Session session,
Project project)
Collects the transitive dependencies of some artifacts and builds a dependency graph.
|
default DependencyCollectorResult |
DependencyCollector.collect(Session session,
Project project)
Collects the transitive dependencies of some artifacts and builds a dependency graph.
|
ArtifactCoordinate |
ArtifactCoordinateFactory.create(ArtifactCoordinateFactoryRequest request)
Creates a coordinate.
|
Artifact |
ArtifactFactory.create(ArtifactFactoryRequest request)
Creates an artifact.
|
DependencyCoordinate |
DependencyCoordinateFactory.create(DependencyCoordinateFactoryRequest request)
Creates a new
DependencyCoordinate object from the request. |
default ArtifactCoordinate |
ArtifactCoordinateFactory.create(Session session,
Artifact artifact) |
default DependencyCoordinate |
DependencyCoordinateFactory.create(Session session,
ArtifactCoordinate coordinate) |
default DependencyCoordinate |
DependencyCoordinateFactory.create(Session session,
ArtifactCoordinate coordinate) |
default DependencyCoordinate |
DependencyCoordinateFactory.create(Session session,
Dependency dependency) |
default DependencyCoordinate |
DependencyCoordinateFactory.create(Session session,
Dependency dependency) |
default DependencyCoordinate |
DependencyCoordinateFactory.create(Session session,
Dependency dependency) |
default DependencyCoordinate |
DependencyCoordinateFactory.create(Session session,
Plugin plugin) |
default DependencyCoordinate |
DependencyCoordinateFactory.create(Session session,
ReportPlugin reportPlugin) |
default ArtifactCoordinate |
ArtifactCoordinateFactory.create(Session session,
String groupId,
String artifactId,
String version,
String extension) |
default Artifact |
ArtifactFactory.create(Session session,
String groupId,
String artifactId,
String version,
String extension) |
default ArtifactCoordinate |
ArtifactCoordinateFactory.create(Session session,
String groupId,
String artifactId,
String version,
String classifier,
String extension,
String type) |
default Artifact |
ArtifactFactory.create(Session session,
String groupId,
String artifactId,
String version,
String classifier,
String extension,
String type) |
LocalRepository |
RepositoryFactory.createLocal(Path path) |
RemoteRepository |
RepositoryFactory.createRemote(Repository repository) |
RemoteRepository |
RepositoryFactory.createRemote(String id,
String url) |
RemoteRepository |
RepositoryFactory.createRemote(String id,
String url) |
void |
ArtifactDeployer.deploy(ArtifactDeployerRequest request) |
default void |
ArtifactDeployer.deploy(Session session,
RemoteRepository repository,
Collection<Artifact> artifacts) |
default void |
ArtifactDeployer.deploy(Session session,
RemoteRepository repository,
Collection<Artifact> artifacts) |
default void |
ArtifactDeployer.deploy(Session session,
RemoteRepository repository,
Collection<Artifact> artifacts) |
Optional<Path> |
ArtifactManager.getPath(Artifact artifact)
Returns the path of the file previously associated to this artifact
or
Optional.empty() if no path has been associated. |
Optional<Toolchain> |
ToolchainManager.getToolchainFromBuildContext(Session session,
String type) |
List<Toolchain> |
ToolchainManager.getToolchains(Session session,
String type,
Map<String,String> requirements) |
List<Toolchain> |
ToolchainManager.getToolchainsForType(Session session,
String type) |
Type |
TypeRegistry.getType(String id)
Obtain the
Type from the specified id . |
boolean |
VersionParser.isSnapshot(String version)
Checks whether a given artifact version is considered a
SNAPSHOT or not. |
Version |
VersionParser.parseVersion(String version)
Parses the specified version string, for example "1.0".
|
VersionRange |
VersionParser.parseVersionRange(String range)
Parses the specified version range specification, for example "[1.0,2.0)".
|
DependencyCollectorRequest.DependencyCollectorRequestBuilder |
DependencyCollectorRequest.DependencyCollectorRequestBuilder.root(DependencyCoordinate root) |
DependencyCollectorRequest.DependencyCollectorRequestBuilder |
DependencyCollectorRequest.DependencyCollectorRequestBuilder.session(Session session) |
ArtifactInstallerRequest.ArtifactInstallerRequestBuilder |
ArtifactInstallerRequest.ArtifactInstallerRequestBuilder.session(Session session) |
void |
ArtifactManager.setPath(Artifact artifact,
Path path)
Associates the given file path to the artifact.
|
void |
ToolchainManager.storeToolchainToBuildContext(Session session,
Toolchain toolchain) |
Modifier and Type | Method and Description |
---|---|
static XmlReaderRequest.XmlReaderRequestBuilder |
XmlReaderRequest.builder() |
default T |
XmlFactory.read(InputStream input) |
default T |
XmlFactory.read(InputStream input,
boolean strict) |
default T |
XmlFactory.read(Path path) |
default T |
XmlFactory.read(Path path,
boolean strict) |
default T |
XmlFactory.read(Reader reader) |
default T |
XmlFactory.read(Reader reader,
boolean strict) |
T |
XmlFactory.read(XmlReaderRequest request) |
Modifier and Type | Method and Description |
---|---|
default T |
XmlFactory.fromXmlString(String xml)
Simply parse the given xml string.
|
default T |
XmlFactory.read(InputStream input) |
default T |
XmlFactory.read(InputStream input,
boolean strict) |
default T |
XmlFactory.read(Path path) |
default T |
XmlFactory.read(Path path,
boolean strict) |
default T |
XmlFactory.read(Reader reader) |
default T |
XmlFactory.read(Reader reader,
boolean strict) |
T |
XmlFactory.read(XmlReaderRequest request) |
default String |
XmlFactory.toXmlString(T content)
Simply converts the given content to an xml string.
|
default void |
XmlFactory.write(T content,
OutputStream outputStream) |
default void |
XmlFactory.write(T content,
OutputStream outputStream) |
default void |
XmlFactory.write(T content,
Path path) |
default void |
XmlFactory.write(T content,
Path path) |
default void |
XmlFactory.write(T content,
Writer writer) |
default void |
XmlFactory.write(T content,
Writer writer) |
void |
XmlFactory.write(XmlWriterRequest<T> request) |
Modifier and Type | Method and Description |
---|---|
Profile.Builder |
Profile.Builder.activation(Activation activation) |
Proxy.Builder |
Proxy.Builder.active(boolean active) |
Activation.Builder |
Activation.Builder.activeByDefault(boolean activeByDefault) |
Settings.Builder |
Settings.Builder.activeProfiles(Collection<String> activeProfiles) |
ActivationOS.Builder |
ActivationOS.Builder.arch(String arch) |
Mirror.Builder |
Mirror.Builder.blocked(boolean blocked) |
ActivationFile |
ActivationFile.Builder.build() |
Activation |
Activation.Builder.build() |
Repository |
Repository.Builder.build() |
ActivationOS |
ActivationOS.Builder.build() |
Server |
Server.Builder.build() |
TrackableBase |
TrackableBase.Builder.build() |
IdentifiableBase |
IdentifiableBase.Builder.build() |
Settings |
Settings.Builder.build() |
RepositoryPolicy |
RepositoryPolicy.Builder.build() |
Profile |
Profile.Builder.build() |
Mirror |
Mirror.Builder.build() |
Proxy |
Proxy.Builder.build() |
ActivationProperty |
ActivationProperty.Builder.build() |
RepositoryBase |
RepositoryBase.Builder.build() |
RepositoryPolicy.Builder |
RepositoryPolicy.Builder.checksumPolicy(String checksumPolicy) |
Server.Builder |
Server.Builder.configuration(Dom configuration) |
Server.Builder |
Server.Builder.directoryPermissions(String directoryPermissions) |
RepositoryPolicy.Builder |
RepositoryPolicy.Builder.enabled(boolean enabled) |
ActivationFile.Builder |
ActivationFile.Builder.exists(String exists) |
ActivationOS.Builder |
ActivationOS.Builder.family(String family) |
Activation.Builder |
Activation.Builder.file(ActivationFile file) |
Server.Builder |
Server.Builder.filePermissions(String filePermissions) |
List<String> |
Settings.getActiveProfiles()
List of manually-activated build profiles, specified in the order in which
they should be applied.
|
List<Mirror> |
Settings.getMirrors()
Configuration of download mirrors for repositories.
|
List<String> |
Settings.getPluginGroups()
List of groupIds to search for a plugin when that plugin
groupId is not explicitly provided.
|
List<Repository> |
Profile.getPluginRepositories()
The lists of the remote repositories for discovering plugins.
|
List<Profile> |
Settings.getProfiles()
Configuration of build profiles for adjusting the build
according to environmental parameters.
|
Map<String,String> |
Profile.getProperties()
Extended configuration specific to this profile goes here.
|
List<Proxy> |
Settings.getProxies()
Configuration for different proxy profiles.
|
List<Repository> |
Profile.getRepositories()
The lists of the remote repositories.
|
List<Server> |
Settings.getServers()
Configuration of server-specific settings, mainly authentication
method.
|
Proxy.Builder |
Proxy.Builder.host(String host) |
Repository.Builder |
Repository.Builder.id(String id) |
Server.Builder |
Server.Builder.id(String id) |
IdentifiableBase.Builder |
IdentifiableBase.Builder.id(String id) |
Profile.Builder |
Profile.Builder.id(String id) |
Mirror.Builder |
Mirror.Builder.id(String id) |
Proxy.Builder |
Proxy.Builder.id(String id) |
RepositoryBase.Builder |
RepositoryBase.Builder.id(String id) |
Settings.Builder |
Settings.Builder.interactiveMode(boolean interactiveMode) |
Activation.Builder |
Activation.Builder.jdk(String jdk) |
Repository.Builder |
Repository.Builder.layout(String layout) |
Mirror.Builder |
Mirror.Builder.layout(String layout) |
RepositoryBase.Builder |
RepositoryBase.Builder.layout(String layout) |
Settings.Builder |
Settings.Builder.localRepository(String localRepository) |
Mirror.Builder |
Mirror.Builder.mirrorOf(String mirrorOf) |
Mirror.Builder |
Mirror.Builder.mirrorOfLayouts(String mirrorOfLayouts) |
Settings.Builder |
Settings.Builder.mirrors(Collection<Mirror> mirrors) |
ActivationFile.Builder |
ActivationFile.Builder.missing(String missing) |
Settings.Builder |
Settings.Builder.modelEncoding(String modelEncoding) |
Repository.Builder |
Repository.Builder.name(String name) |
ActivationOS.Builder |
ActivationOS.Builder.name(String name) |
Mirror.Builder |
Mirror.Builder.name(String name) |
ActivationProperty.Builder |
ActivationProperty.Builder.name(String name) |
RepositoryBase.Builder |
RepositoryBase.Builder.name(String name) |
static ActivationFile.Builder |
ActivationFile.newBuilder()
Creates a new
ActivationFile builder instance. |
static Activation.Builder |
Activation.newBuilder()
Creates a new
Activation builder instance. |
static Repository.Builder |
Repository.newBuilder()
Creates a new
Repository builder instance. |
static ActivationOS.Builder |
ActivationOS.newBuilder()
Creates a new
ActivationOS builder instance. |
static Server.Builder |
Server.newBuilder()
Creates a new
Server builder instance. |
static TrackableBase.Builder |
TrackableBase.newBuilder()
Creates a new
TrackableBase builder instance. |
static IdentifiableBase.Builder |
IdentifiableBase.newBuilder()
Creates a new
IdentifiableBase builder instance. |
static Settings.Builder |
Settings.newBuilder()
Creates a new
Settings builder instance. |
static RepositoryPolicy.Builder |
RepositoryPolicy.newBuilder()
Creates a new
RepositoryPolicy builder instance. |
static Profile.Builder |
Profile.newBuilder()
Creates a new
Profile builder instance. |
static Mirror.Builder |
Mirror.newBuilder()
Creates a new
Mirror builder instance. |
static Proxy.Builder |
Proxy.newBuilder()
Creates a new
Proxy builder instance. |
static ActivationProperty.Builder |
ActivationProperty.newBuilder()
Creates a new
ActivationProperty builder instance. |
static RepositoryBase.Builder |
RepositoryBase.newBuilder()
Creates a new
RepositoryBase builder instance. |
static Activation.Builder |
Activation.newBuilder(Activation from)
Creates a new
Activation builder instance using the specified object as a basis. |
static Activation.Builder |
Activation.newBuilder(Activation from,
boolean forceCopy)
Creates a new
Activation builder instance using the specified object as a basis. |
static ActivationFile.Builder |
ActivationFile.newBuilder(ActivationFile from)
Creates a new
ActivationFile builder instance using the specified object as a basis. |
static ActivationFile.Builder |
ActivationFile.newBuilder(ActivationFile from,
boolean forceCopy)
Creates a new
ActivationFile builder instance using the specified object as a basis. |
static ActivationOS.Builder |
ActivationOS.newBuilder(ActivationOS from)
Creates a new
ActivationOS builder instance using the specified object as a basis. |
static ActivationOS.Builder |
ActivationOS.newBuilder(ActivationOS from,
boolean forceCopy)
Creates a new
ActivationOS builder instance using the specified object as a basis. |
static ActivationProperty.Builder |
ActivationProperty.newBuilder(ActivationProperty from)
Creates a new
ActivationProperty builder instance using the specified object as a basis. |
static ActivationProperty.Builder |
ActivationProperty.newBuilder(ActivationProperty from,
boolean forceCopy)
Creates a new
ActivationProperty builder instance using the specified object as a basis. |
static ActivationFile.Builder |
ActivationFile.newBuilder(boolean withDefaults)
Creates a new
ActivationFile builder instance using default values or not. |
static Activation.Builder |
Activation.newBuilder(boolean withDefaults)
Creates a new
Activation builder instance using default values or not. |
static Repository.Builder |
Repository.newBuilder(boolean withDefaults)
Creates a new
Repository builder instance using default values or not. |
static ActivationOS.Builder |
ActivationOS.newBuilder(boolean withDefaults)
Creates a new
ActivationOS builder instance using default values or not. |
static Server.Builder |
Server.newBuilder(boolean withDefaults)
Creates a new
Server builder instance using default values or not. |
static TrackableBase.Builder |
TrackableBase.newBuilder(boolean withDefaults)
Creates a new
TrackableBase builder instance using default values or not. |
static IdentifiableBase.Builder |
IdentifiableBase.newBuilder(boolean withDefaults)
Creates a new
IdentifiableBase builder instance using default values or not. |
static Settings.Builder |
Settings.newBuilder(boolean withDefaults)
Creates a new
Settings builder instance using default values or not. |
static RepositoryPolicy.Builder |
RepositoryPolicy.newBuilder(boolean withDefaults)
Creates a new
RepositoryPolicy builder instance using default values or not. |
static Profile.Builder |
Profile.newBuilder(boolean withDefaults)
Creates a new
Profile builder instance using default values or not. |
static Mirror.Builder |
Mirror.newBuilder(boolean withDefaults)
Creates a new
Mirror builder instance using default values or not. |
static Proxy.Builder |
Proxy.newBuilder(boolean withDefaults)
Creates a new
Proxy builder instance using default values or not. |
static ActivationProperty.Builder |
ActivationProperty.newBuilder(boolean withDefaults)
Creates a new
ActivationProperty builder instance using default values or not. |
static RepositoryBase.Builder |
RepositoryBase.newBuilder(boolean withDefaults)
Creates a new
RepositoryBase builder instance using default values or not. |
static IdentifiableBase.Builder |
IdentifiableBase.newBuilder(IdentifiableBase from)
Creates a new
IdentifiableBase builder instance using the specified object as a basis. |
static IdentifiableBase.Builder |
IdentifiableBase.newBuilder(IdentifiableBase from,
boolean forceCopy)
Creates a new
IdentifiableBase builder instance using the specified object as a basis. |
static Mirror.Builder |
Mirror.newBuilder(Mirror from)
Creates a new
Mirror builder instance using the specified object as a basis. |
static Mirror.Builder |
Mirror.newBuilder(Mirror from,
boolean forceCopy)
Creates a new
Mirror builder instance using the specified object as a basis. |
static Profile.Builder |
Profile.newBuilder(Profile from)
Creates a new
Profile builder instance using the specified object as a basis. |
static Profile.Builder |
Profile.newBuilder(Profile from,
boolean forceCopy)
Creates a new
Profile builder instance using the specified object as a basis. |
static Proxy.Builder |
Proxy.newBuilder(Proxy from)
Creates a new
Proxy builder instance using the specified object as a basis. |
static Proxy.Builder |
Proxy.newBuilder(Proxy from,
boolean forceCopy)
Creates a new
Proxy builder instance using the specified object as a basis. |
static Repository.Builder |
Repository.newBuilder(Repository from)
Creates a new
Repository builder instance using the specified object as a basis. |
static RepositoryBase.Builder |
RepositoryBase.newBuilder(RepositoryBase from)
Creates a new
RepositoryBase builder instance using the specified object as a basis. |
static RepositoryBase.Builder |
RepositoryBase.newBuilder(RepositoryBase from,
boolean forceCopy)
Creates a new
RepositoryBase builder instance using the specified object as a basis. |
static Repository.Builder |
Repository.newBuilder(Repository from,
boolean forceCopy)
Creates a new
Repository builder instance using the specified object as a basis. |
static RepositoryPolicy.Builder |
RepositoryPolicy.newBuilder(RepositoryPolicy from)
Creates a new
RepositoryPolicy builder instance using the specified object as a basis. |
static RepositoryPolicy.Builder |
RepositoryPolicy.newBuilder(RepositoryPolicy from,
boolean forceCopy)
Creates a new
RepositoryPolicy builder instance using the specified object as a basis. |
static Server.Builder |
Server.newBuilder(Server from)
Creates a new
Server builder instance using the specified object as a basis. |
static Server.Builder |
Server.newBuilder(Server from,
boolean forceCopy)
Creates a new
Server builder instance using the specified object as a basis. |
static Settings.Builder |
Settings.newBuilder(Settings from)
Creates a new
Settings builder instance using the specified object as a basis. |
static Settings.Builder |
Settings.newBuilder(Settings from,
boolean forceCopy)
Creates a new
Settings builder instance using the specified object as a basis. |
static TrackableBase.Builder |
TrackableBase.newBuilder(TrackableBase from)
Creates a new
TrackableBase builder instance using the specified object as a basis. |
static TrackableBase.Builder |
TrackableBase.newBuilder(TrackableBase from,
boolean forceCopy)
Creates a new
TrackableBase builder instance using the specified object as a basis. |
static ActivationFile |
ActivationFile.newInstance()
Creates a new
ActivationFile instance. |
static Activation |
Activation.newInstance()
Creates a new
Activation instance. |
static Repository |
Repository.newInstance()
Creates a new
Repository instance. |
static ActivationOS |
ActivationOS.newInstance()
Creates a new
ActivationOS instance. |
static Server |
Server.newInstance()
Creates a new
Server instance. |
static TrackableBase |
TrackableBase.newInstance()
Creates a new
TrackableBase instance. |
static IdentifiableBase |
IdentifiableBase.newInstance()
Creates a new
IdentifiableBase instance. |
static Settings |
Settings.newInstance()
Creates a new
Settings instance. |
static RepositoryPolicy |
RepositoryPolicy.newInstance()
Creates a new
RepositoryPolicy instance. |
static Profile |
Profile.newInstance()
Creates a new
Profile instance. |
static Mirror |
Mirror.newInstance()
Creates a new
Mirror instance. |
static Proxy |
Proxy.newInstance()
Creates a new
Proxy instance. |
static ActivationProperty |
ActivationProperty.newInstance()
Creates a new
ActivationProperty instance. |
static RepositoryBase |
RepositoryBase.newInstance()
Creates a new
RepositoryBase instance. |
static ActivationFile |
ActivationFile.newInstance(boolean withDefaults)
Creates a new
ActivationFile instance using default values or not. |
static Activation |
Activation.newInstance(boolean withDefaults)
Creates a new
Activation instance using default values or not. |
static Repository |
Repository.newInstance(boolean withDefaults)
Creates a new
Repository instance using default values or not. |
static ActivationOS |
ActivationOS.newInstance(boolean withDefaults)
Creates a new
ActivationOS instance using default values or not. |
static Server |
Server.newInstance(boolean withDefaults)
Creates a new
Server instance using default values or not. |
static TrackableBase |
TrackableBase.newInstance(boolean withDefaults)
Creates a new
TrackableBase instance using default values or not. |
static IdentifiableBase |
IdentifiableBase.newInstance(boolean withDefaults)
Creates a new
IdentifiableBase instance using default values or not. |
static Settings |
Settings.newInstance(boolean withDefaults)
Creates a new
Settings instance using default values or not. |
static RepositoryPolicy |
RepositoryPolicy.newInstance(boolean withDefaults)
Creates a new
RepositoryPolicy instance using default values or not. |
static Profile |
Profile.newInstance(boolean withDefaults)
Creates a new
Profile instance using default values or not. |
static Mirror |
Mirror.newInstance(boolean withDefaults)
Creates a new
Mirror instance using default values or not. |
static Proxy |
Proxy.newInstance(boolean withDefaults)
Creates a new
Proxy instance using default values or not. |
static ActivationProperty |
ActivationProperty.newInstance(boolean withDefaults)
Creates a new
ActivationProperty instance using default values or not. |
static RepositoryBase |
RepositoryBase.newInstance(boolean withDefaults)
Creates a new
RepositoryBase instance using default values or not. |
Proxy.Builder |
Proxy.Builder.nonProxyHosts(String nonProxyHosts) |
Settings.Builder |
Settings.Builder.offline(boolean offline) |
Activation.Builder |
Activation.Builder.os(ActivationOS os) |
Server.Builder |
Server.Builder.passphrase(String passphrase) |
Server.Builder |
Server.Builder.password(String password) |
Proxy.Builder |
Proxy.Builder.password(String password) |
Settings.Builder |
Settings.Builder.pluginGroups(Collection<String> pluginGroups) |
Profile.Builder |
Profile.Builder.pluginRepositories(Collection<Repository> pluginRepositories) |
Proxy.Builder |
Proxy.Builder.port(int port) |
Server.Builder |
Server.Builder.privateKey(String privateKey) |
Settings.Builder |
Settings.Builder.profiles(Collection<Profile> profiles) |
Profile.Builder |
Profile.Builder.properties(Map<String,String> properties) |
Activation.Builder |
Activation.Builder.property(ActivationProperty property) |
Proxy.Builder |
Proxy.Builder.protocol(String protocol) |
Settings.Builder |
Settings.Builder.proxies(Collection<Proxy> proxies) |
Repository.Builder |
Repository.Builder.releases(RepositoryPolicy releases) |
Profile.Builder |
Profile.Builder.repositories(Collection<Repository> repositories) |
Settings.Builder |
Settings.Builder.servers(Collection<Server> servers) |
Repository.Builder |
Repository.Builder.snapshots(RepositoryPolicy snapshots) |
RepositoryPolicy.Builder |
RepositoryPolicy.Builder.updatePolicy(String updatePolicy) |
Repository.Builder |
Repository.Builder.url(String url) |
Mirror.Builder |
Mirror.Builder.url(String url) |
RepositoryBase.Builder |
RepositoryBase.Builder.url(String url) |
Settings.Builder |
Settings.Builder.usePluginRegistry(boolean usePluginRegistry) |
Server.Builder |
Server.Builder.username(String username) |
Proxy.Builder |
Proxy.Builder.username(String username) |
ActivationProperty.Builder |
ActivationProperty.Builder.value(String value) |
ActivationOS.Builder |
ActivationOS.Builder.version(String version) |
ActivationFile.Builder |
ActivationFile.with()
Creates a new builder with this object as the basis.
|
Activation.Builder |
Activation.with()
Creates a new builder with this object as the basis.
|
Repository.Builder |
Repository.with()
Creates a new builder with this object as the basis.
|
ActivationOS.Builder |
ActivationOS.with()
Creates a new builder with this object as the basis.
|
Server.Builder |
Server.with()
Creates a new builder with this object as the basis.
|
TrackableBase.Builder |
TrackableBase.with()
Creates a new builder with this object as the basis.
|
IdentifiableBase.Builder |
IdentifiableBase.with()
Creates a new builder with this object as the basis.
|
Settings.Builder |
Settings.with()
Creates a new builder with this object as the basis.
|
RepositoryPolicy.Builder |
RepositoryPolicy.with()
Creates a new builder with this object as the basis.
|
Profile.Builder |
Profile.with()
Creates a new builder with this object as the basis.
|
Mirror.Builder |
Mirror.with()
Creates a new builder with this object as the basis.
|
Proxy.Builder |
Proxy.with()
Creates a new builder with this object as the basis.
|
ActivationProperty.Builder |
ActivationProperty.with()
Creates a new builder with this object as the basis.
|
RepositoryBase.Builder |
RepositoryBase.with()
Creates a new builder with this object as the basis.
|
Profile |
Profile.withActivation(Activation activation)
Creates a new
Profile instance using the specified activation. |
Proxy |
Proxy.withActive(boolean active)
Creates a new
Proxy instance using the specified active. |
Activation |
Activation.withActiveByDefault(boolean activeByDefault)
Creates a new
Activation instance using the specified activeByDefault. |
Settings |
Settings.withActiveProfiles(Collection<String> activeProfiles)
Creates a new
Settings instance using the specified activeProfiles. |
ActivationOS |
ActivationOS.withArch(String arch)
Creates a new
ActivationOS instance using the specified arch. |
Mirror |
Mirror.withBlocked(boolean blocked)
Creates a new
Mirror instance using the specified blocked. |
RepositoryPolicy |
RepositoryPolicy.withChecksumPolicy(String checksumPolicy)
Creates a new
RepositoryPolicy instance using the specified checksumPolicy. |
Server |
Server.withConfiguration(Dom configuration)
Creates a new
Server instance using the specified configuration. |
Server |
Server.withDirectoryPermissions(String directoryPermissions)
Creates a new
Server instance using the specified directoryPermissions. |
RepositoryPolicy |
RepositoryPolicy.withEnabled(boolean enabled)
Creates a new
RepositoryPolicy instance using the specified enabled. |
ActivationFile |
ActivationFile.withExists(String exists)
Creates a new
ActivationFile instance using the specified exists. |
ActivationOS |
ActivationOS.withFamily(String family)
Creates a new
ActivationOS instance using the specified family. |
Activation |
Activation.withFile(ActivationFile file)
Creates a new
Activation instance using the specified file. |
Server |
Server.withFilePermissions(String filePermissions)
Creates a new
Server instance using the specified filePermissions. |
Proxy |
Proxy.withHost(String host)
Creates a new
Proxy instance using the specified host. |
Repository |
Repository.withId(String id)
Creates a new
Repository instance using the specified id. |
Server |
Server.withId(String id)
Creates a new
Server instance using the specified id. |
IdentifiableBase |
IdentifiableBase.withId(String id)
Creates a new
IdentifiableBase instance using the specified id. |
Profile |
Profile.withId(String id)
Creates a new
Profile instance using the specified id. |
Mirror |
Mirror.withId(String id)
Creates a new
Mirror instance using the specified id. |
Proxy |
Proxy.withId(String id)
Creates a new
Proxy instance using the specified id. |
RepositoryBase |
RepositoryBase.withId(String id)
Creates a new
RepositoryBase instance using the specified id. |
Settings |
Settings.withInteractiveMode(boolean interactiveMode)
Creates a new
Settings instance using the specified interactiveMode. |
Activation |
Activation.withJdk(String jdk)
Creates a new
Activation instance using the specified jdk. |
Repository |
Repository.withLayout(String layout)
Creates a new
Repository instance using the specified layout. |
Mirror |
Mirror.withLayout(String layout)
Creates a new
Mirror instance using the specified layout. |
RepositoryBase |
RepositoryBase.withLayout(String layout)
Creates a new
RepositoryBase instance using the specified layout. |
Settings |
Settings.withLocalRepository(String localRepository)
Creates a new
Settings instance using the specified localRepository. |
Mirror |
Mirror.withMirrorOf(String mirrorOf)
Creates a new
Mirror instance using the specified mirrorOf. |
Mirror |
Mirror.withMirrorOfLayouts(String mirrorOfLayouts)
Creates a new
Mirror instance using the specified mirrorOfLayouts. |
Settings |
Settings.withMirrors(Collection<Mirror> mirrors)
Creates a new
Settings instance using the specified mirrors. |
ActivationFile |
ActivationFile.withMissing(String missing)
Creates a new
ActivationFile instance using the specified missing. |
Repository |
Repository.withName(String name)
Creates a new
Repository instance using the specified name. |
ActivationOS |
ActivationOS.withName(String name)
Creates a new
ActivationOS instance using the specified name. |
Mirror |
Mirror.withName(String name)
Creates a new
Mirror instance using the specified name. |
ActivationProperty |
ActivationProperty.withName(String name)
Creates a new
ActivationProperty instance using the specified name. |
RepositoryBase |
RepositoryBase.withName(String name)
Creates a new
RepositoryBase instance using the specified name. |
Proxy |
Proxy.withNonProxyHosts(String nonProxyHosts)
Creates a new
Proxy instance using the specified nonProxyHosts. |
Settings |
Settings.withOffline(boolean offline)
Creates a new
Settings instance using the specified offline. |
Activation |
Activation.withOs(ActivationOS os)
Creates a new
Activation instance using the specified os. |
Server |
Server.withPassphrase(String passphrase)
Creates a new
Server instance using the specified passphrase. |
Server |
Server.withPassword(String password)
Creates a new
Server instance using the specified password. |
Proxy |
Proxy.withPassword(String password)
Creates a new
Proxy instance using the specified password. |
Settings |
Settings.withPluginGroups(Collection<String> pluginGroups)
Creates a new
Settings instance using the specified pluginGroups. |
Profile |
Profile.withPluginRepositories(Collection<Repository> pluginRepositories)
Creates a new
Profile instance using the specified pluginRepositories. |
Proxy |
Proxy.withPort(int port)
Creates a new
Proxy instance using the specified port. |
Server |
Server.withPrivateKey(String privateKey)
Creates a new
Server instance using the specified privateKey. |
Settings |
Settings.withProfiles(Collection<Profile> profiles)
Creates a new
Settings instance using the specified profiles. |
Profile |
Profile.withProperties(Map<String,String> properties)
Creates a new
Profile instance using the specified properties. |
Activation |
Activation.withProperty(ActivationProperty property)
Creates a new
Activation instance using the specified property. |
Proxy |
Proxy.withProtocol(String protocol)
Creates a new
Proxy instance using the specified protocol. |
Settings |
Settings.withProxies(Collection<Proxy> proxies)
Creates a new
Settings instance using the specified proxies. |
Repository |
Repository.withReleases(RepositoryPolicy releases)
Creates a new
Repository instance using the specified releases. |
Profile |
Profile.withRepositories(Collection<Repository> repositories)
Creates a new
Profile instance using the specified repositories. |
Settings |
Settings.withServers(Collection<Server> servers)
Creates a new
Settings instance using the specified servers. |
Repository |
Repository.withSnapshots(RepositoryPolicy snapshots)
Creates a new
Repository instance using the specified snapshots. |
RepositoryPolicy |
RepositoryPolicy.withUpdatePolicy(String updatePolicy)
Creates a new
RepositoryPolicy instance using the specified updatePolicy. |
Repository |
Repository.withUrl(String url)
Creates a new
Repository instance using the specified url. |
Mirror |
Mirror.withUrl(String url)
Creates a new
Mirror instance using the specified url. |
RepositoryBase |
RepositoryBase.withUrl(String url)
Creates a new
RepositoryBase instance using the specified url. |
Settings |
Settings.withUsePluginRegistry(boolean usePluginRegistry)
Creates a new
Settings instance using the specified usePluginRegistry. |
Server |
Server.withUsername(String username)
Creates a new
Server instance using the specified username. |
Proxy |
Proxy.withUsername(String username)
Creates a new
Proxy instance using the specified username. |
ActivationProperty |
ActivationProperty.withValue(String value)
Creates a new
ActivationProperty instance using the specified value. |
ActivationOS |
ActivationOS.withVersion(String version)
Creates a new
ActivationOS instance using the specified version. |
Modifier and Type | Method and Description |
---|---|
TrackableBase |
TrackableBase.Builder.build() |
ToolchainModel |
ToolchainModel.Builder.build() |
PersistedToolchains |
PersistedToolchains.Builder.build() |
ToolchainModel.Builder |
ToolchainModel.Builder.configuration(Dom configuration) |
Map<String,String> |
ToolchainModel.getProvides()
Toolchain identification information, which will be matched against project requirements.
|
List<ToolchainModel> |
PersistedToolchains.getToolchains()
The toolchain instance definition.
|
PersistedToolchains.Builder |
PersistedToolchains.Builder.modelEncoding(String modelEncoding) |
static TrackableBase.Builder |
TrackableBase.newBuilder()
Creates a new
TrackableBase builder instance. |
static ToolchainModel.Builder |
ToolchainModel.newBuilder()
Creates a new
ToolchainModel builder instance. |
static PersistedToolchains.Builder |
PersistedToolchains.newBuilder()
Creates a new
PersistedToolchains builder instance. |
static TrackableBase.Builder |
TrackableBase.newBuilder(boolean withDefaults)
Creates a new
TrackableBase builder instance using default values or not. |
static ToolchainModel.Builder |
ToolchainModel.newBuilder(boolean withDefaults)
Creates a new
ToolchainModel builder instance using default values or not. |
static PersistedToolchains.Builder |
PersistedToolchains.newBuilder(boolean withDefaults)
Creates a new
PersistedToolchains builder instance using default values or not. |
static PersistedToolchains.Builder |
PersistedToolchains.newBuilder(PersistedToolchains from)
Creates a new
PersistedToolchains builder instance using the specified object as a basis. |
static PersistedToolchains.Builder |
PersistedToolchains.newBuilder(PersistedToolchains from,
boolean forceCopy)
Creates a new
PersistedToolchains builder instance using the specified object as a basis. |
static ToolchainModel.Builder |
ToolchainModel.newBuilder(ToolchainModel from)
Creates a new
ToolchainModel builder instance using the specified object as a basis. |
static ToolchainModel.Builder |
ToolchainModel.newBuilder(ToolchainModel from,
boolean forceCopy)
Creates a new
ToolchainModel builder instance using the specified object as a basis. |
static TrackableBase.Builder |
TrackableBase.newBuilder(TrackableBase from)
Creates a new
TrackableBase builder instance using the specified object as a basis. |
static TrackableBase.Builder |
TrackableBase.newBuilder(TrackableBase from,
boolean forceCopy)
Creates a new
TrackableBase builder instance using the specified object as a basis. |
static TrackableBase |
TrackableBase.newInstance()
Creates a new
TrackableBase instance. |
static ToolchainModel |
ToolchainModel.newInstance()
Creates a new
ToolchainModel instance. |
static PersistedToolchains |
PersistedToolchains.newInstance()
Creates a new
PersistedToolchains instance. |
static TrackableBase |
TrackableBase.newInstance(boolean withDefaults)
Creates a new
TrackableBase instance using default values or not. |
static ToolchainModel |
ToolchainModel.newInstance(boolean withDefaults)
Creates a new
ToolchainModel instance using default values or not. |
static PersistedToolchains |
PersistedToolchains.newInstance(boolean withDefaults)
Creates a new
PersistedToolchains instance using default values or not. |
ToolchainModel.Builder |
ToolchainModel.Builder.provides(Map<String,String> provides) |
PersistedToolchains.Builder |
PersistedToolchains.Builder.toolchains(Collection<ToolchainModel> toolchains) |
ToolchainModel.Builder |
ToolchainModel.Builder.type(String type) |
TrackableBase.Builder |
TrackableBase.with()
Creates a new builder with this object as the basis.
|
ToolchainModel.Builder |
ToolchainModel.with()
Creates a new builder with this object as the basis.
|
PersistedToolchains.Builder |
PersistedToolchains.with()
Creates a new builder with this object as the basis.
|
ToolchainModel |
ToolchainModel.withConfiguration(Dom configuration)
Creates a new
ToolchainModel instance using the specified configuration. |
ToolchainModel |
ToolchainModel.withProvides(Map<String,String> provides)
Creates a new
ToolchainModel instance using the specified provides. |
PersistedToolchains |
PersistedToolchains.withToolchains(Collection<ToolchainModel> toolchains)
Creates a new
PersistedToolchains instance using the specified toolchains. |
ToolchainModel |
ToolchainModel.withType(String type)
Creates a new
ToolchainModel instance using the specified type. |
Modifier and Type | Method and Description |
---|---|
Map<String,String> |
Dom.getAttributes() |
List<Dom> |
Dom.getChildren() |
String |
Dom.getName() |
Modifier and Type | Method and Description |
---|---|
String |
Dom.getAttribute(String name) |
Modifier and Type | Field and Description |
---|---|
protected org.eclipse.aether.graph.DependencyNode |
DefaultNode.node |
protected AbstractSession |
DefaultNode.session |
Modifier and Type | Method and Description |
---|---|
MessageBuilder |
DefaultMessageBuilder.a(char[] chars) |
MessageBuilder |
DefaultMessageBuilder.a(char[] chars,
int i,
int i1) |
MessageBuilder |
DefaultMessageBuilder.a(CharSequence charSequence) |
MessageBuilder |
DefaultMessageBuilder.a(CharSequence charSequence,
int i,
int i1) |
MessageBuilder |
DefaultMessageBuilder.a(Object o) |
String |
DefaultMessageBuilder.build() |
ProjectBuilderResult |
DefaultProjectBuilder.build(ProjectBuilderRequest request) |
MessageBuilder |
DefaultMessageBuilderFactory.builder() |
MessageBuilder |
DefaultMessageBuilderFactory.builder(StringBuilder stringBuilder) |
DependencyCollectorResult |
DefaultDependencyCollector.collect(DependencyCollectorRequest request) |
Node |
AbstractSession.collectDependencies(Artifact artifact)
Shortcut for
getService(DependencyCollector.class).collect(...) |
Node |
AbstractSession.collectDependencies(DependencyCoordinate dependency)
Shortcut for
getService(DependencyCollector.class).collect(...) |
Node |
AbstractSession.collectDependencies(Project project)
Shortcut for
getService(DependencyCollector.class).collect(...) |
DependencyCoordinate |
DefaultDependencyCoordinateFactory.create(DependencyCoordinateFactoryRequest request) |
DependencyCoordinate |
AbstractSession.createDependencyCoordinate(ArtifactCoordinate coordinate)
Shortcut for
getService(DependencyFactory.class).create(...) |
DependencyCoordinate |
AbstractSession.createDependencyCoordinate(Dependency dependency)
Shortcut for
getService(DependencyFactory.class).create(...) |
RemoteRepository |
AbstractSession.createRemoteRepository(Repository repository)
Shortcut for
getService(RepositoryFactory.class).createRemote(...) |
RemoteRepository |
AbstractSession.createRemoteRepository(String id,
String url)
Shortcut for
getService(RepositoryFactory.class).createRemote(...) |
MessageBuilder |
DefaultMessageBuilder.failure(Object o) |
MessageBuilder |
DefaultMessageBuilder.format(String s,
Object... objects) |
Artifact |
DefaultProject.getArtifact() |
Artifact |
AbstractSession.getArtifact(org.eclipse.aether.artifact.Artifact artifact) |
String |
DefaultArtifactCoordinate.getArtifactId() |
String |
DefaultArtifact.getArtifactId() |
String |
DefaultProject.getArtifactId() |
Optional<Path> |
AbstractSession.getArtifactPath(Artifact artifact)
Shortcut for
getService(ArtifactManager.class).getPath(...) |
Collection<Artifact> |
DefaultProjectManager.getAttachedArtifacts(Project project) |
String |
DefaultArtifactCoordinate.getClassifier() |
String |
DefaultArtifact.getClassifier() |
SessionData |
DefaultSession.getData() |
List<DependencyCoordinate> |
DefaultProject.getDependencies() |
org.eclipse.aether.graph.Dependency |
DefaultDependencyCoordinate.getDependency() |
org.eclipse.aether.graph.Dependency |
DefaultDependency.getDependency() |
Dependency |
AbstractSession.getDependency(org.eclipse.aether.graph.Dependency dependency) |
Collection<Exclusion> |
DefaultDependencyCoordinate.getExclusions() |
Path |
DefaultSession.getExecutionRootDirectory() |
String |
DefaultArtifact.getExtension() |
String |
DefaultArtifactCoordinate.getGroupId() |
String |
DefaultArtifact.getGroupId() |
String |
DefaultProject.getGroupId() |
String |
DefaultLocalRepository.getId() |
String |
DefaultRemoteRepository.getId() |
Collection<Listener> |
AbstractSession.getListeners() |
LocalRepository |
DefaultSession.getLocalRepository() |
List<DependencyCoordinate> |
DefaultProject.getManagedDependencies() |
String |
DefaultSession.getMavenVersion() |
Model |
DefaultProject.getModel() |
Path |
DefaultSession.getMultiModuleProjectDirectory() |
String |
DefaultProject.getPackaging() |
Path |
DefaultLocalRepository.getPath() |
Optional<Path> |
DefaultArtifactManager.getPath(Artifact artifact) |
Optional<Path> |
DefaultProjectManager.getPath(Project project) |
Map<String,Object> |
DefaultSession.getPluginContext(Project project) |
Optional<Path> |
DefaultProject.getPomPath() |
List<Project> |
DefaultSession.getProjects() |
String |
DefaultRemoteRepository.getProtocol() |
List<RemoteRepository> |
DefaultSession.getRemoteRepositories() |
org.eclipse.aether.repository.LocalRepository |
DefaultLocalRepository.getRepository() |
org.eclipse.aether.RepositorySystem |
DefaultSession.getRepositorySystem() |
Scope |
DefaultDependencyCoordinate.getScope() |
Scope |
DefaultDependency.getScope() |
<T extends Service> |
DefaultSession.getService(Class<T> clazz) |
org.eclipse.aether.RepositorySystemSession |
DefaultSession.getSession() |
Settings |
DefaultSession.getSettings() |
Instant |
DefaultSession.getStartTime() |
Map<String,String> |
DefaultSession.getSystemProperties() |
String |
DefaultLocalRepository.getType() |
String |
DefaultRemoteRepository.getType() |
Type |
DefaultTypeRegistry.getType(String id) |
String |
DefaultRemoteRepository.getUrl() |
Map<String,String> |
DefaultSession.getUserProperties() |
VersionRange |
DefaultArtifactCoordinate.getVersion() |
Version |
DefaultArtifact.getVersion() |
String |
DefaultProject.getVersion() |
MessageBuilder |
DefaultMessageBuilder.mojo(Object o) |
MessageBuilder |
DefaultMessageBuilder.newline() |
MessageBuilder |
DefaultMessageBuilder.project(Object o) |
MessageBuilder |
DefaultMessageBuilder.strong(Object o) |
MessageBuilder |
DefaultMessageBuilder.success(Object o) |
DependencyCoordinate |
DefaultDependency.toCoordinate() |
ArtifactCoordinate |
DefaultArtifact.toCoordinate() |
MessageBuilder |
DefaultMessageBuilder.warning(Object o) |
Session |
DefaultSession.withLocalRepository(LocalRepository localRepository) |
Session |
DefaultSession.withRemoteRepositories(List<RemoteRepository> repositories) |
Modifier and Type | Method and Description |
---|---|
MessageBuilder |
DefaultMessageBuilderFactory.builder(StringBuilder stringBuilder) |
DependencyCollectorResult |
DefaultDependencyCollector.collect(DependencyCollectorRequest request) |
Node |
AbstractSession.collectDependencies(Artifact artifact)
Shortcut for
getService(DependencyCollector.class).collect(...) |
Node |
AbstractSession.collectDependencies(DependencyCoordinate dependency)
Shortcut for
getService(DependencyCollector.class).collect(...) |
Node |
AbstractSession.collectDependencies(Project project)
Shortcut for
getService(DependencyCollector.class).collect(...) |
ArtifactCoordinate |
DefaultArtifactCoordinateFactory.create(ArtifactCoordinateFactoryRequest request) |
Artifact |
DefaultArtifactFactory.create(ArtifactFactoryRequest request) |
DependencyCoordinate |
DefaultDependencyCoordinateFactory.create(DependencyCoordinateFactoryRequest request) |
DependencyCoordinate |
AbstractSession.createDependencyCoordinate(ArtifactCoordinate coordinate)
Shortcut for
getService(DependencyFactory.class).create(...) |
DependencyCoordinate |
AbstractSession.createDependencyCoordinate(Dependency dependency)
Shortcut for
getService(DependencyFactory.class).create(...) |
RemoteRepository |
AbstractSession.createRemoteRepository(Repository repository)
Shortcut for
getService(RepositoryFactory.class).createRemote(...) |
RemoteRepository |
AbstractSession.createRemoteRepository(String id,
String url)
Shortcut for
getService(RepositoryFactory.class).createRemote(...) |
RemoteRepository |
AbstractSession.createRemoteRepository(String id,
String url)
Shortcut for
getService(RepositoryFactory.class).createRemote(...) |
void |
DefaultArtifactDeployer.deploy(ArtifactDeployerRequest request) |
static Model |
DefaultModelXmlFactory.fromXml(String xml)
Simply parse the given xml string.
|
Artifact |
AbstractSession.getArtifact(org.eclipse.aether.artifact.Artifact artifact) |
Optional<Path> |
AbstractSession.getArtifactPath(Artifact artifact)
Shortcut for
getService(ArtifactManager.class).getPath(...) |
Dependency |
AbstractSession.getDependency(org.eclipse.aether.graph.Dependency dependency) |
Optional<Path> |
DefaultArtifactManager.getPath(Artifact artifact) |
Path |
AbstractSession.getPathForLocalArtifact(Artifact artifact) |
boolean |
AbstractSession.isVersionSnapshot(String version)
Shortcut for
getService(VersionParser.class).isSnapshot(...) |
PersistedToolchains |
DefaultToolchainsXmlFactory.read(XmlReaderRequest request) |
Settings |
DefaultSettingsXmlFactory.read(XmlReaderRequest request) |
Model |
DefaultModelXmlFactory.read(XmlReaderRequest request) |
void |
AbstractSession.registerListener(Listener listener) |
void |
AbstractSession.setArtifactPath(Artifact artifact,
Path path)
Shortcut for
getService(ArtifactManager.class).setPath(...) |
void |
AbstractSession.setArtifactPath(Artifact artifact,
Path path)
Shortcut for
getService(ArtifactManager.class).setPath(...) |
void |
DefaultArtifactManager.setPath(Artifact artifact,
Path path) |
static String |
DefaultModelXmlFactory.toXml(Model content)
Simply converts the given content to an xml string.
|
void |
AbstractSession.unregisterListener(Listener listener) |
Session |
DefaultSession.withLocalRepository(LocalRepository localRepository) |
Session |
DefaultSession.withRemoteRepositories(List<RemoteRepository> repositories) |
Constructor and Description |
---|
DefaultArtifact(AbstractSession session,
org.eclipse.aether.artifact.Artifact artifact) |
DefaultArtifact(AbstractSession session,
org.eclipse.aether.artifact.Artifact artifact) |
DefaultArtifactCoordinate(AbstractSession session,
org.eclipse.aether.artifact.Artifact coordinate) |
DefaultArtifactCoordinate(AbstractSession session,
org.eclipse.aether.artifact.Artifact coordinate) |
DefaultArtifactManager(DefaultSession session) |
DefaultDependency(AbstractSession session,
org.eclipse.aether.graph.Dependency dependency) |
DefaultDependency(AbstractSession session,
org.eclipse.aether.graph.Dependency dependency) |
DefaultDependencyCoordinate(AbstractSession session,
org.eclipse.aether.graph.Dependency dependency) |
DefaultDependencyCoordinate(AbstractSession session,
org.eclipse.aether.graph.Dependency dependency) |
DefaultLocalRepository(org.eclipse.aether.repository.LocalRepository repository) |
DefaultMessageBuilder(org.apache.maven.shared.utils.logging.MessageBuilder delegate) |
DefaultNode(AbstractSession session,
org.eclipse.aether.graph.DependencyNode node,
boolean verbose) |
DefaultNode(AbstractSession session,
org.eclipse.aether.graph.DependencyNode node,
boolean verbose) |
DefaultSession(MavenSession session,
org.eclipse.aether.RepositorySystem repositorySystem,
List<RemoteRepository> repositories,
MavenRepositorySystem mavenRepositorySystem,
org.codehaus.plexus.PlexusContainer container,
RuntimeInformation runtimeInformation) |
DefaultSession(MavenSession session,
org.eclipse.aether.RepositorySystem repositorySystem,
List<RemoteRepository> repositories,
MavenRepositorySystem mavenRepositorySystem,
org.codehaus.plexus.PlexusContainer container,
RuntimeInformation runtimeInformation) |
DefaultSession(MavenSession session,
org.eclipse.aether.RepositorySystem repositorySystem,
List<RemoteRepository> repositories,
MavenRepositorySystem mavenRepositorySystem,
org.codehaus.plexus.PlexusContainer container,
RuntimeInformation runtimeInformation) |
DefaultSession(MavenSession session,
org.eclipse.aether.RepositorySystem repositorySystem,
List<RemoteRepository> repositories,
MavenRepositorySystem mavenRepositorySystem,
org.codehaus.plexus.PlexusContainer container,
RuntimeInformation runtimeInformation) |
DefaultSession(MavenSession session,
org.eclipse.aether.RepositorySystem repositorySystem,
List<RemoteRepository> repositories,
MavenRepositorySystem mavenRepositorySystem,
org.codehaus.plexus.PlexusContainer container,
RuntimeInformation runtimeInformation) |
Modifier and Type | Method and Description |
---|---|
LifecycleConfiguration |
LifecycleConfiguration.Builder.build() |
Lifecycle |
Lifecycle.Builder.build() |
Phase |
Phase.Builder.build() |
Execution |
Execution.Builder.build() |
Phase.Builder |
Phase.Builder.configuration(Dom configuration) |
Execution.Builder |
Execution.Builder.configuration(Dom configuration) |
Phase.Builder |
Phase.Builder.executions(Collection<Execution> executions) |
List<Execution> |
Phase.getExecutions()
The goals to execute within the phase.
|
List<String> |
Execution.getGoals()
The goals to execute.
|
List<Lifecycle> |
LifecycleConfiguration.getLifecycles() |
List<Phase> |
Lifecycle.getPhases()
The phase mappings for this lifecycle.
|
Execution.Builder |
Execution.Builder.goals(Collection<String> goals) |
Lifecycle.Builder |
Lifecycle.Builder.id(String id) |
Phase.Builder |
Phase.Builder.id(String id) |
LifecycleConfiguration.Builder |
LifecycleConfiguration.Builder.lifecycles(Collection<Lifecycle> lifecycles) |
LifecycleConfiguration.Builder |
LifecycleConfiguration.Builder.modelEncoding(String modelEncoding) |
static LifecycleConfiguration.Builder |
LifecycleConfiguration.newBuilder()
Creates a new LifecycleConfiguration builder instance.
|
static Lifecycle.Builder |
Lifecycle.newBuilder()
Creates a new Lifecycle builder instance.
|
static Phase.Builder |
Phase.newBuilder()
Creates a new Phase builder instance.
|
static Execution.Builder |
Execution.newBuilder()
Creates a new Execution builder instance.
|
static LifecycleConfiguration.Builder |
LifecycleConfiguration.newBuilder(boolean withDefaults)
Creates a new LifecycleConfiguration builder instance using default values or not.
|
static Lifecycle.Builder |
Lifecycle.newBuilder(boolean withDefaults)
Creates a new Lifecycle builder instance using default values or not.
|
static Phase.Builder |
Phase.newBuilder(boolean withDefaults)
Creates a new Phase builder instance using default values or not.
|
static Execution.Builder |
Execution.newBuilder(boolean withDefaults)
Creates a new Execution builder instance using default values or not.
|
static Execution.Builder |
Execution.newBuilder(Execution from)
Creates a new Execution builder instance using the specified object as a basis.
|
static Execution.Builder |
Execution.newBuilder(Execution from,
boolean forceCopy)
Creates a new Execution builder instance using the specified object as a basis.
|
static Lifecycle.Builder |
Lifecycle.newBuilder(Lifecycle from)
Creates a new Lifecycle builder instance using the specified object as a basis.
|
static Lifecycle.Builder |
Lifecycle.newBuilder(Lifecycle from,
boolean forceCopy)
Creates a new Lifecycle builder instance using the specified object as a basis.
|
static LifecycleConfiguration.Builder |
LifecycleConfiguration.newBuilder(LifecycleConfiguration from)
Creates a new LifecycleConfiguration builder instance using the specified object as a basis.
|
static LifecycleConfiguration.Builder |
LifecycleConfiguration.newBuilder(LifecycleConfiguration from,
boolean forceCopy)
Creates a new LifecycleConfiguration builder instance using the specified object as a basis.
|
static Phase.Builder |
Phase.newBuilder(Phase from)
Creates a new Phase builder instance using the specified object as a basis.
|
static Phase.Builder |
Phase.newBuilder(Phase from,
boolean forceCopy)
Creates a new Phase builder instance using the specified object as a basis.
|
static LifecycleConfiguration |
LifecycleConfiguration.newInstance()
Creates a new LifecycleConfiguration instance.
|
static Lifecycle |
Lifecycle.newInstance()
Creates a new Lifecycle instance.
|
static Phase |
Phase.newInstance()
Creates a new Phase instance.
|
static Execution |
Execution.newInstance()
Creates a new Execution instance.
|
static LifecycleConfiguration |
LifecycleConfiguration.newInstance(boolean withDefaults)
Creates a new LifecycleConfiguration instance using default values or not.
|
static Lifecycle |
Lifecycle.newInstance(boolean withDefaults)
Creates a new Lifecycle instance using default values or not.
|
static Phase |
Phase.newInstance(boolean withDefaults)
Creates a new Phase instance using default values or not.
|
static Execution |
Execution.newInstance(boolean withDefaults)
Creates a new Execution instance using default values or not.
|
Lifecycle.Builder |
Lifecycle.Builder.phases(Collection<Phase> phases) |
LifecycleConfiguration.Builder |
LifecycleConfiguration.with()
Creates a new builder with this object as the basis.
|
Lifecycle.Builder |
Lifecycle.with()
Creates a new builder with this object as the basis.
|
Phase.Builder |
Phase.with()
Creates a new builder with this object as the basis.
|
Execution.Builder |
Execution.with()
Creates a new builder with this object as the basis.
|
Phase |
Phase.withConfiguration(Dom configuration)
Creates a new Phase instance using the specified configuration.
|
Execution |
Execution.withConfiguration(Dom configuration)
Creates a new Execution instance using the specified configuration.
|
Phase |
Phase.withExecutions(Collection<Execution> executions)
Creates a new Phase instance using the specified executions.
|
Execution |
Execution.withGoals(Collection<String> goals)
Creates a new Execution instance using the specified goals.
|
Lifecycle |
Lifecycle.withId(String id)
Creates a new Lifecycle instance using the specified id.
|
Phase |
Phase.withId(String id)
Creates a new Phase instance using the specified id.
|
LifecycleConfiguration |
LifecycleConfiguration.withLifecycles(Collection<Lifecycle> lifecycles)
Creates a new LifecycleConfiguration instance using the specified lifecycles.
|
Lifecycle |
Lifecycle.withPhases(Collection<Phase> phases)
Creates a new Lifecycle instance using the specified phases.
|
Modifier and Type | Method and Description |
---|---|
List<String> |
Settings.getActiveProfiles() |
List<Mirror> |
Settings.getMirrors() |
List<String> |
Settings.getPluginGroups() |
List<Repository> |
Profile.getPluginRepositories() |
List<Profile> |
Settings.getProfiles() |
Properties |
Profile.getProperties() |
List<Proxy> |
Settings.getProxies() |
List<Repository> |
Profile.getRepositories() |
List<Server> |
Settings.getServers() |
Modifier and Type | Method and Description |
---|---|
Properties |
ToolchainModel.getProvides() |
List<ToolchainModel> |
PersistedToolchains.getToolchains() |
Copyright © 2001–2022 The Apache Software Foundation. All rights reserved.