mirror of https://github.com/apache/lucene.git
9 lines
231 B
Groovy
9 lines
231 B
Groovy
|
|
||
|
// Why does solr exclude these from forbidden API checks?
|
||
|
|
||
|
configure(project(":solr:core")) {
|
||
|
configure([forbiddenApisMain, forbiddenApisTest]) {
|
||
|
exclude "org/apache/solr/internal/**"
|
||
|
exclude "org/apache/hadoop/**"
|
||
|
}
|
||
|
}
|