xref: /JGit/WORKSPACE (revision 452c38cd2285df77b831406e7eeab2dc778bdf1c)
1e92a0c3aSDavid Ostrovskyworkspace(name = "jgit")
2e92a0c3aSDavid Ostrovsky
3f75effdaSDavid Pursehouseload("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
4f75effdaSDavid Pursehouse
5f75effdaSDavid Pursehousehttp_archive(
6f75effdaSDavid Pursehouse    name = "bazel_skylib",
715edb0c3SDavid Ostrovsky    sha256 = "2ea8a5ed2b448baf4a6855d3ce049c4c452a6470b1efd1504fdb7c1c134d220a",
815edb0c3SDavid Ostrovsky    strip_prefix = "bazel-skylib-0.8.0",
915edb0c3SDavid Ostrovsky    urls = ["https://github.com/bazelbuild/bazel-skylib/archive/0.8.0.tar.gz"],
10f75effdaSDavid Pursehouse)
11f75effdaSDavid Pursehouse
12e626c559SDavid Pursehouseload("@bazel_skylib//lib:versions.bzl", "versions")
13f75effdaSDavid Pursehouse
14cae8d499SDavid Ostrovskyversions.check(minimum_bazel_version = "0.29.0")
15f75effdaSDavid Pursehouse
16e92a0c3aSDavid Ostrovskyload("//tools:bazlets.bzl", "load_bazlets")
17dd5e500aSDavid Pursehouse
1866169ca7SDavid Pursehouseload_bazlets(commit = "09a035e98077dce549d5f6a7472d06c4b8f792d2")
19dd5e500aSDavid Pursehouse
20dd5e500aSDavid Pursehouseload(
21dd5e500aSDavid Pursehouse    "@com_googlesource_gerrit_bazlets//tools:maven_jar.bzl",
22dd5e500aSDavid Pursehouse    "maven_jar",
23e92a0c3aSDavid Ostrovsky)
24e92a0c3aSDavid Ostrovsky
25*452c38cdSMatthias SohnJMH_VERS = "1.21"
26*452c38cdSMatthias Sohn
27*452c38cdSMatthias Sohnmaven_jar(
28*452c38cdSMatthias Sohn    name = "jmh-core",
29*452c38cdSMatthias Sohn    artifact = "org.openjdk.jmh:jmh-core:" + JMH_VERS,
30*452c38cdSMatthias Sohn    attach_source = False,
31*452c38cdSMatthias Sohn    sha1 = "442447101f63074c61063858033fbfde8a076873",
32*452c38cdSMatthias Sohn)
33*452c38cdSMatthias Sohn
34*452c38cdSMatthias Sohnmaven_jar(
35*452c38cdSMatthias Sohn    name = "jmh-annotations",
36*452c38cdSMatthias Sohn    artifact = "org.openjdk.jmh:jmh-generator-annprocess:" + JMH_VERS,
37*452c38cdSMatthias Sohn    attach_source = False,
38*452c38cdSMatthias Sohn    sha1 = "7aac374614a8a76cad16b91f1a4419d31a7dcda3",
39*452c38cdSMatthias Sohn)
40*452c38cdSMatthias Sohn
41*452c38cdSMatthias Sohnmaven_jar(
42*452c38cdSMatthias Sohn    name = "jopt",
43*452c38cdSMatthias Sohn    artifact = "net.sf.jopt-simple:jopt-simple:5.0.4",
44*452c38cdSMatthias Sohn    attach_source = False,
45*452c38cdSMatthias Sohn    sha1 = "4fdac2fbe92dfad86aa6e9301736f6b4342a3f5c",
46*452c38cdSMatthias Sohn)
47*452c38cdSMatthias Sohn
48*452c38cdSMatthias Sohnmaven_jar(
49*452c38cdSMatthias Sohn    name = "math3",
50*452c38cdSMatthias Sohn    artifact = "org.apache.commons:commons-math3:3.6.1",
51*452c38cdSMatthias Sohn    attach_source = False,
52*452c38cdSMatthias Sohn    sha1 = "e4ba98f1d4b3c80ec46392f25e094a6a2e58fcbf",
53*452c38cdSMatthias Sohn)
54*452c38cdSMatthias Sohn
55e92a0c3aSDavid Ostrovskymaven_jar(
56dd5e500aSDavid Pursehouse    name = "jsch",
574d46a68aSMatthias Sohn    artifact = "com.jcraft:jsch:0.1.55",
584d46a68aSMatthias Sohn    sha1 = "bbd40e5aa7aa3cfad5db34965456cee738a42a50",
59e92a0c3aSDavid Ostrovsky)
60e92a0c3aSDavid Ostrovsky
61e92a0c3aSDavid Ostrovskymaven_jar(
62cdc88247SMatthias Sohn    name = "jzlib",
63cdc88247SMatthias Sohn    artifact = "com.jcraft:jzlib:1.1.1",
64cdc88247SMatthias Sohn    sha1 = "a1551373315ffc2f96130a0e5704f74e151777ba",
65cdc88247SMatthias Sohn)
66cdc88247SMatthias Sohn
67cdc88247SMatthias Sohnmaven_jar(
68dd5e500aSDavid Pursehouse    name = "javaewah",
69dd5e500aSDavid Pursehouse    artifact = "com.googlecode.javaewah:JavaEWAH:1.1.6",
70dd5e500aSDavid Pursehouse    sha1 = "94ad16d728b374d65bd897625f3fbb3da223a2b6",
71e92a0c3aSDavid Ostrovsky)
72e92a0c3aSDavid Ostrovsky
73e92a0c3aSDavid Ostrovskymaven_jar(
74dd5e500aSDavid Pursehouse    name = "httpclient",
754d46a68aSMatthias Sohn    artifact = "org.apache.httpcomponents:httpclient:4.5.6",
764d46a68aSMatthias Sohn    sha1 = "1afe5621985efe90a92d0fbc9be86271efbe796f",
77e92a0c3aSDavid Ostrovsky)
78e92a0c3aSDavid Ostrovsky
79e92a0c3aSDavid Ostrovskymaven_jar(
80dd5e500aSDavid Pursehouse    name = "httpcore",
814d46a68aSMatthias Sohn    artifact = "org.apache.httpcomponents:httpcore:4.4.10",
824d46a68aSMatthias Sohn    sha1 = "acc54d9b28bdffe4bbde89ed2e4a1e86b5285e2b",
83e92a0c3aSDavid Ostrovsky)
84e92a0c3aSDavid Ostrovsky
85e92a0c3aSDavid Ostrovskymaven_jar(
86af547cf0SDavid Pursehouse    name = "commons-codec",
876dd25814SMatthias Sohn    artifact = "commons-codec:commons-codec:1.10",
886dd25814SMatthias Sohn    sha1 = "4b95f4897fa13f2cd904aee711aeafc0c5295cd8",
890f6ddb37SDavid Ostrovsky)
900f6ddb37SDavid Ostrovsky
910f6ddb37SDavid Ostrovskymaven_jar(
92af547cf0SDavid Pursehouse    name = "commons-logging",
936dd25814SMatthias Sohn    artifact = "commons-logging:commons-logging:1.2",
946dd25814SMatthias Sohn    sha1 = "4bfc12adfe4842bf07b657f0369c4cb522955686",
95e92a0c3aSDavid Ostrovsky)
96e92a0c3aSDavid Ostrovsky
97e92a0c3aSDavid Ostrovskymaven_jar(
98af547cf0SDavid Pursehouse    name = "log-api",
99dd5e500aSDavid Pursehouse    artifact = "org.slf4j:slf4j-api:1.7.2",
100dd5e500aSDavid Pursehouse    sha1 = "0081d61b7f33ebeab314e07de0cc596f8e858d97",
101e92a0c3aSDavid Ostrovsky)
102e92a0c3aSDavid Ostrovsky
103e92a0c3aSDavid Ostrovskymaven_jar(
104af547cf0SDavid Pursehouse    name = "slf4j-simple",
105dd5e500aSDavid Pursehouse    artifact = "org.slf4j:slf4j-simple:1.7.2",
106dd5e500aSDavid Pursehouse    sha1 = "760055906d7353ba4f7ce1b8908bc6b2e91f39fa",
107e92a0c3aSDavid Ostrovsky)
108e92a0c3aSDavid Ostrovsky
109e92a0c3aSDavid Ostrovskymaven_jar(
110af547cf0SDavid Pursehouse    name = "servlet-api-3_1",
111dd5e500aSDavid Pursehouse    artifact = "javax.servlet:javax.servlet-api:3.1.0",
112dd5e500aSDavid Pursehouse    sha1 = "3cd63d075497751784b2fa84be59432f4905bf7c",
113e92a0c3aSDavid Ostrovsky)
114e92a0c3aSDavid Ostrovsky
115e92a0c3aSDavid Ostrovskymaven_jar(
116af547cf0SDavid Pursehouse    name = "commons-compress",
11713ba592fSDavid Pursehouse    artifact = "org.apache.commons:commons-compress:1.15",
11813ba592fSDavid Pursehouse    sha1 = "b686cd04abaef1ea7bc5e143c080563668eec17e",
119e92a0c3aSDavid Ostrovsky)
120e92a0c3aSDavid Ostrovsky
121e92a0c3aSDavid Ostrovskymaven_jar(
122af547cf0SDavid Pursehouse    name = "tukaani-xz",
12313ba592fSDavid Pursehouse    artifact = "org.tukaani:xz:1.6",
12413ba592fSDavid Pursehouse    sha1 = "05b6f921f1810bdf90e25471968f741f87168b64",
125e92a0c3aSDavid Ostrovsky)
126e92a0c3aSDavid Ostrovsky
127e92a0c3aSDavid Ostrovskymaven_jar(
128dd5e500aSDavid Pursehouse    name = "args4j",
1294e913fceSDavid Pursehouse    artifact = "args4j:args4j:2.33",
1304e913fceSDavid Pursehouse    sha1 = "bd87a75374a6d6523de82fef51fc3cfe9baf9fc9",
131e92a0c3aSDavid Ostrovsky)
132e92a0c3aSDavid Ostrovsky
133e92a0c3aSDavid Ostrovskymaven_jar(
134dd5e500aSDavid Pursehouse    name = "junit",
1356dd25814SMatthias Sohn    artifact = "junit:junit:4.12",
1366dd25814SMatthias Sohn    sha1 = "2973d150c0dc1fefe998f834810d68f278ea58ec",
137e92a0c3aSDavid Ostrovsky)
138e92a0c3aSDavid Ostrovsky
139e92a0c3aSDavid Ostrovskymaven_jar(
140af547cf0SDavid Pursehouse    name = "hamcrest-library",
141dd5e500aSDavid Pursehouse    artifact = "org.hamcrest:hamcrest-library:1.3",
142dd5e500aSDavid Pursehouse    sha1 = "4785a3c21320980282f9f33d0d1264a69040538f",
143e92a0c3aSDavid Ostrovsky)
144e92a0c3aSDavid Ostrovsky
145e92a0c3aSDavid Ostrovskymaven_jar(
146af547cf0SDavid Pursehouse    name = "hamcrest-core",
147dd5e500aSDavid Pursehouse    artifact = "org.hamcrest:hamcrest-core:1.3",
148dd5e500aSDavid Pursehouse    sha1 = "42a25dc3219429f0e5d060061f71acb49bf010a0",
149e92a0c3aSDavid Ostrovsky)
150e92a0c3aSDavid Ostrovsky
151e92a0c3aSDavid Ostrovskymaven_jar(
1524d46a68aSMatthias Sohn    name = "mockito-core",
1534d46a68aSMatthias Sohn    artifact = "org.mockito:mockito-core:2.23.0",
1544d46a68aSMatthias Sohn    sha1 = "497ddb32fd5d01f9dbe99a2ec790aeb931dff1b1",
1554d46a68aSMatthias Sohn)
1564d46a68aSMatthias Sohn
1574d46a68aSMatthias Sohnmaven_jar(
1584d46a68aSMatthias Sohn    name = "bytebuddy",
1594d46a68aSMatthias Sohn    artifact = "net.bytebuddy:byte-buddy:1.9.0",
1604d46a68aSMatthias Sohn    sha1 = "8cb0d5baae526c9df46ae17693bbba302640538b",
1614d46a68aSMatthias Sohn)
1624d46a68aSMatthias Sohn
1634d46a68aSMatthias Sohnmaven_jar(
1644d46a68aSMatthias Sohn    name = "bytebuddy-agent",
1654d46a68aSMatthias Sohn    artifact = "net.bytebuddy:byte-buddy-agent:1.9.0",
1664d46a68aSMatthias Sohn    sha1 = "37b5703b4a6290be3fffc63ae9c6bcaaee0ff856",
1674d46a68aSMatthias Sohn)
1684d46a68aSMatthias Sohn
1694d46a68aSMatthias Sohnmaven_jar(
1704d46a68aSMatthias Sohn    name = "objenesis",
1714d46a68aSMatthias Sohn    artifact = "org.objenesis:objenesis:2.6",
1724d46a68aSMatthias Sohn    sha1 = "639033469776fd37c08358c6b92a4761feb2af4b",
1734d46a68aSMatthias Sohn)
1744d46a68aSMatthias Sohn
1754d46a68aSMatthias Sohnmaven_jar(
176dd5e500aSDavid Pursehouse    name = "gson",
177f3bb0e26SDavid Pursehouse    artifact = "com.google.code.gson:gson:2.8.2",
178f3bb0e26SDavid Pursehouse    sha1 = "3edcfe49d2c6053a70a2a47e4e1c2f94998a49cf",
179e92a0c3aSDavid Ostrovsky)
1800f6ddb37SDavid Ostrovsky
181b31f9661SMatthias SohnJETTY_VER = "9.4.11.v20180605"
1820f6ddb37SDavid Ostrovsky
1830f6ddb37SDavid Ostrovskymaven_jar(
184af547cf0SDavid Pursehouse    name = "jetty-servlet",
1850f6ddb37SDavid Ostrovsky    artifact = "org.eclipse.jetty:jetty-servlet:" + JETTY_VER,
186b31f9661SMatthias Sohn    sha1 = "66d31900fcfc70e3666f0b3335b6660635154f98",
187b31f9661SMatthias Sohn    src_sha1 = "930c50de49b9c258d5f0329426cbcac4d3143497",
1880f6ddb37SDavid Ostrovsky)
1890f6ddb37SDavid Ostrovsky
1900f6ddb37SDavid Ostrovskymaven_jar(
191af547cf0SDavid Pursehouse    name = "jetty-security",
1920f6ddb37SDavid Ostrovsky    artifact = "org.eclipse.jetty:jetty-security:" + JETTY_VER,
193b31f9661SMatthias Sohn    sha1 = "926def86d31ee07ca4b4658833dc6ee6918b8e86",
194b31f9661SMatthias Sohn    src_sha1 = "019bc7c2a366cbb201950f24dd64d9d9a49b6840",
1950f6ddb37SDavid Ostrovsky)
1960f6ddb37SDavid Ostrovsky
1970f6ddb37SDavid Ostrovskymaven_jar(
198af547cf0SDavid Pursehouse    name = "jetty-server",
1990f6ddb37SDavid Ostrovsky    artifact = "org.eclipse.jetty:jetty-server:" + JETTY_VER,
200b31f9661SMatthias Sohn    sha1 = "58353c2f27515b007fc83ae22002feb34fc24714",
201b31f9661SMatthias Sohn    src_sha1 = "e7d832d74df616137755996b41bc28bb82b3bc42",
2020f6ddb37SDavid Ostrovsky)
2030f6ddb37SDavid Ostrovsky
2040f6ddb37SDavid Ostrovskymaven_jar(
205af547cf0SDavid Pursehouse    name = "jetty-http",
2060f6ddb37SDavid Ostrovsky    artifact = "org.eclipse.jetty:jetty-http:" + JETTY_VER,
207b31f9661SMatthias Sohn    sha1 = "20c35f5336befe35b0bd5c4a63e07170fe7872d7",
208b31f9661SMatthias Sohn    src_sha1 = "5bc30d1f7e8c4456c22cc85999b8cafd3741bdff",
2090f6ddb37SDavid Ostrovsky)
2100f6ddb37SDavid Ostrovsky
2110f6ddb37SDavid Ostrovskymaven_jar(
212af547cf0SDavid Pursehouse    name = "jetty-io",
2130f6ddb37SDavid Ostrovsky    artifact = "org.eclipse.jetty:jetty-io:" + JETTY_VER,
214b31f9661SMatthias Sohn    sha1 = "d164de1dac18c4ca80a1b783d879c97449909c3b",
215b31f9661SMatthias Sohn    src_sha1 = "02c0caba292b1cb74cec1d36c6f91dc863c89b5a",
2160f6ddb37SDavid Ostrovsky)
2170f6ddb37SDavid Ostrovsky
2180f6ddb37SDavid Ostrovskymaven_jar(
219af547cf0SDavid Pursehouse    name = "jetty-util",
2200f6ddb37SDavid Ostrovsky    artifact = "org.eclipse.jetty:jetty-util:" + JETTY_VER,
221b31f9661SMatthias Sohn    sha1 = "f0f25aa2f27d618a04bc7356fa247ae4a05245b3",
222b31f9661SMatthias Sohn    src_sha1 = "4e5c4c483cfd9804c2fc5d5751866243bbb9d740",
2230f6ddb37SDavid Ostrovsky)
224