local dependencies to be added to the local maven repository

The following need to be manually installed into the local maven repository. Some are third party and covered by their copyright:

mvn install:install-file -Dfile=lucene-stellar.jar  -DgroupId=lucene \
  -DartifactId=lucene-stellar \
  -Dversion=1.0a  -Dpackaging=jar

mvn install:install-file -Dfile=jpedal-stellar.jar  -DgroupId=jpedal \
  -DartifactId=jpedal-stellar \
  -Dversion=1.0a  -Dpackaging=jar

pom files are needed to keep maven from trying to download the jars again and again, before finding them in the local repository. This may be a flaw in our procedure, or a missing feature in maven.

There are pom files in the directory with the jars, install them if needed:

cp lucene-stellar.pom $M2_REPO/lucene/lucene-stellar/1.0a/lucene-stellar-1.0a.pom
cp jpedal-stellar.pom $M2_REPO/jpedal/jpedal-stellar/1.0a/jpedal-stellar-1.0a.pom