-
Notifications
You must be signed in to change notification settings - Fork 666
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
forbidden-apis: Don't need java.solr.txt file #2866
base: main
Are you sure you want to change the base?
Conversation
@@ -99,7 +99,6 @@ allprojects { prj -> | |||
"**.SuppressForbidden" | |||
] | |||
|
|||
doFirst dynamicSignatures.curry(configurations.toolsCompileClasspath, "lucene") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't quite understand this line but the reference to "lucene" probably matches nothing.
@@ -113,18 +112,6 @@ allprojects { prj -> | |||
] | |||
} | |||
|
|||
// Configure solr-specific rules. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the whole configuration overall is for Solr
// Configure solr-specific rules. | ||
if (prj.path.startsWith(":solr")) { | ||
forbiddenApisMain { | ||
doFirst dynamicSignatures.curry(configurations.compileClasspath, "solr") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe I should have kept this line? I'm not sure what it accomplishes.
} | ||
|
||
forbiddenApisTest { | ||
doFirst dynamicSignatures.curry(configurations.testCompileClasspath, "solr") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe I should have kept this line? I'm not sure what it accomplishes.
I was looking through our forbidden-apis configuration, and I see "java.solr.txt" file that appears named this way because it was added at a time when Lucene & Solr co-existed and needed to be differentiated. I moved the rules from there into "defaults.all.txt", and I removed the reference to this file in forbidden-apis.gradle.
But I see other stuff in forbidden-apis.gradle that I don't understand; it's a rather complicated gradle file IMO. Hoping for your review @dweiss as you wrote this one.