Package org.wso2.maven.libraries
Class DependencyOverride
- java.lang.Object
-
- org.wso2.maven.libraries.DependencyOverride
-
public class DependencyOverride extends Object
Represents a single dependency override entry in connector-config.json.A match is attempted first by
connectionType(if present in the descriptor.yml dependency), then bygroupId + artifactId. Any field left null falls through to the descriptor.yml default.
-
-
Constructor Summary
Constructors Constructor Description DependencyOverride()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetArtifactId()StringgetConnectionType()StringgetGroupId()StringgetLocalPath()StringgetVersion()booleanisAdditionalDependency()booleanisOmit()
-
-
-
Method Detail
-
getConnectionType
public String getConnectionType()
-
getGroupId
public String getGroupId()
-
getArtifactId
public String getArtifactId()
-
getVersion
public String getVersion()
-
isOmit
public boolean isOmit()
-
getLocalPath
public String getLocalPath()
-
isAdditionalDependency
public boolean isAdditionalDependency()
-
-