Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

...

Apache has 2 official maven repositories for incubating projects (see http://apache.org/dev/repository-faq.htmlImage Removed ). The repositories are on people.apache.org/repo/:

...

which works if you have putty installed (be sure to point at your own privateKey file, and start Pageant). More info about this here: http://maven.apache.org/plugins/maven-deploy-plugin/examples/deploy-ssh-external.htmlImage Removed

Then, to do a deployment, execute the following command (from the uimaj directory):
mvn source:jar deploy
The source:jar builds a jar having all the sources, signs it, and deploys it. Our uimaj POM specifies both a regular repository location and a snapshot repository location, following the above conventions.

...