Quarkus Mavenプラグイン
Quarkus Maven Pluginは、Quarkusアプリケーションをビルドし、開発モードを起動したり、ネイティブ実行可能ファイルを構築するためのヘルパーを提供します。Quarkus Maven Pluginの使用方法の詳細については、 Maven Toolingガイド を参照してください。
Mavenのゴールの発見
ほとんどの Maven プラグインと同様に、Quarkus Maven Plugin にも help ゴールがあり、プラグインの説明が出力され、利用可能なすべてのゴールとその説明が一覧表示されます。また、ゴールに関する詳細情報、すべてのパラメーターとそのデフォルト値を出力することも可能です。たとえば、 create ゴールのヘルプを見るには、次のように実行します:
./mvnw quarkus:help -Ddetail -Dgoal=create
Mavenゴールリファレンス
Quarkus Maven Pluginのすべてのゴールのリストはこちらです:
quarkus:add-extension
Allow adding an extension to an existing pom.xml file. Because you can add one or several extension in one go, there are 2 mojos: add-extensions and add-extension. Both supports the extension and extensions parameters.
タイプ |
デフォルト |
|
|---|---|---|
文字列 |
||
文字列 |
||
文字列 |
||
文字列 |
||
Set |
||
MavenProject |
|
|
RepositorySystemSession |
|
|
List |
|
quarkus:add-extensions
Allow adding extensions to an existing pom.xml file. Because you can add one or several extension in one go, there are 2 mojos: add-extensions and add-extension. Both supports the extension and extensions parameters.
タイプ |
デフォルト |
|
|---|---|---|
文字列 |
||
文字列 |
||
文字列 |
||
文字列 |
||
Set |
||
MavenProject |
|
|
RepositorySystemSession |
|
|
List |
|
quarkus:analyze-call-tree
Analyze call tree of a method or a class based on an existing report produced by Substrate when using -H:+PrintAnalysisCallTree, and does a more meaningful analysis of what is causing a type to be retained.
タイプ |
デフォルト |
|
|---|---|---|
文字列 |
|
|
文字列 |
|
|
File |
|
quarkus:build
Builds the Quarkus application.
タイプ |
デフォルト |
|
|---|---|---|
Coordinates of the Maven artifact containing the original Java application to build the native image for. If not provided, the current project is assumed to be the original Java application. The coordinates are expected to be expressed in the following format: groupId:artifactId:classifier:type:version With the classifier, type and version being optional. If the type is missing, the artifact is assumed to be of type JAR. If the version is missing, the artifact is going to be looked up among the project dependencies using the provided coordinates. However, if the expression consists of only three parts, it is assumed to be groupId:artifactId:version. If the expression consists of only four parts, it is assumed to be groupId:artifactId:classifier:type. Show more |
文字列 |
|
File |
|
|
boolean |
||
文字列 |
|
|
File |
|
|
When building an uber-jar, this array specifies entries that should be excluded from the final jar. The entries are relative to the root of the file. An example of this configuration could be: `<configuration> <uberJar>true</uberJar> <ignoredEntries> <ignoredEntry>META-INF/BC2048KE.SF</ignoredEntry> <ignoredEntry>META-INF/BC2048KE.DSA</ignoredEntry> <ignoredEntry>META-INF/BC1024KE.SF</ignoredEntry> <ignoredEntry>META-INF/BC1024KE.DSA</ignoredEntry> </ignoredEntries> </configuration> ` Show more |
java.lang.String[] |
|
Map |
||
List |
||
MojoExecution |
|
|
The project’s remote repositories to use for the resolution of plugins and their dependencies. Show more |
List |
|
MavenProject |
|
|
Map |
||
RepositorySystemSession |
|
|
The project’s remote repositories to use for the resolution of artifacts and their dependencies. Show more |
List |
|
MavenSession |
|
|
boolean |
|
|
boolean |
|
|
Map |
quarkus:create
This goal helps in setting up Quarkus Maven project with quarkus-maven-plugin, with sensible defaults
タイプ |
デフォルト |
|
|---|---|---|
文字列 |
||
文字列 |
||
文字列 |
||
文字列 |
||
文字列 |
|
|
The Show more |
文字列 |
|
文字列 |
||
文字列 |
||
Set |
||
文字列 |
||
boolean |
|
|
File |
|
|
Set the package name of the generated classes.
If not set, Show more |
文字列 |
|
The Show more |
文字列 |
|
MavenProject |
|
|
文字列 |
||
文字列 |
||
文字列 |
||
文字列 |
||
文字列 |
||
RepositorySystemSession |
|
|
List |
|
|
MavenSession |
|
quarkus:create-extension
Creates the base of a Quarkus Extension in different layout depending on the options and environment.
Create in the quarkus-parent project directory (or the extensions parent dir)
It will:
- generate the new Quarkus extension in the extensions parent as a module (parent, runtime and deployment), with unit test and devmode test on option.
- On option, generate the new integration test in the integration tests parent as a module.
- add the dependencies to the bom/application/pom.xml.
Creating a Quarkiverse extension
When using -DgroupId=io.quarkiverse.[featureId], the new extension will use the Quarkiverse layout.
Creating a standalone extension
-
generate the new Quarkus extension in the current directory (parent, runtime and deployment), with unit test and devmode test on option.
-
On option, generate the new integration test module in the current directory.
タイプ |
デフォルト |
|
|---|---|---|
文字列 |
||
Directory where the changes should be performed. Default: the current directory of the current Java process. Show more |
File |
|
The This description is used on https://code.quarkus.io/. Show more |
文字列 |
|
It will be used to generate the different extension modules artifactIds ( Show more |
文字列 |
|
The Default: the formatted Show more |
文字列 |
|
The Show more |
文字列 |
|
A prefix common to all extension artifactIds in the current source tree. Default: "quarkus-" in quarkus Quarkus Core and Quarkiverse else "" Show more |
文字列 |
|
A prefix common to all extension names in the current source tree. Default: "quarkus-" in Quarkus Core and Quarkiverse else "" Show more |
文字列 |
|
Base package under which classes should be created in Runtime and Deployment modules. Default: auto-generated out of Show more |
文字列 |
|
MavenProject |
|
|
The Default: Show more |
文字列 |
|
The Default: Show more |
文字列 |
|
The Default: Show more |
文字列 |
|
Quarkus version the newly created extension should depend on (REQUIRED - INHERITED IN QUARKUS-CORE). Show more |
文字列 |
|
MavenSession |
|
|
The Default: automatic in Quarkus Core else Show more |
文字列 |
|
boolean |
|
|
boolean |
|
|
Indicates whether to generate an integration tests for the extension Show more |
boolean |
|
Indicates whether to generate any tests for the extension (same as Show more |
boolean |
|
boolean |
|
quarkus:create-jbang
タイプ |
デフォルト |
|
|---|---|---|
文字列 |
||
文字列 |
||
文字列 |
||
Set |
||
文字列 |
||
boolean |
|
|
File |
|
|
RepositorySystemSession |
|
|
List |
|
quarkus:dependency-tree
Displays Quarkus application build dependency tree including the deployment ones.
タイプ |
デフォルト |
|
|---|---|---|
boolean |
|
|
Target launch mode corresponding to Show more |
文字列 |
|
If specified, this parameter will cause the dependency tree to be written to the path specified, instead of writing to the console. Show more |
File |
|
MavenProject |
|
|
List |
|
quarkus:dev
The dev mojo, that runs a quarkus app in a forked process. A background compilation process is launched and any changes are automatically reflected in your running application.
You can use this dev mode in a remote container environment with remote-dev.
タイプ |
デフォルト |
|
|---|---|---|
文字列 |
|
|
File |
|
|
Additional parameters to pass to javac when recompiling changed source files. Show more |
List |
|
List |
||
If this server should be started in debug mode. The default is to start in debug mode and listen on port 5005. Whether the JVM is suspended waiting for a debugger to be attached, depends on the value of Show more |
文字列 |
|
文字列 |
|
|
文字列 |
|
|
boolean |
|
|
Whether to enforce the quarkus-maven-plugin build goal to be configured. By default, a missing build goal is considered an inconsistency (although the build goal is not required technically). In this case a warning will be logged and the application will not be started. Show more |
boolean |
|
Map |
||
文字列 |
|
|
Allows configuring the modules to add to the application. The listed modules will be added using: Show more |
List |
|
MojoExecution |
|
|
Whether changes in the projects that appear to be dependencies of the project containing the application to be launched should trigger hot-reload. By default, they do. Show more |
boolean |
|
boolean |
|
|
File |
|
|
List |
|
|
This value is intended to be set to true when some generated bytecode is erroneous causing the JVM to crash when the Show more |
boolean |
|
MavenProject |
|
|
文字列 |
|
|
RepositorySystemSession |
|
|
List |
|
|
MavenSession |
|
|
文字列 |
|
|
File |
|
|
Whether the JVM launch, in debug mode, should be suspended. This parameter is only relevant when the JVM is launched in Show more |
文字列 |
|
Map |
||
文字列 |
|
|
File |
quarkus:generate-code
タイプ |
デフォルト |
|
|---|---|---|
Coordinates of the Maven artifact containing the original Java application to build the native image for. If not provided, the current project is assumed to be the original Java application. The coordinates are expected to be expressed in the following format: groupId:artifactId:classifier:type:version With the classifier, type and version being optional. If the type is missing, the artifact is assumed to be of type JAR. If the version is missing, the artifact is going to be looked up among the project dependencies using the provided coordinates. However, if the expression consists of only three parts, it is assumed to be groupId:artifactId:version. If the expression consists of only four parts, it is assumed to be groupId:artifactId:classifier:type. Show more |
文字列 |
|
File |
|
|
boolean |
||
文字列 |
|
|
When building an uber-jar, this array specifies entries that should be excluded from the final jar. The entries are relative to the root of the file. An example of this configuration could be: `<configuration> <uberJar>true</uberJar> <ignoredEntries> <ignoredEntry>META-INF/BC2048KE.SF</ignoredEntry> <ignoredEntry>META-INF/BC2048KE.DSA</ignoredEntry> <ignoredEntry>META-INF/BC1024KE.SF</ignoredEntry> <ignoredEntry>META-INF/BC1024KE.DSA</ignoredEntry> </ignoredEntries> </configuration> ` Show more |
java.lang.String[] |
|
Map |
||
List |
||
文字列 |
|
|
MojoExecution |
|
|
MavenProject |
|
|
Map |
||
RepositorySystemSession |
|
|
The project’s remote repositories to use for the resolution of artifacts and their dependencies. Show more |
List |
|
MavenSession |
|
|
boolean |
|
quarkus:generate-code-tests
タイプ |
デフォルト |
|
|---|---|---|
Coordinates of the Maven artifact containing the original Java application to build the native image for. If not provided, the current project is assumed to be the original Java application. The coordinates are expected to be expressed in the following format: groupId:artifactId:classifier:type:version With the classifier, type and version being optional. If the type is missing, the artifact is assumed to be of type JAR. If the version is missing, the artifact is going to be looked up among the project dependencies using the provided coordinates. However, if the expression consists of only three parts, it is assumed to be groupId:artifactId:version. If the expression consists of only four parts, it is assumed to be groupId:artifactId:classifier:type. Show more |
文字列 |
|
File |
|
|
boolean |
||
文字列 |
|
|
When building an uber-jar, this array specifies entries that should be excluded from the final jar. The entries are relative to the root of the file. An example of this configuration could be: `<configuration> <uberJar>true</uberJar> <ignoredEntries> <ignoredEntry>META-INF/BC2048KE.SF</ignoredEntry> <ignoredEntry>META-INF/BC2048KE.DSA</ignoredEntry> <ignoredEntry>META-INF/BC1024KE.SF</ignoredEntry> <ignoredEntry>META-INF/BC1024KE.DSA</ignoredEntry> </ignoredEntries> </configuration> ` Show more |
java.lang.String[] |
|
Map |
||
List |
||
文字列 |
|
|
MojoExecution |
|
|
MavenProject |
|
|
Map |
||
RepositorySystemSession |
|
|
The project’s remote repositories to use for the resolution of artifacts and their dependencies. Show more |
List |
|
MavenSession |
|
|
boolean |
|
quarkus:go-offline
This goal downloads all the Maven artifact dependencies required to build, run, test and launch the application dev mode.
タイプ |
デフォルト |
|
|---|---|---|
Target launch mode corresponding to Show more |
文字列 |
|
MavenProject |
|
|
RepositorySystemSession |
|
|
List |
|
quarkus:help
Display help information on quarkus-maven-plugin.
Call mvn quarkus:help -Ddetail=true -Dgoal=<goal-name> to display parameter details.
タイプ |
デフォルト |
|
|---|---|---|
boolean |
|
|
The name of the goal for which to show help. If unspecified, all goals will be displayed. Show more |
文字列 |
|
int |
|
|
int |
|
quarkus:image-build
Builds a container image.
タイプ |
デフォルト |
|
|---|---|---|
Coordinates of the Maven artifact containing the original Java application to build the native image for. If not provided, the current project is assumed to be the original Java application. The coordinates are expected to be expressed in the following format: groupId:artifactId:classifier:type:version With the classifier, type and version being optional. If the type is missing, the artifact is assumed to be of type JAR. If the version is missing, the artifact is going to be looked up among the project dependencies using the provided coordinates. However, if the expression consists of only three parts, it is assumed to be groupId:artifactId:version. If the expression consists of only four parts, it is assumed to be groupId:artifactId:classifier:type. Show more |
文字列 |
|
File |
|
|
Builder |
|
|
boolean |
||
boolean |
|
|
文字列 |
|
|
File |
|
|
When building an uber-jar, this array specifies entries that should be excluded from the final jar. The entries are relative to the root of the file. An example of this configuration could be: `<configuration> <uberJar>true</uberJar> <ignoredEntries> <ignoredEntry>META-INF/BC2048KE.SF</ignoredEntry> <ignoredEntry>META-INF/BC2048KE.DSA</ignoredEntry> <ignoredEntry>META-INF/BC1024KE.SF</ignoredEntry> <ignoredEntry>META-INF/BC1024KE.DSA</ignoredEntry> </ignoredEntries> </configuration> ` Show more |
java.lang.String[] |
|
Map |
||
List |
||
MojoExecution |
|
|
The project’s remote repositories to use for the resolution of plugins and their dependencies. Show more |
List |
|
MavenProject |
|
|
Map |
||
RepositorySystemSession |
|
|
The project’s remote repositories to use for the resolution of artifacts and their dependencies. Show more |
List |
|
MavenSession |
|
|
boolean |
|
|
boolean |
|
|
Map |
quarkus:image-push
Pushes a container image.
タイプ |
デフォルト |
|
|---|---|---|
Coordinates of the Maven artifact containing the original Java application to build the native image for. If not provided, the current project is assumed to be the original Java application. The coordinates are expected to be expressed in the following format: groupId:artifactId:classifier:type:version With the classifier, type and version being optional. If the type is missing, the artifact is assumed to be of type JAR. If the version is missing, the artifact is going to be looked up among the project dependencies using the provided coordinates. However, if the expression consists of only three parts, it is assumed to be groupId:artifactId:version. If the expression consists of only four parts, it is assumed to be groupId:artifactId:classifier:type. Show more |
文字列 |
|
File |
|
|
Builder |
|
|
boolean |
||
boolean |
|
|
文字列 |
|
|
File |
|
|
When building an uber-jar, this array specifies entries that should be excluded from the final jar. The entries are relative to the root of the file. An example of this configuration could be: `<configuration> <uberJar>true</uberJar> <ignoredEntries> <ignoredEntry>META-INF/BC2048KE.SF</ignoredEntry> <ignoredEntry>META-INF/BC2048KE.DSA</ignoredEntry> <ignoredEntry>META-INF/BC1024KE.SF</ignoredEntry> <ignoredEntry>META-INF/BC1024KE.DSA</ignoredEntry> </ignoredEntries> </configuration> ` Show more |
java.lang.String[] |
|
Map |
||
List |
||
MojoExecution |
|
|
The project’s remote repositories to use for the resolution of plugins and their dependencies. Show more |
List |
|
MavenProject |
|
|
Map |
||
RepositorySystemSession |
|
|
The project’s remote repositories to use for the resolution of artifacts and their dependencies. Show more |
List |
|
MavenSession |
|
|
boolean |
|
|
boolean |
|
|
Map |
quarkus:info
Log Quarkus-specific project information, such as imported Quarkus platform BOMs, Quarkus extensions found among the project dependencies, etc.
タイプ |
デフォルト |
|
|---|---|---|
文字列 |
||
文字列 |
||
文字列 |
||
If true, the information will be logged per each relevant module of the project instead of an overall summary Show more |
boolean |
|
MavenProject |
|
|
RepositorySystemSession |
|
|
List |
|
quarkus:list-categories
List extension categories, which a user can use to filter extensions.
タイプ |
デフォルト |
|
|---|---|---|
文字列 |
||
文字列 |
||
文字列 |
||
Select the output format among 'name' (display the name only) and 'full' (includes a verbose name and a description). Show more |
文字列 |
|
MavenProject |
|
|
RepositorySystemSession |
|
|
List |
|
quarkus:list-extensions
List the available extensions. You can add one or several extensions in one go, with the 2 following mojos: add-extensions and add-extension. You can list all extension or just installable. Choose between 3 output formats: name, concise and full.
タイプ |
デフォルト |
|
|---|---|---|
boolean |
|
|
文字列 |
||
文字列 |
||
文字列 |
||
文字列 |
||
Select the output format among 'id' (display the artifactId only), 'concise' (display name and artifactId) and 'full' (concise format and version related columns). Show more |
文字列 |
|
boolean |
|
|
MavenProject |
|
|
RepositorySystemSession |
|
|
List |
|
|
文字列 |
quarkus:list-platforms
List imported and optionally other platforms available for the project.
タイプ |
デフォルト |
|
|---|---|---|
文字列 |
||
文字列 |
||
文字列 |
||
boolean |
|
|
MavenProject |
|
|
RepositorySystemSession |
|
|
List |
|
quarkus:prepare
タイプ |
デフォルト |
|
|---|---|---|
Coordinates of the Maven artifact containing the original Java application to build the native image for. If not provided, the current project is assumed to be the original Java application. The coordinates are expected to be expressed in the following format: groupId:artifactId:classifier:type:version With the classifier, type and version being optional. If the type is missing, the artifact is assumed to be of type JAR. If the version is missing, the artifact is going to be looked up among the project dependencies using the provided coordinates. However, if the expression consists of only three parts, it is assumed to be groupId:artifactId:version. If the expression consists of only four parts, it is assumed to be groupId:artifactId:classifier:type. Show more |
文字列 |
|
File |
|
|
boolean |
||
文字列 |
|
|
When building an uber-jar, this array specifies entries that should be excluded from the final jar. The entries are relative to the root of the file. An example of this configuration could be: `<configuration> <uberJar>true</uberJar> <ignoredEntries> <ignoredEntry>META-INF/BC2048KE.SF</ignoredEntry> <ignoredEntry>META-INF/BC2048KE.DSA</ignoredEntry> <ignoredEntry>META-INF/BC1024KE.SF</ignoredEntry> <ignoredEntry>META-INF/BC1024KE.DSA</ignoredEntry> </ignoredEntries> </configuration> ` Show more |
java.lang.String[] |
|
Map |
||
List |
||
文字列 |
|
|
MojoExecution |
|
|
MavenProject |
|
|
Map |
||
RepositorySystemSession |
|
|
The project’s remote repositories to use for the resolution of artifacts and their dependencies. Show more |
List |
|
MavenSession |
|
|
boolean |
|
quarkus:prepare-tests
タイプ |
デフォルト |
|
|---|---|---|
Coordinates of the Maven artifact containing the original Java application to build the native image for. If not provided, the current project is assumed to be the original Java application. The coordinates are expected to be expressed in the following format: groupId:artifactId:classifier:type:version With the classifier, type and version being optional. If the type is missing, the artifact is assumed to be of type JAR. If the version is missing, the artifact is going to be looked up among the project dependencies using the provided coordinates. However, if the expression consists of only three parts, it is assumed to be groupId:artifactId:version. If the expression consists of only four parts, it is assumed to be groupId:artifactId:classifier:type. Show more |
文字列 |
|
File |
|
|
boolean |
||
文字列 |
|
|
When building an uber-jar, this array specifies entries that should be excluded from the final jar. The entries are relative to the root of the file. An example of this configuration could be: `<configuration> <uberJar>true</uberJar> <ignoredEntries> <ignoredEntry>META-INF/BC2048KE.SF</ignoredEntry> <ignoredEntry>META-INF/BC2048KE.DSA</ignoredEntry> <ignoredEntry>META-INF/BC1024KE.SF</ignoredEntry> <ignoredEntry>META-INF/BC1024KE.DSA</ignoredEntry> </ignoredEntries> </configuration> ` Show more |
java.lang.String[] |
|
Map |
||
List |
||
文字列 |
|
|
MojoExecution |
|
|
MavenProject |
|
|
Map |
||
RepositorySystemSession |
|
|
The project’s remote repositories to use for the resolution of artifacts and their dependencies. Show more |
List |
|
MavenSession |
|
|
boolean |
|
quarkus:remote-dev
The dev mojo, that connects to a remote host.
タイプ |
デフォルト |
|
|---|---|---|
文字列 |
|
|
File |
|
|
Additional parameters to pass to javac when recompiling changed source files. Show more |
List |
|
List |
||
If this server should be started in debug mode. The default is to start in debug mode and listen on port 5005. Whether the JVM is suspended waiting for a debugger to be attached, depends on the value of Show more |
文字列 |
|
文字列 |
|
|
文字列 |
|
|
boolean |
|
|
Whether to enforce the quarkus-maven-plugin build goal to be configured. By default, a missing build goal is considered an inconsistency (although the build goal is not required technically). In this case a warning will be logged and the application will not be started. Show more |
boolean |
|
Map |
||
文字列 |
|
|
Allows configuring the modules to add to the application. The listed modules will be added using: Show more |
List |
|
MojoExecution |
|
|
Whether changes in the projects that appear to be dependencies of the project containing the application to be launched should trigger hot-reload. By default, they do. Show more |
boolean |
|
boolean |
|
|
File |
|
|
List |
|
|
This value is intended to be set to true when some generated bytecode is erroneous causing the JVM to crash when the Show more |
boolean |
|
MavenProject |
|
|
文字列 |
|
|
RepositorySystemSession |
|
|
List |
|
|
MavenSession |
|
|
文字列 |
|
|
File |
|
|
Whether the JVM launch, in debug mode, should be suspended. This parameter is only relevant when the JVM is launched in Show more |
文字列 |
|
Map |
||
文字列 |
|
|
File |
quarkus:remove-extension
Allow removing an extension from an existing pom.xml file. Because you can remove one or several extension in one go, there are 2 mojos: remove-extensions and remove-extension. Both supports the extension and extensions parameters.
タイプ |
デフォルト |
|
|---|---|---|
文字列 |
||
文字列 |
||
文字列 |
||
文字列 |
||
Set |
||
MavenProject |
|
|
RepositorySystemSession |
|
|
List |
|
quarkus:remove-extensions
Allow removing extensions to an existing pom.xml file. Because you can remove one or several extension in one go, there are 2 mojos: remove-extensions and remove-extension. Both supports the extension and extensions parameters.
タイプ |
デフォルト |
|
|---|---|---|
文字列 |
||
文字列 |
||
文字列 |
||
文字列 |
||
Set |
||
MavenProject |
|
|
RepositorySystemSession |
|
|
List |
|
quarkus:test
The test mojo, that starts continuous testing outside of dev mode
タイプ |
デフォルト |
|
|---|---|---|
文字列 |
|
|
File |
|
|
Additional parameters to pass to javac when recompiling changed source files. Show more |
List |
|
List |
||
If this server should be started in debug mode. The default is to start in debug mode and listen on port 5005. Whether the JVM is suspended waiting for a debugger to be attached, depends on the value of Show more |
文字列 |
|
文字列 |
|
|
文字列 |
|
|
boolean |
|
|
Whether to enforce the quarkus-maven-plugin build goal to be configured. By default, a missing build goal is considered an inconsistency (although the build goal is not required technically). In this case a warning will be logged and the application will not be started. Show more |
boolean |
|
Map |
||
文字列 |
|
|
Allows configuring the modules to add to the application. The listed modules will be added using: Show more |
List |
|
MojoExecution |
|
|
Whether changes in the projects that appear to be dependencies of the project containing the application to be launched should trigger hot-reload. By default, they do. Show more |
boolean |
|
boolean |
|
|
File |
|
|
List |
|
|
This value is intended to be set to true when some generated bytecode is erroneous causing the JVM to crash when the Show more |
boolean |
|
MavenProject |
|
|
文字列 |
|
|
RepositorySystemSession |
|
|
List |
|
|
MavenSession |
|
|
文字列 |
|
|
File |
|
|
Whether the JVM launch, in debug mode, should be suspended. This parameter is only relevant when the JVM is launched in Show more |
文字列 |
|
Map |
||
文字列 |
|
|
File |
quarkus:update
Log Quarkus-related recommended updates, such as new Quarkus platform BOM versions and Quarkus extensions versions that aren’t managed by the Quarkus platform BOMs.
タイプ |
デフォルト |
|
|---|---|---|
文字列 |
||
文字列 |
||
文字列 |
||
If true, the information will be logged per each relevant module of the project instead of an overall summary Show more |
boolean |
|
MavenProject |
|
|
If true, the state of the project will be logged as if the recommended updates were applied Show more |
boolean |
|
If true, instead of checking and recommending the latest available Quarkus platform version, recommendations to properly align the current project configuration will be logged (if any) Show more |
boolean |
|
RepositorySystemSession |
|
|
List |
|