
Subclasses are also renamed: * OrmDuplicateKeyException -> DuplicateKeyException * OrmRuntimeException -> StorageRuntimeException Change-Id: I0e934f177e98667ec7cb9912f246ac649a4efd99
25 lines
774 B
Python
25 lines
774 B
Python
java_library(
|
|
name = "api",
|
|
srcs = glob(
|
|
["**/*.java"],
|
|
),
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//java/com/google/gerrit/common:annotations",
|
|
"//java/com/google/gerrit/common:server",
|
|
"//java/com/google/gerrit/exceptions",
|
|
"//java/com/google/gerrit/extensions:api",
|
|
"//java/com/google/gerrit/lifecycle",
|
|
"//java/com/google/gerrit/reviewdb:server",
|
|
"//java/com/google/gerrit/server",
|
|
"//java/com/google/gerrit/server/restapi",
|
|
"//java/com/google/gerrit/util/cli",
|
|
"//lib:args4j",
|
|
"//lib:guava",
|
|
"//lib:servlet-api-3_1",
|
|
"//lib/guice",
|
|
"//lib/guice:guice-assistedinject",
|
|
"//lib/jgit/org.eclipse.jgit:jgit",
|
|
],
|
|
)
|