mirror of https://github.com/apache/lucene.git
15 lines
426 B
Groovy
15 lines
426 B
Groovy
apply plugin: 'java-library'
|
|
|
|
dependencies {
|
|
implementation project(':solr:core')
|
|
implementation project(':lucene:analysis:common')
|
|
|
|
testImplementation('org.mockito:mockito-core', {
|
|
exclude group: "net.bytebuddy", module: "byte-buddy-agent"
|
|
})
|
|
testImplementation ('org.objenesis:objenesis')
|
|
testImplementation ('org.restlet.jee:org.restlet.ext.servlet')
|
|
|
|
testImplementation project(':solr:test-framework')
|
|
}
|