Skip to content

Commit 5b9076a

Browse files
committed
Always generate the Config doc as it's not embedded in the jars
1 parent 3f03035 commit 5b9076a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

core/processor/src/main/java/io/quarkus/annotation/processor/ExtensionAnnotationProcessor.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,7 @@ public synchronized void init(ProcessingEnvironment processingEnv) {
6464
List<ExtensionProcessor> extensionProcessors = new ArrayList<>();
6565
extensionProcessors.add(new ExtensionBuildProcessor());
6666

67-
boolean skipDocs = Boolean.getBoolean("skipDocs") || Boolean.getBoolean("quickly");
68-
boolean generateDoc = !skipDocs && !"false".equals(processingEnv.getOptions().get(Options.GENERATE_DOC));
67+
boolean generateDoc = !"false".equals(processingEnv.getOptions().get(Options.GENERATE_DOC));
6968

7069
// for now, we generate the old config doc by default but we will change this behavior soon
7170
if (generateDoc) {

0 commit comments

Comments
 (0)