-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Maven
lindner edited this page Oct 28, 2014
·
11 revisions
The closure compiler is available in the Maven Central Repository.
We currently do not have an official plugin for compiling your JS with Maven, but there should be some unofficial plugins on the RelatedProjects page.
To include closure-compiler in your project add the following to your build configuration:
<dependency>
<groupId>com.google.javascript</groupId>
<artifactId>closure-compiler</artifactId>
<version>v20141023</version>
</dependency>
<dependency org="com.google.javascript" name="closure-compiler" rev="v20141023"/>
@Grapes(
@Grab(group='com.google.javascript', module='closure-compiler', version='v20141023')
)
'com.google.javascript:closure-compiler:jar: v20141023'
Releases before v20130227 were based on the subversion commit number. The following table identifies the matching date-based releases.
r2388 | Corresponds to the 20121212 release |
r2180 | Corresponds to the 20120917 release |
r2079 | Corresponds to the 20120711 release |
r1918 | Corresponds to the 20120430 release |
r1810 | Corresponds to the 20120305 release |
r1741 | Corresponds to the 20112023 release |
r1592 | Corresponds to the 20111114 release |
r1459 | Corresponds to the 20111003 release |
r1352 | Corresponds to the 20110811 release |
r946 | Corresponds to the 20110405 release |
r916 | Corresponds to the 20110322 release |
r706 | Corresponds to the 20110119 release |
r606 | Initial Mavenized Release |