-
Notifications
You must be signed in to change notification settings - Fork 665
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?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -99,7 +99,6 @@ allprojects { prj -> | |
"**.SuppressForbidden" | ||
] | ||
|
||
doFirst dynamicSignatures.curry(configurations.toolsCompileClasspath, "lucene") | ||
inputs.dir(file(resources)) | ||
} | ||
|
||
|
@@ -113,18 +112,6 @@ allprojects { prj -> | |
] | ||
} | ||
|
||
// Configure solr-specific rules. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the whole configuration overall is for Solr |
||
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 commentThe 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. |
||
signaturesFiles += files(file("${resources}/java.solr.txt")) | ||
} | ||
|
||
forbiddenApisTest { | ||
doFirst dynamicSignatures.curry(configurations.testCompileClasspath, "solr") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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. |
||
} | ||
} | ||
|
||
// Disable checks on JMH generated files. | ||
if (prj.path == ":solr:benchmark") { | ||
forbiddenApisMain.exclude("**/jmh_generated/**") | ||
|
This file was deleted.
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.