Interface ProjectUtils
- All Known Implementing Classes:
ProjectUtilsImpl
public interface ProjectUtils
-
Method Summary
Modifier and TypeMethodDescriptionvoidcreateChecksumFiles(org.apache.maven.project.MavenProject project, Path sourceDir, ChecksumRequest checksumRequest) Create checksum files for the direct files in thesourceDir.voiddeleteGroupArtifactMavenMetadataCentralStagingXml(org.apache.maven.project.MavenProject project, Path sourceDir) DeleteProjectUtilsImpl.MAVEN_METADATA_CENTRAL_STAGING_XMLfrom the Group and Artifact ID directory of aMavenProjectwithin the givensourceDirIf theMavenProjecthas a parent and is a module, the parent and its child modules will have the xml removed as well.getArtifacts(org.apache.maven.project.MavenProject mavenProject, org.apache.maven.artifact.factory.ArtifactFactory artifactFactory)
-
Method Details
-
getArtifacts
List<ArtifactWithFile> getArtifacts(org.apache.maven.project.MavenProject mavenProject, org.apache.maven.artifact.factory.ArtifactFactory artifactFactory) throws org.apache.maven.plugin.MojoExecutionException - Throws:
org.apache.maven.plugin.MojoExecutionException
-
deleteGroupArtifactMavenMetadataCentralStagingXml
void deleteGroupArtifactMavenMetadataCentralStagingXml(org.apache.maven.project.MavenProject project, Path sourceDir) DeleteProjectUtilsImpl.MAVEN_METADATA_CENTRAL_STAGING_XMLfrom the Group and Artifact ID directory of aMavenProjectwithin the givensourceDirIf theMavenProjecthas a parent and is a module, the parent and its child modules will have the xml removed as well.- Parameters:
project- -MavenProjectsourceDir- -Path
-
createChecksumFiles
void createChecksumFiles(org.apache.maven.project.MavenProject project, Path sourceDir, ChecksumRequest checksumRequest) Create checksum files for the direct files in thesourceDir. For example, if asourceDircontains the file TEST-1.0.pom, checksum files will be created for all the requested checksums in the givenchecksumRequest, like TEST-1.0.pom.md5This method doesn't recursively go through child folders.
- Parameters:
project- -MavenProjectsourceDir- -PathchecksumRequest- -ChecksumRequest
-