From 089745540d37181d476cf90b3dba4d209cf676d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Mathieu?= Date: Mon, 15 Jun 2020 09:32:26 +0200 Subject: [PATCH] Add uber-jar to the list of default packaging in the doc --- .../src/main/java/io/quarkus/deployment/pkg/PackageConfig.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/deployment/src/main/java/io/quarkus/deployment/pkg/PackageConfig.java b/core/deployment/src/main/java/io/quarkus/deployment/pkg/PackageConfig.java index 3f6acba711543..d1320dff85653 100644 --- a/core/deployment/src/main/java/io/quarkus/deployment/pkg/PackageConfig.java +++ b/core/deployment/src/main/java/io/quarkus/deployment/pkg/PackageConfig.java @@ -22,7 +22,8 @@ public class PackageConfig { /** * The requested output type. * - * The default built in types are jar and native + * The default built in types are 'jar', 'fast-jar' (a prototype more performant version of the default 'jar' type), + * 'uber-jar' and 'native'. */ @ConfigItem(defaultValue = JAR) public String type;