Package io.quarkus.bootstrap.app
Class AdditionalDependency
- java.lang.Object
-
- io.quarkus.bootstrap.app.AdditionalDependency
-
- All Implemented Interfaces:
Serializable
public class AdditionalDependency extends Object implements Serializable
An additional archive that should be added to the generated application. This is generally only used in dev and test mode, where additional paths from the current project should be added to the current application. For production applications this should not be needed as the full set of dependencies should already be available.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AdditionalDependency(PathCollection paths, boolean hotReloadable, boolean forceApplicationArchive)AdditionalDependency(Path archivePath, boolean hotReloadable, boolean forceApplicationArchive)
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description PathsCollectiongetArchivePath()Deprecated.in favor ofgetResolvedPaths()PathCollectiongetResolvedPaths()booleanisForceApplicationArchive()booleanisHotReloadable()
-
-
-
Constructor Detail
-
AdditionalDependency
public AdditionalDependency(Path archivePath, boolean hotReloadable, boolean forceApplicationArchive)
-
AdditionalDependency
public AdditionalDependency(PathCollection paths, boolean hotReloadable, boolean forceApplicationArchive)
- Parameters:
archivePath- archive pathshotReloadable- whether the dependency is reloadableforceApplicationArchive- whether it should be added as an application archive
-
-
Method Detail
-
getArchivePath
@Deprecated public PathsCollection getArchivePath()
Deprecated.in favor ofgetResolvedPaths()- Returns:
- archive paths
-
getResolvedPaths
public PathCollection getResolvedPaths()
-
isHotReloadable
public boolean isHotReloadable()
-
isForceApplicationArchive
public boolean isForceApplicationArchive()
-
-