Interface ProjectBuildingRequest

All Known Implementing Classes:
DefaultProjectBuildingRequest

public interface ProjectBuildingRequest
ProjectBuildingRequest
  • Method Details Link icon

    • setLocalRepository Link icon

      ProjectBuildingRequest setLocalRepository(ArtifactRepository localRepository)
    • getLocalRepository Link icon

      ArtifactRepository getLocalRepository()
    • setRemoteRepositories Link icon

      ProjectBuildingRequest setRemoteRepositories(List<ArtifactRepository> remoteRepositories)
    • getRemoteRepositories Link icon

      List<ArtifactRepository> getRemoteRepositories()
    • setPluginArtifactRepositories Link icon

      ProjectBuildingRequest setPluginArtifactRepositories(List<ArtifactRepository> pluginArtifactRepositories)
    • getPluginArtifactRepositories Link icon

      List<ArtifactRepository> getPluginArtifactRepositories()
    • setSystemProperties Link icon

      ProjectBuildingRequest setSystemProperties(Properties systemProperties)
      Sets the system properties to use for interpolation and profile activation. The system properties are collected from the runtime environment like System.getProperties() and environment variables.
      Parameters:
      systemProperties - The system properties, may be null.
      Returns:
      This request, never null.
    • getSystemProperties Link icon

      Properties getSystemProperties()
      Gets the system properties to use for interpolation and profile activation. The system properties are collected from the runtime environment like System.getProperties() and environment variables.
      Returns:
      The system properties, never null.
    • setUserProperties Link icon

      ProjectBuildingRequest setUserProperties(Properties userProperties)
      Sets the user properties to use for interpolation and profile activation. The user properties have been configured directly by the user on his discretion, e.g. via the -Dkey=value parameter on the command line.
      Parameters:
      userProperties - The user properties, may be null.
      Returns:
      This request, never null.
    • getUserProperties Link icon

      Properties getUserProperties()
      Gets the user properties to use for interpolation and profile activation. The user properties have been configured directly by the user on his discretion, e.g. via the -Dkey=value parameter on the command line.
      Returns:
      The user properties, never null.
    • setProject Link icon

      void setProject(MavenProject mavenProject)
    • getProject Link icon

      MavenProject getProject()
    • setProcessPlugins Link icon

      ProjectBuildingRequest setProcessPlugins(boolean processPlugins)
    • isProcessPlugins Link icon

      boolean isProcessPlugins()
    • setResolveDependencies Link icon

      ProjectBuildingRequest setResolveDependencies(boolean resolveDependencies)
    • isResolveDependencies Link icon

      boolean isResolveDependencies()
    • setValidationLevel Link icon

      ProjectBuildingRequest setValidationLevel(int validationLevel)
      Controls the level of validation to perform on processed models. By default, models are validated in strict mode.
      Parameters:
      validationLevel - The level of validation to perform on processed models, e.g. ModelBuildingRequest.VALIDATION_LEVEL_STRICT.
      Returns:
      This configuration, never null.
    • getValidationLevel Link icon

      int getValidationLevel()
      Gets the level of validation to perform on processed models.
      Returns:
      The level of validation to perform on processed models.
    • setActiveProfileIds Link icon

      void setActiveProfileIds(List<String> activeProfileIds)
      Set any active profiles that the ProjectBuilder should consider while constructing a MavenProject.
    • getActiveProfileIds Link icon

      List<String> getActiveProfileIds()
    • setInactiveProfileIds Link icon

      void setInactiveProfileIds(List<String> inactiveProfileIds)
    • getInactiveProfileIds Link icon

      List<String> getInactiveProfileIds()
    • addProfile Link icon

      void addProfile(Profile profile)
      Add a Profile that has come from an external source. This may be from a custom configuration like the MavenCLI settings.xml file, or from a custom dialog in an IDE integration like M2Eclipse.
      Parameters:
      profile -
    • setProfiles Link icon

      void setProfiles(List<Profile> profiles)
    • getProfiles Link icon

      List<Profile> getProfiles()
    • getBuildStartTime Link icon

      Date getBuildStartTime()
      Gets the start time of the build.
      Returns:
      The start time of the build or null if unknown.
    • setBuildStartTime Link icon

      void setBuildStartTime(Date buildStartTime)
      Sets the start time of the build.
      Parameters:
      buildStartTime - The start time of the build, may be null.
    • getRepositorySession Link icon

      org.eclipse.aether.RepositorySystemSession getRepositorySession()
    • setRepositorySession Link icon

      ProjectBuildingRequest setRepositorySession(org.eclipse.aether.RepositorySystemSession repositorySession)
    • setRepositoryMerging Link icon

      Sets the merge mode used to combine repositories declared in the POM with the repositories specified in this request.
      Parameters:
      mode - The repository merge mode, must not be null.
      Returns:
      This request for chaining, never null.
      See Also:
    • getRepositoryMerging Link icon

      Gets the merge mode used to combine repositories declared in the POM with the repositories specified in this request
      Returns:
      The merge mode, never null.
    • isResolveVersionRanges Link icon

      @Deprecated boolean isResolveVersionRanges()
      Deprecated.
      This got added when implementing MNG-2199 and is no longer used. Commit 6cf9320942c34bc68205425ab696b1712ace9ba4 updated the way 'MavenProject' objects are initialized.
      Since:
      3.2.2
    • setResolveVersionRanges Link icon

      @Deprecated ProjectBuildingRequest setResolveVersionRanges(boolean value)
      Deprecated.
      This got added when implementing MNG-2199 and is no longer used. Commit 6cf9320942c34bc68205425ab696b1712ace9ba4 updated the way 'MavenProject' objects are initialized.
      Since:
      3.2.2