xref: /JGit/WORKSPACE (revision 0aa31b110bc9832976332be05dc1a0fc2d59e235)
1e92a0c3aSDavid Ostrovskyworkspace(name = "jgit")
2e92a0c3aSDavid Ostrovsky
3bcc327dfSDavid Pursehouseload("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
4bcc327dfSDavid Pursehouse
5bcc327dfSDavid Pursehousehttp_archive(
6bcc327dfSDavid Pursehouse    name = "bazel_skylib",
7bcc327dfSDavid Pursehouse    sha256 = "bbccf674aa441c266df9894182d80de104cabd19be98be002f6d478aaa31574d",
8bcc327dfSDavid Pursehouse    strip_prefix = "bazel-skylib-2169ae1c374aab4a09aa90e65efe1a3aad4e279b",
9bcc327dfSDavid Pursehouse    urls = ["https://github.com/bazelbuild/bazel-skylib/archive/2169ae1c374aab4a09aa90e65efe1a3aad4e279b.tar.gz"],
10bcc327dfSDavid Pursehouse)
11bcc327dfSDavid Pursehouse
12fcf41731SDavid Pursehouseload("@bazel_skylib//lib:versions.bzl", "versions")
13bcc327dfSDavid Pursehouse
149625db20SDavid Ostrovskyversions.check(minimum_bazel_version = "0.19.0")
15bcc327dfSDavid Pursehouse
16e92a0c3aSDavid Ostrovskyload("//tools:bazlets.bzl", "load_bazlets")
17dd5e500aSDavid Pursehouse
18e92a0c3aSDavid Ostrovskyload_bazlets(commit = "3afbeab55ece585dbfc7a980bf7214b24ddbbe86")
19dd5e500aSDavid Pursehouse
20dd5e500aSDavid Pursehouseload(
21dd5e500aSDavid Pursehouse    "@com_googlesource_gerrit_bazlets//tools:maven_jar.bzl",
22dd5e500aSDavid Pursehouse    "maven_jar",
23e92a0c3aSDavid Ostrovsky)
24e92a0c3aSDavid Ostrovsky
25e92a0c3aSDavid Ostrovskymaven_jar(
26db627c41SThomas Wolf    name = "eddsa",
27db627c41SThomas Wolf    artifact = "net.i2p.crypto:eddsa:0.3.0",
28db627c41SThomas Wolf    sha1 = "1901c8d4d8bffb7d79027686cfb91e704217c3e1",
29db627c41SThomas Wolf)
30db627c41SThomas Wolf
31db627c41SThomas Wolfmaven_jar(
32dd5e500aSDavid Pursehouse    name = "jsch",
336dd25814SMatthias Sohn    artifact = "com.jcraft:jsch:0.1.54",
346dd25814SMatthias Sohn    sha1 = "da3584329a263616e277e15462b387addd1b208d",
35e92a0c3aSDavid Ostrovsky)
36e92a0c3aSDavid Ostrovsky
37e92a0c3aSDavid Ostrovskymaven_jar(
38cdc88247SMatthias Sohn    name = "jzlib",
39cdc88247SMatthias Sohn    artifact = "com.jcraft:jzlib:1.1.1",
40cdc88247SMatthias Sohn    sha1 = "a1551373315ffc2f96130a0e5704f74e151777ba",
41cdc88247SMatthias Sohn)
42cdc88247SMatthias Sohn
43cdc88247SMatthias Sohnmaven_jar(
44dd5e500aSDavid Pursehouse    name = "javaewah",
45dd5e500aSDavid Pursehouse    artifact = "com.googlecode.javaewah:JavaEWAH:1.1.6",
46dd5e500aSDavid Pursehouse    sha1 = "94ad16d728b374d65bd897625f3fbb3da223a2b6",
47e92a0c3aSDavid Ostrovsky)
48e92a0c3aSDavid Ostrovsky
49e92a0c3aSDavid Ostrovskymaven_jar(
50dd5e500aSDavid Pursehouse    name = "httpclient",
516dd25814SMatthias Sohn    artifact = "org.apache.httpcomponents:httpclient:4.5.5",
526dd25814SMatthias Sohn    sha1 = "1603dfd56ebcd583ccdf337b6c3984ac55d89e58",
53e92a0c3aSDavid Ostrovsky)
54e92a0c3aSDavid Ostrovsky
55e92a0c3aSDavid Ostrovskymaven_jar(
56dd5e500aSDavid Pursehouse    name = "httpcore",
576dd25814SMatthias Sohn    artifact = "org.apache.httpcomponents:httpcore:4.4.9",
586dd25814SMatthias Sohn    sha1 = "a86ce739e5a7175b4b234c290a00a5fdb80957a0",
59e92a0c3aSDavid Ostrovsky)
60e92a0c3aSDavid Ostrovsky
61e92a0c3aSDavid Ostrovskymaven_jar(
6208b0a863SThomas Wolf    name = "sshd-core",
6308b0a863SThomas Wolf    artifact = "org.apache.sshd:sshd-core:2.0.0",
6408b0a863SThomas Wolf    sha1 = "f4275079a2463cfd2bf1548a80e1683288a8e86b",
6508b0a863SThomas Wolf)
6608b0a863SThomas Wolf
6708b0a863SThomas Wolfmaven_jar(
6808b0a863SThomas Wolf    name = "sshd-sftp",
6908b0a863SThomas Wolf    artifact = "org.apache.sshd:sshd-sftp:2.0.0",
7008b0a863SThomas Wolf    sha1 = "a12d64dc2d5d23271a4dc58075e55f9c64a68494",
7108b0a863SThomas Wolf)
7208b0a863SThomas Wolf
7308b0a863SThomas Wolfmaven_jar(
7419222ce7SDavid Pursehouse    name = "commons-codec",
756dd25814SMatthias Sohn    artifact = "commons-codec:commons-codec:1.10",
766dd25814SMatthias Sohn    sha1 = "4b95f4897fa13f2cd904aee711aeafc0c5295cd8",
770f6ddb37SDavid Ostrovsky)
780f6ddb37SDavid Ostrovsky
790f6ddb37SDavid Ostrovskymaven_jar(
8019222ce7SDavid Pursehouse    name = "commons-logging",
816dd25814SMatthias Sohn    artifact = "commons-logging:commons-logging:1.2",
826dd25814SMatthias Sohn    sha1 = "4bfc12adfe4842bf07b657f0369c4cb522955686",
83e92a0c3aSDavid Ostrovsky)
84e92a0c3aSDavid Ostrovsky
85e92a0c3aSDavid Ostrovskymaven_jar(
8619222ce7SDavid Pursehouse    name = "log-api",
87dd5e500aSDavid Pursehouse    artifact = "org.slf4j:slf4j-api:1.7.2",
88dd5e500aSDavid Pursehouse    sha1 = "0081d61b7f33ebeab314e07de0cc596f8e858d97",
89e92a0c3aSDavid Ostrovsky)
90e92a0c3aSDavid Ostrovsky
91e92a0c3aSDavid Ostrovskymaven_jar(
9219222ce7SDavid Pursehouse    name = "slf4j-simple",
93dd5e500aSDavid Pursehouse    artifact = "org.slf4j:slf4j-simple:1.7.2",
94dd5e500aSDavid Pursehouse    sha1 = "760055906d7353ba4f7ce1b8908bc6b2e91f39fa",
95e92a0c3aSDavid Ostrovsky)
96e92a0c3aSDavid Ostrovsky
97e92a0c3aSDavid Ostrovskymaven_jar(
9819222ce7SDavid Pursehouse    name = "servlet-api-3_1",
99dd5e500aSDavid Pursehouse    artifact = "javax.servlet:javax.servlet-api:3.1.0",
100dd5e500aSDavid Pursehouse    sha1 = "3cd63d075497751784b2fa84be59432f4905bf7c",
101e92a0c3aSDavid Ostrovsky)
102e92a0c3aSDavid Ostrovsky
103e92a0c3aSDavid Ostrovskymaven_jar(
10419222ce7SDavid Pursehouse    name = "commons-compress",
105ae805bd7SMatthias Sohn    artifact = "org.apache.commons:commons-compress:1.18",
106ae805bd7SMatthias Sohn    sha1 = "1191f9f2bc0c47a8cce69193feb1ff0a8bcb37d5",
107e92a0c3aSDavid Ostrovsky)
108e92a0c3aSDavid Ostrovsky
109e92a0c3aSDavid Ostrovskymaven_jar(
11019222ce7SDavid Pursehouse    name = "tukaani-xz",
111*0aa31b11SMatthias Sohn    artifact = "org.tukaani:xz:1.8",
112*0aa31b11SMatthias Sohn    sha1 = "c4f7d054303948eb6a4066194253886c8af07128",
113e92a0c3aSDavid Ostrovsky)
114e92a0c3aSDavid Ostrovsky
115e92a0c3aSDavid Ostrovskymaven_jar(
116dd5e500aSDavid Pursehouse    name = "args4j",
1174e913fceSDavid Pursehouse    artifact = "args4j:args4j:2.33",
1184e913fceSDavid Pursehouse    sha1 = "bd87a75374a6d6523de82fef51fc3cfe9baf9fc9",
119e92a0c3aSDavid Ostrovsky)
120e92a0c3aSDavid Ostrovsky
121e92a0c3aSDavid Ostrovskymaven_jar(
122dd5e500aSDavid Pursehouse    name = "junit",
1236dd25814SMatthias Sohn    artifact = "junit:junit:4.12",
1246dd25814SMatthias Sohn    sha1 = "2973d150c0dc1fefe998f834810d68f278ea58ec",
125e92a0c3aSDavid Ostrovsky)
126e92a0c3aSDavid Ostrovsky
127e92a0c3aSDavid Ostrovskymaven_jar(
12819222ce7SDavid Pursehouse    name = "hamcrest-library",
129dd5e500aSDavid Pursehouse    artifact = "org.hamcrest:hamcrest-library:1.3",
130dd5e500aSDavid Pursehouse    sha1 = "4785a3c21320980282f9f33d0d1264a69040538f",
131e92a0c3aSDavid Ostrovsky)
132e92a0c3aSDavid Ostrovsky
133e92a0c3aSDavid Ostrovskymaven_jar(
13419222ce7SDavid Pursehouse    name = "hamcrest-core",
135dd5e500aSDavid Pursehouse    artifact = "org.hamcrest:hamcrest-core:1.3",
136dd5e500aSDavid Pursehouse    sha1 = "42a25dc3219429f0e5d060061f71acb49bf010a0",
137e92a0c3aSDavid Ostrovsky)
138e92a0c3aSDavid Ostrovsky
139e92a0c3aSDavid Ostrovskymaven_jar(
1402532fa74SMatthias Sohn    name = "mockito",
1412532fa74SMatthias Sohn    artifact = "org.mockito:mockito-core:2.13.0",
1422532fa74SMatthias Sohn    sha1 = "8e372943974e4a121fb8617baced8ebfe46d54f0",
1432532fa74SMatthias Sohn)
1442532fa74SMatthias Sohn
1452532fa74SMatthias SohnBYTE_BUDDY_VERSION = "1.7.9"
1462532fa74SMatthias Sohn
1472532fa74SMatthias Sohnmaven_jar(
1482532fa74SMatthias Sohn    name = "byte_buddy",
1492532fa74SMatthias Sohn    artifact = "net.bytebuddy:byte-buddy:" + BYTE_BUDDY_VERSION,
1502532fa74SMatthias Sohn    sha1 = "51218a01a882c04d0aba8c028179cce488bbcb58",
1512532fa74SMatthias Sohn)
1522532fa74SMatthias Sohn
1532532fa74SMatthias Sohnmaven_jar(
1542532fa74SMatthias Sohn    name = "byte_buddy_agent",
1552532fa74SMatthias Sohn    artifact = "net.bytebuddy:byte-buddy-agent:" + BYTE_BUDDY_VERSION,
1562532fa74SMatthias Sohn    sha1 = "a6c65f9da7f467ee1f02ff2841ffd3155aee2fc9",
1572532fa74SMatthias Sohn)
1582532fa74SMatthias Sohn
1592532fa74SMatthias Sohnmaven_jar(
1602532fa74SMatthias Sohn    name = "objenesis",
1612532fa74SMatthias Sohn    artifact = "org.objenesis:objenesis:2.6",
1622532fa74SMatthias Sohn    sha1 = "639033469776fd37c08358c6b92a4761feb2af4b",
1632532fa74SMatthias Sohn)
1642532fa74SMatthias Sohn
1652532fa74SMatthias Sohnmaven_jar(
166dd5e500aSDavid Pursehouse    name = "gson",
167f3bb0e26SDavid Pursehouse    artifact = "com.google.code.gson:gson:2.8.2",
168f3bb0e26SDavid Pursehouse    sha1 = "3edcfe49d2c6053a70a2a47e4e1c2f94998a49cf",
169e92a0c3aSDavid Ostrovsky)
1700f6ddb37SDavid Ostrovsky
171b31f9661SMatthias SohnJETTY_VER = "9.4.11.v20180605"
1720f6ddb37SDavid Ostrovsky
1730f6ddb37SDavid Ostrovskymaven_jar(
17419222ce7SDavid Pursehouse    name = "jetty-servlet",
1750f6ddb37SDavid Ostrovsky    artifact = "org.eclipse.jetty:jetty-servlet:" + JETTY_VER,
176b31f9661SMatthias Sohn    sha1 = "66d31900fcfc70e3666f0b3335b6660635154f98",
177b31f9661SMatthias Sohn    src_sha1 = "930c50de49b9c258d5f0329426cbcac4d3143497",
1780f6ddb37SDavid Ostrovsky)
1790f6ddb37SDavid Ostrovsky
1800f6ddb37SDavid Ostrovskymaven_jar(
18119222ce7SDavid Pursehouse    name = "jetty-security",
1820f6ddb37SDavid Ostrovsky    artifact = "org.eclipse.jetty:jetty-security:" + JETTY_VER,
183b31f9661SMatthias Sohn    sha1 = "926def86d31ee07ca4b4658833dc6ee6918b8e86",
184b31f9661SMatthias Sohn    src_sha1 = "019bc7c2a366cbb201950f24dd64d9d9a49b6840",
1850f6ddb37SDavid Ostrovsky)
1860f6ddb37SDavid Ostrovsky
1870f6ddb37SDavid Ostrovskymaven_jar(
18819222ce7SDavid Pursehouse    name = "jetty-server",
1890f6ddb37SDavid Ostrovsky    artifact = "org.eclipse.jetty:jetty-server:" + JETTY_VER,
190b31f9661SMatthias Sohn    sha1 = "58353c2f27515b007fc83ae22002feb34fc24714",
191b31f9661SMatthias Sohn    src_sha1 = "e7d832d74df616137755996b41bc28bb82b3bc42",
1920f6ddb37SDavid Ostrovsky)
1930f6ddb37SDavid Ostrovsky
1940f6ddb37SDavid Ostrovskymaven_jar(
19519222ce7SDavid Pursehouse    name = "jetty-http",
1960f6ddb37SDavid Ostrovsky    artifact = "org.eclipse.jetty:jetty-http:" + JETTY_VER,
197b31f9661SMatthias Sohn    sha1 = "20c35f5336befe35b0bd5c4a63e07170fe7872d7",
198b31f9661SMatthias Sohn    src_sha1 = "5bc30d1f7e8c4456c22cc85999b8cafd3741bdff",
1990f6ddb37SDavid Ostrovsky)
2000f6ddb37SDavid Ostrovsky
2010f6ddb37SDavid Ostrovskymaven_jar(
20219222ce7SDavid Pursehouse    name = "jetty-io",
2030f6ddb37SDavid Ostrovsky    artifact = "org.eclipse.jetty:jetty-io:" + JETTY_VER,
204b31f9661SMatthias Sohn    sha1 = "d164de1dac18c4ca80a1b783d879c97449909c3b",
205b31f9661SMatthias Sohn    src_sha1 = "02c0caba292b1cb74cec1d36c6f91dc863c89b5a",
2060f6ddb37SDavid Ostrovsky)
2070f6ddb37SDavid Ostrovsky
2080f6ddb37SDavid Ostrovskymaven_jar(
20919222ce7SDavid Pursehouse    name = "jetty-util",
2100f6ddb37SDavid Ostrovsky    artifact = "org.eclipse.jetty:jetty-util:" + JETTY_VER,
211b31f9661SMatthias Sohn    sha1 = "f0f25aa2f27d618a04bc7356fa247ae4a05245b3",
212b31f9661SMatthias Sohn    src_sha1 = "4e5c4c483cfd9804c2fc5d5751866243bbb9d740",
2130f6ddb37SDavid Ostrovsky)
214