-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
66 lines (54 loc) · 1.84 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?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.7-norhino.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>
<developers>
<developer>
<id>julienlecomte</id>
<name>Julien Lecomte</name>
</developer>
<developer>
<id>isaacs</id>
<name>Isaac Z. Schlueter</name>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>rhino</groupId>
<artifactId>js</artifactId>
<version>1.6R7</version>
</dependency>
</dependencies>
</project>