yui compressor.
The YUI Compressor is a JavaScript compressor which, in addition to removing comments and white-spaces, obfuscates local variables using the smallest possible variable name. This obfuscation is safe, even when using constructs such as 'eval' or 'with' (although the compression is not op....
Here is the list of declaration for yuicompressor. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.yahoo.platform.yui</groupId> <artifactId>yuicompressor</artifactId> <version>2.4.2</version> </dependency>
If you think this Maven repository POM file listing for yuicompressor is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:BSD License
URL: http://developer.yahoo.com/yui/license.html.
The yuicompressor-2.4.2 has 1 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 |
---|---|---|
Scripting | js 1.6R7 Rhino: JavaScript for Java | 11 |
The following packages are defined in the yuicompressor-2.4.2.jar
com.yahoo.platform.yui.compressor jargs.gnu org.mozilla.javascript
Here is the content of the POM file.
<?xml version="1.0"?> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.yahoo.platform.yui</groupId> <artifactId>yuicompressor</artifactId> <version>2.4.2</version> <packaging>jar</packaging> <name>yui compressor</name> <url>http://developer.yahoo.com/yui/compressor/</url> <description> The YUI Compressor is a JavaScript compressor which, in addition to removing comments and white-spaces, obfuscates local variables using the smallest possible variable name. This obfuscation is safe, even when using constructs such as 'eval' or 'with' (although the compression is not optimal is those cases) Compared to jsmin, the average savings is around 20%. </description> <licenses> <license> <name>BSD License</name> <url>http://developer.yahoo.com/yui/license.html</url> <distribution>repo</distribution> </license> </licenses> <mailingLists> <mailingList> <name>ydn-javascript</name> <archive>http://tech.groups.yahoo.com/group/ydn-javascript/</archive> </mailingList> </mailingLists> <scm> <connection>scm:git:git://github.com/yui/yuicompressor.git</connection> <url>http://github.com/yui/yuicompressor</url> </scm> <dependencies> <dependency> <groupId>rhino</groupId> <artifactId>js</artifactId> <version>1.6R7</version> </dependency> </dependencies> </project>