Package io.quarkus.maven
Class QuarkusBootstrapProvider
- java.lang.Object
-
- io.quarkus.maven.QuarkusBootstrapProvider
-
- All Implemented Interfaces:
java.io.Closeable,java.lang.AutoCloseable
@Component(role=QuarkusBootstrapProvider.class, instantiationStrategy="singleton") public class QuarkusBootstrapProvider extends java.lang.Object implements java.io.Closeable
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description classQuarkusBootstrapProvider.QuarkusMavenAppBootstrap
-
Field Summary
Fields Modifier and Type Field Description protected org.eclipse.aether.impl.RemoteRepositoryManagerremoteRepoManagerprotected org.eclipse.aether.RepositorySystemrepoSystem
-
Constructor Summary
Constructors Constructor Description QuarkusBootstrapProvider()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description io.quarkus.bootstrap.app.CuratedApplicationbootstrapApplication(QuarkusBootstrapMojo mojo, io.quarkus.runtime.LaunchMode mode)QuarkusBootstrapProvider.QuarkusMavenAppBootstrapbootstrapper(QuarkusBootstrapMojo mojo)voidclose()io.quarkus.bootstrap.model.ApplicationModelgetResolvedApplicationModel(io.quarkus.maven.dependency.ArtifactKey projectId, io.quarkus.runtime.LaunchMode mode)org.eclipse.aether.impl.RemoteRepositoryManagerremoteRepositoryManager()org.eclipse.aether.RepositorySystemrepositorySystem()
-
-
-
Field Detail
-
repoSystem
@Requirement(role=org.eclipse.aether.RepositorySystem.class, optional=false) protected org.eclipse.aether.RepositorySystem repoSystem
-
remoteRepoManager
@Requirement(role=org.eclipse.aether.impl.RemoteRepositoryManager.class, optional=false) protected org.eclipse.aether.impl.RemoteRepositoryManager remoteRepoManager
-
-
Method Detail
-
repositorySystem
public org.eclipse.aether.RepositorySystem repositorySystem()
-
remoteRepositoryManager
public org.eclipse.aether.impl.RemoteRepositoryManager remoteRepositoryManager()
-
bootstrapper
public QuarkusBootstrapProvider.QuarkusMavenAppBootstrap bootstrapper(QuarkusBootstrapMojo mojo)
-
bootstrapApplication
public io.quarkus.bootstrap.app.CuratedApplication bootstrapApplication(QuarkusBootstrapMojo mojo, io.quarkus.runtime.LaunchMode mode) throws org.apache.maven.plugin.MojoExecutionException
- Throws:
org.apache.maven.plugin.MojoExecutionException
-
getResolvedApplicationModel
public io.quarkus.bootstrap.model.ApplicationModel getResolvedApplicationModel(io.quarkus.maven.dependency.ArtifactKey projectId, io.quarkus.runtime.LaunchMode mode)
-
close
public void close() throws java.io.IOException- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable- Throws:
java.io.IOException
-
-