Skip to content
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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dsmiley
Copy link
Contributor

@dsmiley dsmiley commented Nov 16, 2024

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.

@@ -99,7 +99,6 @@ allprojects { prj ->
"**.SuppressForbidden"
]

doFirst dynamicSignatures.curry(configurations.toolsCompileClasspath, "lucene")
Copy link
Contributor Author

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.
Copy link
Contributor Author

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")
Copy link
Contributor Author

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")
Copy link
Contributor Author

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant