diff options
author | David Ostrovsky <david@ostrovsky.org> | 2017-03-18 16:13:26 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2017-03-21 09:24:12 +0100 |
commit | 0f6ddb372bc24a010c85849dfc80f72fc8cd604d (patch) | |
tree | 9b25cdc0b3e54803902559b7c3eeb82627fb0513 /org.eclipse.jgit.pgm | |
parent | cee9d444e97858d441b5de0f4c357bccbe4952f2 (diff) | |
download | jgit-0f6ddb372bc24a010c85849dfc80f72fc8cd604d.tar.gz jgit-0f6ddb372bc24a010c85849dfc80f72fc8cd604d.zip |
Add remaining parts of the bazel build
Add bazel build for ui and junit.http, and the test packages.
A number of different test labels are supported:
api
attributes
dfs
diff
http
lfs
lfs-server
nls
notes
pack
patch
pgm
reftree
revplot
revwalk
storage
submodule
symlinks
transport
treewalk
util
To run all tests:
bazel test //...
To run specific tests, using labels:
bazel test --test_tag_filters=api,dfs,revplot,treewalk //...
Change-Id: Ic41b05a79d855212e67b1b4707e9c6b4dc9ea70d
Signed-off-by: David Ostrovsky <david@ostrovsky.org>
Signed-off-by: Jonathan Nieder <jrn@google.com>
Diffstat (limited to 'org.eclipse.jgit.pgm')
-rw-r--r-- | org.eclipse.jgit.pgm/BUILD | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/org.eclipse.jgit.pgm/BUILD b/org.eclipse.jgit.pgm/BUILD new file mode 100644 index 0000000000..6d3279031e --- /dev/null +++ b/org.eclipse.jgit.pgm/BUILD @@ -0,0 +1,38 @@ +java_library( + name = "pgm", + srcs = glob(["src/**"]), + resource_strip_prefix = "org.eclipse.jgit.pgm/resources", + resources = glob(["resources/**"]), + visibility = ["//visibility:public"], + deps = [ + ":services", + "//lib:args4j", + "//lib:httpclient", + "//lib:httpcore", + "//lib:jetty-http", + "//lib:jetty-io", + "//lib:jetty-security", + "//lib:jetty-server", + "//lib:jetty-servlet", + "//lib:jetty-util", + "//lib:servlet-api", + "//org.eclipse.jgit.archive:jgit-archive", + "//org.eclipse.jgit.http.apache:http-apache", + "//org.eclipse.jgit:jgit", + "//org.eclipse.jgit.lfs:jgit-lfs", + "//org.eclipse.jgit.lfs.server:jgit-lfs-server", + "//org.eclipse.jgit.ui:ui", + ], +) + +java_import( + name = "services", + jars = [":services_jar"], +) + +genrule( + name = "services_jar", + srcs = glob(["META-INF/services/*"]), + outs = ["services_jar.jar"], + cmd = "r=$$PWD && cd org.eclipse.jgit.pgm && zip -qr $$r/$@ .", +) |