Refactor our Maven build to be modular
commitdad52baae835f28c7fc4b8cc184f8f6703433ac4
authorShawn O. Pearce <spearce@spearce.org>
Sun, 1 Nov 2009 01:07:26 +0000 (31 18:07 -0700)
committerShawn O. Pearce <spearce@spearce.org>
Tue, 3 Nov 2009 01:53:58 +0000 (2 17:53 -0800)
tree7e05cd6c16bbd00837a16dd47d42120addd28eff
parent5b89088f877fdc52d6e5de23be47da940838e4df
Refactor our Maven build to be modular

Drop our simple and stupid jgit.sh and instead rely upon Maven
for the command line based build.  Maven is relatively simple to
download and install, and doesn't require the entire Eclipse IDE.

To avoid too much refactoring of the current code we reuse the
existing src/ directory within each plugin, and treat each of
the existing OSGI bundles as one Maven artifact.

The command line wrapper jgit.sh no longer works in the uncompiled
state, as we don't know where to obtain our JSch or args4j from.
Developers will now need to compile it with `mvn package`, or run
our Main class from within an IDE which has the proper classpath.

Bug: 291265
Change-Id: I355e95fa92fa7502651091d2b651be6917a26805
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
16 files changed:
.gitignore [deleted file]
jgit-maven/.gitignore [deleted file]
jgit-maven/jgit/pom.xml [deleted file]
make_jgit.sh [deleted file]
org.eclipse.jgit.pgm/.gitignore
org.eclipse.jgit.pgm/META-INF/MANIFEST.MF
org.eclipse.jgit.pgm/jgit.sh [moved from jgit.sh with 86% similarity]
org.eclipse.jgit.pgm/pom.xml [new file with mode: 0644]
org.eclipse.jgit.test/.gitignore
org.eclipse.jgit.test/pom.xml [new file with mode: 0644]
org.eclipse.jgit.ui/.gitignore
org.eclipse.jgit.ui/plugin.properties
org.eclipse.jgit.ui/pom.xml [new file with mode: 0644]
org.eclipse.jgit/.gitignore
org.eclipse.jgit/pom.xml [new file with mode: 0644]
pom.xml [new file with mode: 0644]