22 lines
458 B
Plaintext
22 lines
458 B
Plaintext
import be.simplenotes.Libs
|
|
import be.simplenotes.micronaut
|
|
|
|
plugins {
|
|
id("be.simplenotes.base")
|
|
id("be.simplenotes.micronaut")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":types"))
|
|
|
|
implementation(Libs.Lucene.core)
|
|
implementation(Libs.Lucene.queryParser)
|
|
implementation(Libs.Lucene.analyzersCommon)
|
|
implementation(Libs.Slf4J.api)
|
|
|
|
micronaut()
|
|
|
|
testImplementation(Libs.Test.junit)
|
|
testImplementation(Libs.Test.assertJ)
|
|
}
|