me.qoomon.maven.extension.gitversioning.ExtensionUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-git-versioning-extension Show documentation
Show all versions of maven-git-versioning-extension Show documentation
Maven Git Versioning Extension
package me.qoomon.maven.extension.gitversioning;
import org.apache.maven.execution.MavenExecutionRequest;
import java.io.File;
/**
* Created by qoomon on 06/12/2016.
*/
public class ExtensionUtil {
public static File getConfigFile(MavenExecutionRequest request, String artifactId) {
File rootProjectDirectory = request.getMultiModuleProjectDirectory();
return new File(rootProjectDirectory, ".mvn/" + artifactId + ".xml");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy