Interface MavenDeployerApi
- All Known Implementing Classes:
MavenDeployer, SimpleMavenDeployer
public interface MavenDeployerApi
-
Method Summary
Modifier and TypeMethodDescriptionvoidDeploy a Maven artifactvoidDeploy a Maven artifactReturns the j4rs deployment target.Returns the maven repository base (eg.
-
Method Details
-
deploy
void deploy(String groupId, String artifactId, String version, String qualifier, String artifactType) throws IOException Deploy a Maven artifact- Parameters:
groupId- The maven group IDartifactId- The maven artifact IDversion- The artifact versionqualifier- The artifact qualifierartifactType- The artifact type (eg. jar, pom etc)- Throws:
IOException
-
deploy
Deploy a Maven artifact- Parameters:
groupId- The maven group IDartifactId- The maven artifact IDversion- The artifact versionqualifier- The artifact qualifier- Throws:
IOException
-
getRepoBase
String getRepoBase()Returns the maven repository base (eg. the maven central)- Returns:
- The maven repository base
-
getDeployTarget
String getDeployTarget()Returns the j4rs deployment target. ie. the location where the rust application will search to find the maven artifacts- Returns:
- The deployment target
-