ClojureScript depends on the Google Closure JavaScript Libraries,but Google does not publish those libraries in a Maven repository.The github action in this repo generates Maven projects for theGoogle Closure Library and, optionally, deploys them.
The Google Closure Libraries are divided into two parts: the mainlibrary and third-party extensions. The main library is Apachelicensed; the third-party extensions have a variety of differentlicenses. However, code in the main library depends on thethird-party extensions, not the other way around. See CLJS-418 fordetails.
To manage this, we build two JARs, google-closure-library andgoogle-closure-library-third-party, with the former declaring anexplicit dependency on the latter. This permits consumers to excludethe third-party libraries (and their various licenses) if they knowthey don't need them.
To match this structure, we need to alter the deps.js file that theGoogle Closure Compiler uses to resolve dependencies. See CLJS-276for details.
The last release ZIP made by Google was 20130212-95c19e7f0f5f. Toget newer versions, we have to go to the Git repository.