mirror of https://github.com/apache/lucene.git
13 lines
308 B
Groovy
13 lines
308 B
Groovy
|
|
apply plugin: 'java-library'
|
|
|
|
dependencies {
|
|
implementation project(':solr:core')
|
|
implementation project(':lucene:analysis:common')
|
|
implementation('org.carrot2:carrot2-mini', {
|
|
exclude group: "org.simpleframework", module: "simple-xml"
|
|
})
|
|
|
|
testImplementation project(':solr:test-framework')
|
|
}
|