6667686970717273
options.setVerbose(verbose); createOutputDirectory(); options.setOutDir(outputDirectory); CompilerOptions compilerOptions = options.getCompilerOptions(); Compiler compiler = new Compiler(compilerOptions); compiler.execute(); }
464748495051525354555657
return; } try { CommonsLoggingConfig.configure(compilerOptions.isVerbose()); Compiler compiler = new Compiler(compilerOptions); compiler.execute(); } catch(Exception ex) { ex.printStackTrace(); throw new RuntimeException(ex.getMessage(), ex); }
8283848586878889
public void execute() throws BuildException { CompilerOptions compilerOptions = options.getCompilerOptions(); CommonsLoggingConfig.configure(compilerOptions.isVerbose()); Compiler compiler = new Compiler(compilerOptions); compiler.execute(); }