the-algorithm/src/java/com/twitter/search/common/schema/base/BUILD
twitter-team ef4c5eb65e Twitter Recommendation Algorithm
Please note we have force-pushed a new initial commit in order to remove some publicly-available Twitter user information. Note that this process may be required in the future.
2023-03-31 17:36:31 -05:00

26 lines
939 B
Python

# Library for Schema.java and other utilities with minimal dependencies.
java_library(
name = "base",
sources = ["*.java"],
platform = "java8",
provides = artifact(
org = "com.twitter.search.common",
name = "schema-base",
repo = artifactory,
),
tags = ["bazel-compatible"],
dependencies = [
"3rdparty/jvm/com/google/code/findbugs:jsr305",
"3rdparty/jvm/com/google/guava",
"3rdparty/jvm/commons-lang",
"3rdparty/jvm/org/apache/lucene:lucene-analyzers-common",
"3rdparty/jvm/org/apache/lucene:lucene-core",
"3rdparty/jvm/org/apache/lucene:lucene-facet",
"3rdparty/jvm/org/apache/thrift:libthrift",
"src/java/com/twitter/common/base",
"src/java/com/twitter/common/text/util:token-util",
"src/thrift/com/twitter/search/common:features-java",
"src/thrift/com/twitter/search/common:schema-java",
],
)