Skip to content

Commit 5f47960

Browse files
Eugene Yokotajenkins
authored andcommitted
[Bazel migration] Unify strict_deps to boolean
Problem ------- We have a mix of strict_deps `True` and `"True"`. Solution -------- Unify to `True`. This is a prep step before {D863899} JIRA Issues: DPB-12419 Differential Revision: https://phabricator.twitter.biz/D865349
1 parent 3aeb8af commit 5f47960

File tree

28 files changed

+30
-30
lines changed
  • http-core/src
  • http-server/src
  • inject
    • inject-ports/src/main/scala/com/twitter/inject/server
    • inject-server/src
      • main/scala/com/twitter
      • test/scala/com/twitter/inject/server
  • jackson/src/test/java/com/twitter/finatra/jackson

28 files changed

+30
-30
lines changed

http-core/src/main/java/com/twitter/finatra/http/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ java_library(
66
name = "finatra-http-java-core",
77
repo = artifactory,
88
),
9-
strict_deps = "True",
9+
strict_deps = True,
1010
tags = ["bazel-compatible"],
1111
)

http-core/src/main/java/com/twitter/finatra/http/jsonpatch/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ java_library(
66
name = "finatra-http-java-jsonpatch",
77
repo = artifactory,
88
),
9-
strict_deps = "True",
9+
strict_deps = True,
1010
tags = ["bazel-compatible"],
1111
)

http-core/src/main/java/com/twitter/finatra/http/request/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ java_library(
66
name = "finatra-http-java-request",
77
repo = artifactory,
88
),
9-
strict_deps = "True",
9+
strict_deps = True,
1010
tags = ["bazel-compatible"],
1111
dependencies = [
1212
"finagle/finagle-base-http/src/main",

http-core/src/main/scala/com/twitter/finatra/http/contexts/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ scala_library(
66
name = "finatra-http-contexts",
77
repo = artifactory,
88
),
9-
strict_deps = "True",
9+
strict_deps = True,
1010
tags = ["bazel-compatible"],
1111
dependencies = [
1212
"finagle/finagle-base-http/src/main",

http-core/src/main/scala/com/twitter/finatra/http/exceptions/BUILD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ scala_library(
77
name = "finatra-http-exception-mapper",
88
repo = artifactory,
99
),
10-
strict_deps = "True",
10+
strict_deps = True,
1111
tags = ["bazel-compatible"],
1212
dependencies = [
1313
"finagle/finagle-base-http/src/main",
@@ -28,7 +28,7 @@ scala_library(
2828
name = "finatra-http-exceptions",
2929
repo = artifactory,
3030
),
31-
strict_deps = "True",
31+
strict_deps = True,
3232
tags = ["bazel-compatible"],
3333
dependencies = [
3434
":exception-mapper",

http-core/src/main/scala/com/twitter/finatra/http/fileupload/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ scala_library(
66
name = "finatra-http-fileupload",
77
repo = artifactory,
88
),
9-
strict_deps = "True",
9+
strict_deps = True,
1010
tags = ["bazel-compatible"],
1111
dependencies = [
1212
"3rdparty/jvm/commons-fileupload",

http-core/src/main/scala/com/twitter/finatra/http/jsonpatch/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ scala_library(
66
name = "finatra-http-jsonpatch",
77
repo = artifactory,
88
),
9-
strict_deps = "True",
9+
strict_deps = True,
1010
tags = ["bazel-compatible"],
1111
dependencies = [
1212
"3rdparty/jvm/com/fasterxml/jackson/core:jackson-core",

http-core/src/main/scala/com/twitter/finatra/http/marshalling/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ scala_library(
66
name = "finatra-http-marshalling",
77
repo = artifactory,
88
),
9-
strict_deps = "True",
9+
strict_deps = True,
1010
tags = ["bazel-compatible"],
1111
dependencies = [
1212
"3rdparty/jvm/com/fasterxml/jackson/core:jackson-annotations",

http-core/src/main/scala/com/twitter/finatra/http/marshalling/modules/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ scala_library(
66
name = "finatra-http-marshalling-modules",
77
repo = artifactory,
88
),
9-
strict_deps = "True",
9+
strict_deps = True,
1010
tags = ["bazel-compatible"],
1111
dependencies = [
1212
"3rdparty/jvm/com/google/inject:guice",

http-core/src/main/scala/com/twitter/finatra/http/request/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ scala_library(
55
name = "finatra-http-core-request",
66
repo = artifactory,
77
),
8-
strict_deps = "True",
8+
strict_deps = True,
99
tags = ["bazel-compatible"],
1010
dependencies = [
1111
"finagle/finagle-base-http/src/main",

0 commit comments

Comments
 (0)