blob: 4bb8dfd5320cdc077cb5630f3c6af1dd22b71fc8 [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2015-2018 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
********************************************************************************/
description = 'MDM FreeText Search Indexer'
apply plugin: 'java'
apply plugin: 'maven-publish'
apply plugin: 'eclipse'
dependencies {
implementation 'commons-httpclient:commons-httpclient:3.1'
implementation 'org.slf4j:jcl-over-slf4j:1.7.25'
compileOnly 'com.fasterxml.jackson.core:jackson-databind:2.5.1'
implementation project(":api:base")
implementation project(':nucleus:connector')
implementation project(':nucleus:property')
implementation 'com.google.guava:guava:25.0-jre'
compileOnly 'javax:javaee-api:7.0'
testImplementation 'junit:junit:4.12'
testImplementation project(':api:atfxadapter')
testImplementation "org.testcontainers:elasticsearch:1.12.5"
testImplementation "org.elasticsearch.client:elasticsearch-rest-client:7.5.2"
testImplementation "org.elasticsearch.client:elasticsearch-rest-high-level-client:7.5.2"
testRuntimeOnly 'com.fasterxml.jackson.core:jackson-databind:2.6.6'
}
jar {
metaInf { from '../../NOTICE.txt' }
metaInf { from '../../LICENSE.txt' }
}