You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BUILD 4.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. java_library(
  2. name = "args4j",
  3. visibility = [
  4. "//org.eclipse.jgit.pgm:__pkg__",
  5. "//org.eclipse.jgit.pgm.test:__pkg__",
  6. ],
  7. exports = ["@args4j//jar"],
  8. )
  9. java_library(
  10. name = "commons-compress",
  11. visibility = [
  12. "//org.eclipse.jgit.archive:__pkg__",
  13. "//org.eclipse.jgit.pgm.test:__pkg__",
  14. "//org.eclipse.jgit.test:__pkg__",
  15. ],
  16. exports = ["@commons-compress//jar"],
  17. )
  18. java_library(
  19. name = "commons-codec",
  20. exports = ["@commons-codec//jar"],
  21. )
  22. java_library(
  23. name = "commons-logging",
  24. testonly = 1,
  25. visibility = ["//visibility:public"],
  26. exports = ["@commons-logging//jar"],
  27. )
  28. java_library(
  29. name = "gson",
  30. visibility = [
  31. "//org.eclipse.jgit.lfs:__pkg__",
  32. "//org.eclipse.jgit.lfs.server:__pkg__",
  33. ],
  34. exports = ["@gson//jar"],
  35. )
  36. java_library(
  37. name = "httpclient",
  38. visibility = [
  39. "//org.eclipse.jgit.http.apache:__pkg__",
  40. "//org.eclipse.jgit.lfs.server.test:__pkg__",
  41. "//org.eclipse.jgit.pgm:__pkg__",
  42. ],
  43. exports = ["@httpclient//jar"],
  44. )
  45. java_library(
  46. name = "httpcore",
  47. visibility = [
  48. "//org.eclipse.jgit.http.apache:__pkg__",
  49. "//org.eclipse.jgit.http.test:__pkg__",
  50. "//org.eclipse.jgit.lfs.server:__pkg__",
  51. "//org.eclipse.jgit.lfs.server.test:__pkg__",
  52. "//org.eclipse.jgit.pgm:__pkg__",
  53. ],
  54. exports = ["@httpcore//jar"],
  55. )
  56. java_library(
  57. name = "javaewah",
  58. visibility = ["//visibility:public"],
  59. exports = ["@javaewah//jar"],
  60. )
  61. java_library(
  62. name = "jetty-http",
  63. # TODO: This should be testonly but org.eclipse.jgit.pgm depends on it.
  64. visibility = ["//visibility:public"],
  65. exports = ["@jetty-http//jar"],
  66. runtime_deps = [":commons-codec"],
  67. )
  68. java_library(
  69. name = "jetty-io",
  70. # TODO: This should be testonly but org.eclipse.jgit.pgm depends on it.
  71. visibility = ["//visibility:public"],
  72. exports = ["@jetty-io//jar"],
  73. )
  74. java_library(
  75. name = "jetty-security",
  76. # TODO: This should be testonly but org.eclipse.jgit.pgm depends on it.
  77. visibility = ["//visibility:public"],
  78. exports = ["@jetty-security//jar"],
  79. )
  80. java_library(
  81. name = "jetty-server",
  82. # TODO: This should be testonly but org.eclipse.jgit.pgm depends on it.
  83. visibility = ["//visibility:public"],
  84. exports = ["@jetty-server//jar"],
  85. )
  86. java_library(
  87. name = "jetty-servlet",
  88. # TODO: This should be testonly but org.eclipse.jgit.pgm depends on it.
  89. visibility = ["//visibility:public"],
  90. exports = ["@jetty-servlet//jar"],
  91. )
  92. java_library(
  93. name = "jetty-util",
  94. # TODO: This should be testonly but org.eclipse.jgit.pgm depends on it.
  95. visibility = ["//visibility:public"],
  96. exports = ["@jetty-util//jar"],
  97. )
  98. java_library(
  99. name = "jsch",
  100. visibility = [
  101. "//org.eclipse.jgit:__pkg__",
  102. "//org.eclipse.jgit.test:__pkg__",
  103. ],
  104. exports = ["@jsch//jar"],
  105. )
  106. java_library(
  107. name = "jzlib",
  108. visibility = [
  109. "//org.eclipse.jgit:__pkg__",
  110. "//org.eclipse.jgit.test:__pkg__",
  111. ],
  112. exports = ["@jzlib//jar"],
  113. )
  114. java_library(
  115. name = "junit",
  116. testonly = 1,
  117. visibility = ["//visibility:public"],
  118. exports = [
  119. "@hamcrest-core//jar",
  120. "@hamcrest-library//jar",
  121. "@junit//jar",
  122. ],
  123. )
  124. java_library(
  125. name = "servlet-api",
  126. visibility = [
  127. "//org.eclipse.jgit.http.apache:__pkg__",
  128. "//org.eclipse.jgit.http.server:__pkg__",
  129. "//org.eclipse.jgit.http.test:__pkg__",
  130. "//org.eclipse.jgit.junit.http:__pkg__",
  131. "//org.eclipse.jgit.lfs.server:__pkg__",
  132. "//org.eclipse.jgit.lfs.server.test:__pkg__",
  133. "//org.eclipse.jgit.pgm:__pkg__",
  134. ],
  135. exports = ["@servlet-api-3_1//jar"],
  136. )
  137. java_library(
  138. name = "slf4j-api",
  139. visibility = ["//visibility:public"],
  140. exports = ["@log-api//jar"],
  141. )
  142. java_library(
  143. name = "slf4j-simple",
  144. testonly = 1,
  145. visibility = ["//visibility:public"],
  146. exports = ["@slf4j-simple//jar"],
  147. )
  148. java_library(
  149. name = "xz",
  150. testonly = 1,
  151. visibility = ["//visibility:public"],
  152. exports = ["@tukaani-xz//jar"],
  153. )