A Simple Project that downloads the current Closure Library and will publish it as a maven artifact.
This also is a great way for others to learn how to publish JavaScript libraries as artifacts in Maven. That way, people using Maven as their primary build tool can take it and use it in their projects with ease and use all of the Maven tools that are already created.
Requires you to install the following:
- C-shell
- Git or Subversion
- Ant
- Maven
- Clone this repo
- run
ant createPomFromInput -Drepo.version=x
(replacing 'x' with the version) or, if you just want the most recent version, runant createPomFromGit
- Commit your changes locally (which should only be the generated pom file)
- Run the release with the profile to perform releases with
mvn release:clean release:prepare release:perform