|
| 1 | +<!-- |
| 2 | + Copyright 2009 Google Inc. |
| 3 | +
|
| 4 | + Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + you may not use this file except in compliance with the License. |
| 6 | + You may obtain a copy of the License at |
| 7 | +
|
| 8 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | +
|
| 10 | + Unless required by applicable law or agreed to in writing, software |
| 11 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + See the License for the specific language governing permissions and |
| 14 | + limitations under the License. |
| 15 | +--> |
| 16 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 17 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 18 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
| 19 | + > |
| 20 | + <modelVersion>4.0.0</modelVersion> |
| 21 | + <groupId>com.google.javascript</groupId> |
| 22 | + <artifactId>closure-compiler-parent</artifactId> |
| 23 | + <packaging>pom</packaging> |
| 24 | + |
| 25 | + <name>Closure Compiler Parent</name> |
| 26 | + <version>1.0-SNAPSHOT</version> |
| 27 | + |
| 28 | + <url>https://github.com/google/closure-compiler/</url> |
| 29 | + <description> |
| 30 | + Closure Compiler is a JavaScript optimizing compiler. It parses your |
| 31 | + JavaScript, analyzes it, removes dead code and rewrites and minimizes |
| 32 | + what's left. It also checks syntax, variable references, and types, and |
| 33 | + warns about common JavaScript pitfalls. It is used in many of Google's |
| 34 | + JavaScript apps, including Gmail, Google Web Search, Google Maps, and |
| 35 | + Google Docs. |
| 36 | + </description> |
| 37 | + <inceptionYear>2009</inceptionYear> |
| 38 | + |
| 39 | + <prerequisites> |
| 40 | + <maven>2.2.1</maven> |
| 41 | + </prerequisites> |
| 42 | + |
| 43 | + <scm> |
| 44 | + <connection> |
| 45 | + scm:git:https://github.com/google/closure-compiler.git |
| 46 | + </connection> |
| 47 | + <developerConnection> |
| 48 | + scm:git: [email protected]:google/closure-compiler.git |
| 49 | + </developerConnection> |
| 50 | + <url> |
| 51 | + https://github.com/google/closure-compiler |
| 52 | + </url> |
| 53 | + </scm> |
| 54 | + |
| 55 | + <issueManagement> |
| 56 | + <system>code.google.com</system> |
| 57 | + <url>https://github.com/google/closure-compiler/issues</url> |
| 58 | + </issueManagement> |
| 59 | + |
| 60 | + <organization> |
| 61 | + <name>Google</name> |
| 62 | + <url>http://www.google.com</url> |
| 63 | + </organization> |
| 64 | + |
| 65 | + <developers> |
| 66 | + <developer> |
| 67 | + <id>closure-compiler-authors</id> |
| 68 | + <name>Closure Compiler Authors</name> |
| 69 | + |
| 70 | + </developer> |
| 71 | + </developers> |
| 72 | + |
| 73 | + <licenses> |
| 74 | + <license> |
| 75 | + <name>The Apache Software License, Version 2.0</name> |
| 76 | + <url>http://www.apache.org/licenses/LICENSE-2.0.html</url> |
| 77 | + <distribution>repo</distribution> |
| 78 | + </license> |
| 79 | + </licenses> |
| 80 | + |
| 81 | + <!-- |
| 82 | + TODO: test deployment without this parent. |
| 83 | + http://central.sonatype.org/pages/apache-maven.html#deprecated-oss-parent says |
| 84 | +
|
| 85 | + > In the past all the plugin configuration and other setup was |
| 86 | + > managed by a Maven parent POM with the latest coordinates of |
| 87 | + > org.sonatype.oss:oss-parent:9. This project leaked SCM, URL and |
| 88 | + > other details and its usage is discouraged. Maintenance of the |
| 89 | + > project has stopped and it no longer works with latest tooling |
| 90 | + > such as Maven versions or Java versions. |
| 91 | +
|
| 92 | + It may be sufficient to include a <distributionManagement> per |
| 93 | + http://central.sonatype.org/pages/apache-maven.html#distribution-management-and-authentication |
| 94 | + --> |
| 95 | + <parent> |
| 96 | + <groupId>org.sonatype.oss</groupId> |
| 97 | + <artifactId>oss-parent</artifactId> |
| 98 | + <version>9</version> |
| 99 | + </parent> |
| 100 | + |
| 101 | + <modules> |
| 102 | + <module>closure-compiler-externs.pom.xml</module> |
| 103 | + <module>closure-compiler-main.pom.xml</module> |
| 104 | + </modules> |
| 105 | +</project> |
0 commit comments