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 3.7KB

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