| David Ostrovsky | 22c45b3 | 2014-02-23 22:22:26 +0100 | [diff] [blame] | 1 | include_defs('//bucklets/maven_jar.bucklet') |
| 2 | |
| Dave Borowitz | db9c41d | 2014-03-11 16:15:39 -0700 | [diff] [blame^] | 3 | VERS = '3.3.0.201403021825-r' |
| David Ostrovsky | 22c45b3 | 2014-02-23 22:22:26 +0100 | [diff] [blame] | 4 | |
| 5 | maven_jar( |
| 6 | name = 'jgit', |
| 7 | id = 'org.eclipse.jgit:org.eclipse.jgit:' + VERS, |
| Dave Borowitz | db9c41d | 2014-03-11 16:15:39 -0700 | [diff] [blame^] | 8 | sha1 = '01aa346a5040bd541502dfb40e83edb1d1981c67', |
| David Ostrovsky | 22c45b3 | 2014-02-23 22:22:26 +0100 | [diff] [blame] | 9 | unsign = True, |
| 10 | deps = [':ewah'], |
| 11 | exclude = [ |
| 12 | 'META-INF/eclipse.inf', |
| 13 | 'about.html', |
| 14 | 'plugin.properties', |
| 15 | ], |
| 16 | ) |
| 17 | |
| 18 | maven_jar( |
| 19 | name = 'jgit-servlet', |
| 20 | id = 'org.eclipse.jgit:org.eclipse.jgit.http.server:' + VERS, |
| Dave Borowitz | db9c41d | 2014-03-11 16:15:39 -0700 | [diff] [blame^] | 21 | sha1 = 'e141488647b80ef25d8d3febffd434a5e2a0a817', |
| David Ostrovsky | 22c45b3 | 2014-02-23 22:22:26 +0100 | [diff] [blame] | 22 | deps = [':jgit'], |
| 23 | unsign = True, |
| 24 | exclude = [ |
| 25 | 'about.html', |
| 26 | 'plugin.properties', |
| 27 | ], |
| 28 | ) |
| 29 | |
| 30 | java_library( |
| 31 | name = 'jgit-archive', |
| 32 | exported_deps = [ |
| 33 | ':jgit-archive_library', |
| 34 | ':commons-compress', |
| 35 | ':tukaani-xz', |
| 36 | ], |
| 37 | visibility = ['PUBLIC'], |
| 38 | ) |
| 39 | |
| 40 | maven_jar( |
| 41 | name = 'jgit-archive_library', |
| 42 | id = 'org.eclipse.jgit:org.eclipse.jgit.archive:' + VERS, |
| Dave Borowitz | db9c41d | 2014-03-11 16:15:39 -0700 | [diff] [blame^] | 43 | sha1 = '87b2b50eb6e7a18a70fd684cc173f3bd2d8e24e8', |
| David Ostrovsky | 22c45b3 | 2014-02-23 22:22:26 +0100 | [diff] [blame] | 44 | deps = [':jgit'], |
| 45 | unsign = True, |
| 46 | exclude = [ |
| 47 | 'about.html', |
| 48 | 'plugin.properties', |
| 49 | ], |
| 50 | ) |
| 51 | |
| 52 | maven_jar( |
| 53 | name = 'junit', |
| 54 | id = 'org.eclipse.jgit:org.eclipse.jgit.junit:' + VERS, |
| Dave Borowitz | db9c41d | 2014-03-11 16:15:39 -0700 | [diff] [blame^] | 55 | sha1 = '13d0303a669bc2c44db69f8581e3634412b70eed', |
| David Ostrovsky | 22c45b3 | 2014-02-23 22:22:26 +0100 | [diff] [blame] | 56 | unsign = True, |
| 57 | deps = [':jgit'], |
| 58 | ) |
| 59 | |
| 60 | maven_jar( |
| 61 | name = 'ewah', |
| 62 | id = 'com.googlecode.javaewah:JavaEWAH:0.7.9', |
| 63 | sha1 = 'eceaf316a8faf0e794296ebe158ae110c7d72a5a', |
| 64 | ) |
| 65 | |
| 66 | maven_jar( |
| 67 | name = 'commons-compress', |
| 68 | id = 'org.apache.commons:commons-compress:1.7', |
| 69 | sha1 = 'ab365c96ee9bc88adcc6fa40d185c8e15a31410d', |
| 70 | exclude = ['META-INF/LICENSE.txt', 'META-INF/NOTICE.txt'], |
| 71 | visibility = ['//lib/jgit:jgit-archive'], |
| 72 | ) |
| 73 | |
| 74 | maven_jar( |
| 75 | name = 'tukaani-xz', |
| 76 | id = 'org.tukaani:xz:1.4', |
| 77 | sha1 = '18a9a2ce6abf32ea1b5fd31dae5210ad93f4e5e3', |
| 78 | attach_source = False, |
| 79 | visibility = ['//lib/jgit:jgit-archive'], |
| 80 | ) |