Package io.quarkus.maven.dependency
Class DependencyBuilder
- java.lang.Object
-
- io.quarkus.maven.dependency.DependencyBuilder
-
public class DependencyBuilder extends Object
-
-
Constructor Summary
Constructors Constructor Description DependencyBuilder()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Dependency
build()
void
clearFlag(int flag)
String
getArtifactId()
String
getClassifier()
int
getFlags()
String
getGroupId()
ArtifactKey
getKey()
String
getScope()
String
getType()
String
getVersion()
boolean
isFlagSet(int flag)
static DependencyBuilder
newInstance()
B
setArtifactId(String artifactId)
B
setClassifier(String classifier)
B
setCoords(ArtifactCoords coords)
B
setDeploymentCp()
B
setDirect(boolean direct)
B
setFlags(int flag)
B
setGroupId(String groupId)
B
setOptional(boolean optional)
B
setReloadable()
B
setRuntimeCp()
B
setRuntimeExtensionArtifact()
B
setScope(String scope)
B
setType(String type)
B
setVersion(String version)
B
setWorkspaceModule()
String
toGACTVString()
-
-
-
Method Detail
-
newInstance
public static DependencyBuilder newInstance()
-
build
public Dependency build()
-
setCoords
public B setCoords(ArtifactCoords coords)
-
setGroupId
public B setGroupId(String groupId)
-
setArtifactId
public B setArtifactId(String artifactId)
-
setClassifier
public B setClassifier(String classifier)
-
setType
public B setType(String type)
-
setVersion
public B setVersion(String version)
-
setScope
public B setScope(String scope)
-
setOptional
public B setOptional(boolean optional)
-
setDeploymentCp
public B setDeploymentCp()
-
setRuntimeCp
public B setRuntimeCp()
-
setWorkspaceModule
public B setWorkspaceModule()
-
setDirect
public B setDirect(boolean direct)
-
setReloadable
public B setReloadable()
-
setRuntimeExtensionArtifact
public B setRuntimeExtensionArtifact()
-
setFlags
public B setFlags(int flag)
-
getFlags
public int getFlags()
-
isFlagSet
public boolean isFlagSet(int flag)
-
clearFlag
public void clearFlag(int flag)
-
getGroupId
public String getGroupId()
-
getArtifactId
public String getArtifactId()
-
getClassifier
public String getClassifier()
-
getType
public String getType()
-
getVersion
public String getVersion()
-
getScope
public String getScope()
-
toGACTVString
public String toGACTVString()
-
getKey
public ArtifactKey getKey()
-
-