You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.2 KiB
46 lines
1.2 KiB
java_library( |
|
name = "pgm", |
|
srcs = glob(["src/**/*.java"]), |
|
resource_strip_prefix = "org.eclipse.jgit.pgm/resources", |
|
resources = glob(["resources/**"]), |
|
visibility = ["//visibility:public"], |
|
deps = [ |
|
":services", |
|
"//lib:args4j", |
|
"//lib:commons-logging", |
|
"//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.ssh.apache:ssh-apache", |
|
"//org.eclipse.jgit.ui:ui", |
|
], |
|
) |
|
|
|
java_binary( |
|
name = "jgit", |
|
main_class = "org.eclipse.jgit.pgm.Main", |
|
runtime_deps = [":pgm"], |
|
) |
|
|
|
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/$@ .", |
|
)
|
|
|