diff --git a/mbi/core/src/org/fedoraproject/mbi/tool/compiler/CompilerTool.java b/mbi/core/src/org/fedoraproject/mbi/tool/compiler/CompilerTool.java index effd9f85..08fd9725 100644 --- a/mbi/core/src/org/fedoraproject/mbi/tool/compiler/CompilerTool.java +++ b/mbi/core/src/org/fedoraproject/mbi/tool/compiler/CompilerTool.java @@ -160,6 +160,7 @@ public void execute() options.add( "--release" ); options.add( release + "" ); } + options.add( "-proc:full" ); options.add( "-cp" ); options.add( getClassPath().stream().map( Path::toString ).collect( Collectors.joining( ":" ) ) ); StringWriter compilerOutput = new StringWriter();