diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2016-01-01 23:54:15 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2016-01-02 02:02:46 +0100 |
commit | f1b79c3c89ca2ddf080c1af35039ca7e604e5b61 (patch) | |
tree | ddddf664bac00dcf9e67eb6c13ff9eb608c01dd9 /lib | |
parent | 09500165a8592386c92c1f10a36bfd4fc4666a11 (diff) | |
download | jgit-f1b79c3c89ca2ddf080c1af35039ca7e604e5b61.tar.gz jgit-f1b79c3c89ca2ddf080c1af35039ca7e604e5b61.zip |
buck: run http tests
Running tests using buck reveals that HttpClientTests are broken
and weren't executed by Maven since these test classes don't match the
maven-surefire-plugin's default for test classes **/*Test.java.
Will be fixed in a follow-up change.
Change-Id: I82a01b5fd3f0a930bec2423a29a256601dadc248
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/jetty/BUCK | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/lib/jetty/BUCK b/lib/jetty/BUCK new file mode 100644 index 0000000000..6e7dec3062 --- /dev/null +++ b/lib/jetty/BUCK @@ -0,0 +1,56 @@ +VERSION = '9.2.13.v20150730' +GROUP = 'org.eclipse.jetty' + +maven_jar( + name = 'servlet', + bin_sha1 = '5ad6e38015a97ae9a60b6c2ad744ccfa9cf93a50', + src_sha1 = '78fbec19321150552d91f9e079c2f2ca33222b01', + group = GROUP, + artifact = 'jetty-servlet', + version = VERSION, +) + +maven_jar( + name = 'security', + bin_sha1 = 'cc7c7f27ec4cc279253be1675d9e47e58b995943', + src_sha1 = '75632ebdf8bd651faafb97106c92496db59e165d', + group = GROUP, + artifact = 'jetty-security', + version = VERSION, +) + +maven_jar( + name = 'server', + bin_sha1 = '5be7d1da0a7abffd142de3091d160717c120b6ab', + src_sha1 = '203e123f83efe2a5b8a9c74854c7897fe3563302', + group = GROUP, + artifact = 'jetty-server', + version = VERSION, +) + +maven_jar( + name = 'http', + bin_sha1 = '23a745d9177ef67ef53cc46b9b70c5870082efc2', + src_sha1 = '5f87f7ff2057cd4b0995bc4fffe17b2aff64c130', + group = GROUP, + artifact = 'jetty-http', + version = VERSION, +) + +maven_jar( + name = 'io', + bin_sha1 = '7a351e6a1b63dfd56b6632623f7ca2793ffb67ad', + src_sha1 = 'bbd61a84b748fc295456e1c5c3070aaf40a68f62', + group = GROUP, + artifact = 'jetty-io', + version = VERSION, +) + +maven_jar( + name = 'util', + bin_sha1 = 'c101476360a7cdd0670462de04053507d5e70c97', + src_sha1 = '15ceecce141971b4e0facb861b3d10120ad6ce03', + group = GROUP, + artifact = 'jetty-util', + version = VERSION, +) |