Skip to content

Commit 259f9ba

Browse files
mbucchifacebook-github-bot
authored andcommitted
remove Intellij provided packages from thrift dependencies jar
Summary: Apparently Intellij SDK provides all of the following packages: - `com.fasterxml.jackson` - `net.jcip.annotations` - `net.sf.cglib` - `org.HdrHistogram` So we should remove them completely from the thrift dependencies jar allow-large-files Reviewed By: ianlevesque Differential Revision: D72075975 fbshipit-source-id: af9f4bf51f70b561764a115e935eaef0423b801c
1 parent f2d813b commit 259f9ba

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

eden/fs/service/BUCK

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -663,9 +663,11 @@ make_rule_compatible_with(
663663
"org.slf4j",
664664
"javax.annotation", # provided by jsr305
665665
# IDEA SDK already contains the following
666+
"com.fasterxml.jackson",
666667
"com.google",
667-
"net.sf.cglib.core.AbstractClassGenerator",
668-
"net.sf.cglib.core.AbstractClassGenerator$Source",
668+
"net.jcip.annotations",
669+
"net.sf.cglib",
670+
"org.HdrHistogram",
669671
],
670672
compatible_with = [
671673
"ovr_config//os:linux",

0 commit comments

Comments
 (0)