| load("@rules_java//java:defs.bzl", "java_library") |
| |
| java_library( |
| name = "audit", |
| srcs = glob( |
| ["**/*.java"], |
| ), |
| resource_strip_prefix = "resources", |
| resources = ["//resources/com/google/gerrit/server"], |
| visibility = ["//visibility:public"], |
| deps = [ |
| "//java/com/google/gerrit/entities", |
| "//java/com/google/gerrit/extensions:api", |
| "//java/com/google/gerrit/server", |
| "//lib:args4j", |
| "//lib:autolink", |
| "//lib:automaton", |
| "//lib:blame-cache", |
| "//lib:flexmark", |
| "//lib:flexmark-ext-abbreviation", |
| "//lib:flexmark-ext-anchorlink", |
| "//lib:flexmark-ext-autolink", |
| "//lib:flexmark-ext-definition", |
| "//lib:flexmark-ext-emoji", |
| "//lib:flexmark-ext-escaped-character", |
| "//lib:flexmark-ext-footnotes", |
| "//lib:flexmark-ext-gfm-issues", |
| "//lib:flexmark-ext-gfm-strikethrough", |
| "//lib:flexmark-ext-gfm-tables", |
| "//lib:flexmark-ext-gfm-tasklist", |
| "//lib:flexmark-ext-gfm-users", |
| "//lib:flexmark-ext-ins", |
| "//lib:flexmark-ext-jekyll-front-matter", |
| "//lib:flexmark-ext-superscript", |
| "//lib:flexmark-ext-tables", |
| "//lib:flexmark-ext-toc", |
| "//lib:flexmark-ext-typographic", |
| "//lib:flexmark-ext-wikilink", |
| "//lib:flexmark-ext-yaml-front-matter", |
| "//lib:flexmark-formatter", |
| "//lib:flexmark-html-parser", |
| "//lib:flexmark-profile-pegdown", |
| "//lib:flexmark-util", |
| "//lib:gson", |
| "//lib:guava", |
| "//lib:guava-retrying", |
| "//lib:jgit", |
| "//lib:jgit-archive", |
| "//lib:jsch", |
| "//lib:juniversalchardet", |
| "//lib:mime-util", |
| "//lib:protobuf", |
| "//lib:servlet-api", |
| "//lib:soy", |
| "//lib:tukaani-xz", |
| "//lib/auto:auto-value", |
| "//lib/auto:auto-value-annotations", |
| "//lib/bouncycastle:bcpkix-neverlink", |
| "//lib/bouncycastle:bcprov-neverlink", |
| "//lib/commons:codec", |
| "//lib/commons:compress", |
| "//lib/commons:dbcp", |
| "//lib/commons:lang", |
| "//lib/commons:net", |
| "//lib/commons:validator", |
| "//lib/flogger:api", |
| "//lib/guice", |
| "//lib/guice:guice-assistedinject", |
| "//lib/guice:guice-servlet", |
| "//lib/jsoup", |
| "//lib/log:jsonevent-layout", |
| "//lib/log:log4j", |
| "//lib/lucene:lucene-analyzers-common", |
| "//lib/lucene:lucene-queryparser", |
| "//lib/mime4j:core", |
| "//lib/mime4j:dom", |
| "//lib/ow2:ow2-asm", |
| "//lib/ow2:ow2-asm-tree", |
| "//lib/ow2:ow2-asm-util", |
| "//lib/prolog:runtime", |
| "//proto:cache_java_proto", |
| ], |
| ) |