Closure Compiler.
Closure Compiler is a JavaScript optimizing compiler. It parses your JavaScript, analyzes it, removes dead code and rewrites and minimizes what's left. It also checks syntax, variable references, and types, and warns about common JavaScript pitfalls. It is used in many of Google's J....
Here is the list of declaration for closure-compiler. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.google.javascript</groupId> <artifactId>closure-compiler</artifactId> <version>v20130227</version> </dependency>
If you think this Maven repository POM file listing for closure-compiler is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.html.
The closure-compiler-v20130227 has 9 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Inversion of Control | guava 14.0 Guava is a suite of core and expanded libraries that include utility classes, google's collections, io classes, and much much more. Guava has two code dependencies - javax.annotation per the JSR-305 spec and javax.inject per the JSR-330 spec. | 58 |
Network | protobuf-java 2.4.1 Protocol Buffers are a way of encoding structured data in an efficient yet extensible format. | 129 |
JSON | json 20090211 JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. It is based on a subset of the JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 1999. JSON is a te... | 157 |
Testing Coding Style | jsr305 1.3.9 JSR305 Annotations for Findbugs | 150 |
Development | jarjar 1.1 Jar Jar Links is a utility that makes it easy to repackage Java libraries and embed them into your own distribution. | 11 |
JUnit | junit 4.10 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 1957 |
The following packages are defined in the closure-compiler-v20130227.jar
com.google.debugging.sourcemap com.google.debugging.sourcemap.proto com.google.javascript.jscomp com.google.javascript.jscomp.ant com.google.javascript.jscomp.deps com.google.javascript.jscomp.graph com.google.javascript.jscomp.parsing com.google.javascript.jscomp.regex com.google.javascript.jscomp.type com.google.javascript.rhino com.google.javascript.rhino.head com.google.javascript.rhino.head.annotations com.google.javascript.rhino.head.ast com.google.javascript.rhino.head.commonjs.module com.google.javascript.rhino.head.commonjs.module.provider com.google.javascript.rhino.head.debug com.google.javascript.rhino.head.jdk13 com.google.javascript.rhino.head.jdk15 com.google.javascript.rhino.head.json com.google.javascript.rhino.head.optimizer com.google.javascript.rhino.head.regexp com.google.javascript.rhino.head.serialize com.google.javascript.rhino.head.tools com.google.javascript.rhino.head.tools.debugger com.google.javascript.rhino.head.tools.debugger.treetable com.google.javascript.rhino.head.tools.idswitch com.google.javascript.rhino.head.tools.jsc com.google.javascript.rhino.head.tools.shell com.google.javascript.rhino.head.v8dtoa com.google.javascript.rhino.head.xml com.google.javascript.rhino.jstype org.mozilla.classfile
Here is the content of the POM file.
<!-- Copyright 2009 Google Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" > <modelVersion>4.0.0</modelVersion> <groupId>com.google.javascript</groupId> <artifactId>closure-compiler</artifactId> <packaging>jar</packaging> <name>Closure Compiler</name> <version>v20130227</version> <url>http://code.google.com/p/closure-compiler/</url> <description> Closure Compiler is a JavaScript optimizing compiler. It parses your JavaScript, analyzes it, removes dead code and rewrites and minimizes what's left. It also checks syntax, variable references, and types, and warns about common JavaScript pitfalls. It is used in many of Google's JavaScript apps, including Gmail, Google Web Search, Google Maps, and Google Docs. </description> <inceptionYear>2009</inceptionYear> <scm> <connection> scm:svn:http://closure-compiler.googlecode.com/svn/trunk </connection> <developerConnection> scm:svn:https://closure-compiler.googlecode.com/svn/trunk </developerConnection> <url> http://code.google.com/p/closure-compiler/source/browse/#svn/trunk </url> </scm> <issueManagement> <system>code.google.com</system> <url>http://code.google.com/p/closure-compiler/issues</url> </issueManagement> <organization> <name>Google</name> <url>http://www.google.com</url> </organization> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.html</url> <distribution>repo</distribution> </license> </licenses> <repositories> <repository> <id>central</id> <name>Maven Repository Switchboard</name> <layout>default</layout> <url>http://repo1.maven.org/maven2</url> <snapshots> <enabled>false</enabled> </snapshots> </repository> <repository> <id>caja</id> <url>http://google-caja.googlecode.com/svn/maven</url> </repository> </repositories> <dependencies> <dependency> <groupId>args4j</groupId> <artifactId>args4j</artifactId> <version>2.0.16</version> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>14.0</version> </dependency> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java</artifactId> <version>2.4.1</version> </dependency> <dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> <version>20090211</version> </dependency> <dependency> <groupId>org.apache.ant</groupId> <artifactId>ant</artifactId> <version>1.8.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>1.3.9</version> </dependency> <dependency> <groupId>com.googlecode.jarjar</groupId> <artifactId>jarjar</artifactId> <version>1.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> <dependency> <groupId>caja</groupId> <artifactId>caja</artifactId> <version>r4939</version> <scope>test</scope> </dependency> </dependencies> </project>