-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathclosure-compiler-parent.pom.xml
105 lines (90 loc) · 3.46 KB
/
closure-compiler-parent.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!--
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-parent</artifactId>
<packaging>pom</packaging>
<name>Closure Compiler Parent</name>
<version>1.0-SNAPSHOT</version>
<url>https://github.com/google/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>
<prerequisites>
<maven>2.2.1</maven>
</prerequisites>
<scm>
<connection>
scm:git:https://github.com/google/closure-compiler.git
</connection>
<developerConnection>
scm:git:[email protected]:google/closure-compiler.git
</developerConnection>
<url>
https://github.com/google/closure-compiler
</url>
</scm>
<issueManagement>
<system>code.google.com</system>
<url>http://github.com/google/closure-compiler/issues</url>
</issueManagement>
<organization>
<name>Google</name>
<url>http://www.google.com</url>
</organization>
<developers>
<developer>
<id>closure-compiler-authors</id>
<name>Closure Compiler Authors</name>
<email>[email protected] </email>
</developer>
</developers>
<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>
<!--
TODO: test deployment without this parent.
http://central.sonatype.org/pages/apache-maven.html#deprecated-oss-parent says
> In the past all the plugin configuration and other setup was
> managed by a Maven parent POM with the latest coordinates of
> org.sonatype.oss:oss-parent:9. This project leaked SCM, URL and
> other details and its usage is discouraged. Maintenance of the
> project has stopped and it no longer works with latest tooling
> such as Maven versions or Java versions.
It may be sufficient to include a <distributionManagement> per
http://central.sonatype.org/pages/apache-maven.html#distribution-management-and-authentication
-->
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>9</version>
</parent>
<modules>
<module>closure-compiler-externs.pom.xml</module>
<module>closure-compiler-main.pom.xml</module>
</modules>
</project>