700 Software
700 Software

Reputation: 87773

Use Google Closure Compiler as a library instead of a script

Is it possible for me to write my own Java Main Class that calls methods in compiler.jar.

I would like to make multiple calls to the compiler and do not want to write code to use Runtime.exec and also do not want to have to wait for Java to load up before every call.

Upvotes: 1

Views: 1180

Answers (2)

Wiktor Walc
Wiktor Walc

Reputation: 5550

It looks like javadoc documentation is no longer available online. In order to create your local copy of documentation:

$ git clone https://github.com/google/closure-compiler.git
$ cd closure-compiler
$ ant javadoc

The documentation will be created in the build/javadoc folder.

Note that ANT is required to run the last command.

Upvotes: 2

Related Questions