forked from google/closure-compiler
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update readme, poms, and deploy script for first release
- Loading branch information
Showing
4 changed files
with
82 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,14 +25,19 @@ | |
<name>Closure Compiler Parent</name> | ||
<version>0.3-SNAPSHOT</version> | ||
|
||
<url>https://github.com/google/closure-compiler/</url> | ||
<url>https://github.com/vertispan/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. | ||
This distribution is slightly modified from the original for easier use | ||
with J2CL outside of Bazel by Vertispan LLC. The links and references in | ||
this pom.xml will reference the Vertispan fork, to ensure that any error | ||
introduced by our changes are not incorrectly blamed on the upstream | ||
Google repository. | ||
</description> | ||
<inceptionYear>2009</inceptionYear> | ||
|
||
|
@@ -42,31 +47,32 @@ | |
|
||
<scm> | ||
<connection> | ||
scm:git:https://github.com/google/closure-compiler.git | ||
scm:git:https://github.com/vertispan/closure-compiler.git | ||
</connection> | ||
<developerConnection> | ||
scm:git:[email protected]:google/closure-compiler.git | ||
scm:git:[email protected]:vertispan/closure-compiler.git | ||
</developerConnection> | ||
<url> | ||
https://github.com/google/closure-compiler | ||
https://github.com/vertispan/closure-compiler | ||
</url> | ||
</scm> | ||
|
||
<issueManagement> | ||
<system>code.google.com</system> | ||
<url>http://github.com/google/closure-compiler/issues</url> | ||
<system>GitHub Issues</system> | ||
<url>http://github.com/vertispan/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> | ||
<email>[email protected]</email> | ||
</developer> | ||
<developer> | ||
<name>Colin Alworth</name> | ||
<email>[email protected]</email> | ||
<organization>Vertispan LLC</organization> | ||
<organizationUrl>https://www.vertispan.com/</organizationUrl> | ||
</developer> | ||
</developers> | ||
|
||
|