| Dave Borowitz | b652231 | 2014-07-29 12:40:55 -0700 | [diff] [blame] | 1 | include_bucklets(['maven_jar.bucklet']) |
| David Ostrovsky | 22c45b3 | 2014-02-23 22:22:26 +0100 | [diff] [blame] | 2 | |
| 3 | VERS = '8.1.7.v20120910' |
| 4 | EXCLUDE = ['about.html'] |
| 5 | |
| 6 | maven_jar( |
| 7 | name = 'servlet', |
| 8 | id = 'org.eclipse.jetty:jetty-servlet:' + VERS, |
| 9 | sha1 = '93da01e3ea26e70449e9a1a0affa5c31436be5a0', |
| 10 | deps = [ |
| 11 | ':security', |
| 12 | '//lib:servlet-api_3_0', # Different from the rest of gitlies-server. |
| 13 | ], |
| 14 | exclude = EXCLUDE, |
| 15 | ) |
| 16 | |
| 17 | maven_jar( |
| 18 | name = 'security', |
| 19 | id = 'org.eclipse.jetty:jetty-security:' + VERS, |
| 20 | sha1 = '8d78beb7a07f4cccee05a3f16a264f1025946258', |
| 21 | deps = [':server'], |
| 22 | exclude = EXCLUDE, |
| 23 | visibility = [], |
| 24 | ) |
| 25 | |
| 26 | maven_jar( |
| 27 | name = 'server', |
| 28 | id = 'org.eclipse.jetty:jetty-server:' + VERS, |
| 29 | sha1 = '6c81f733f28713919e99c2f8952e6ca5178033cd', |
| 30 | exported_deps = [ |
| 31 | ':continuation', |
| 32 | ':http', |
| 33 | ], |
| 34 | exclude = EXCLUDE, |
| 35 | ) |
| 36 | |
| 37 | maven_jar( |
| 38 | name = 'continuation', |
| 39 | id = 'org.eclipse.jetty:jetty-continuation:' + VERS, |
| 40 | sha1 = 'f60cfe6267038000b459508529c88737601081e4', |
| 41 | exclude = EXCLUDE, |
| 42 | ) |
| 43 | |
| 44 | maven_jar( |
| 45 | name = 'http', |
| 46 | id = 'org.eclipse.jetty:jetty-http:' + VERS, |
| 47 | sha1 = '10126433876cd74534695f7f99c4362596555493', |
| 48 | exported_deps = [':io'], |
| 49 | exclude = EXCLUDE, |
| 50 | ) |
| 51 | |
| 52 | maven_jar( |
| 53 | name = 'io', |
| 54 | id = 'org.eclipse.jetty:jetty-io:' + VERS, |
| 55 | sha1 = 'a81f746ae1b10c37e1bb0a01d1374c202c0bd549', |
| 56 | exported_deps = [':util'], |
| 57 | exclude = EXCLUDE, |
| 58 | visibility = [], |
| 59 | ) |
| 60 | |
| 61 | maven_jar( |
| 62 | name = 'util', |
| 63 | id = 'org.eclipse.jetty:jetty-util:' + VERS, |
| 64 | sha1 = '7eb2004ab2c22fd3b00095bd9ba0f32a9e88f6a5', |
| 65 | exclude = EXCLUDE, |
| 66 | visibility = [], |
| 67 | ) |