blob: 1f2df63d7f0f97f25f8647460f08aa2348a20a07 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
apply from: "${rootDir}/${scriptDir}/standard-subproject-configuration.gradle"
apply from: "${project.projectDir}/../gradle/publish-java.gradle"
dependencies {
compile(platform(project(':boms:geode-all-bom')))
gradleLint.ignore {
// See GEODE-6128 -- ignore xml-apis in linter to avoid changes with every run.
upgradeTestCompile('xml-apis:xml-apis:1.4.01')
}
implementation(project(':geode-logging'))
implementation(project(':geode-serialization'))
compile(project(':geode-core'))
compileOnly('org.apache.logging.log4j:log4j-api:2.12.0')
testCompile(project(':geode-junit')) {
exclude module: 'geode-core'
}
testCompile('org.assertj:assertj-core')
testCompile('junit:junit')
testCompile('org.mockito:mockito-core')
integrationTestCompile(project(':geode-junit')) {
exclude module: 'geode-core'
}
integrationTestCompile('org.assertj:assertj-core')
integrationTestCompile('junit:junit')
distributedTestCompile(project(':geode-dunit')){
exclude module: 'geode-core'
}
distributedTestCompile(project(':geode-junit'))
distributedTestCompile('mx4j:mx4j')
distributedTestCompile('org.awaitility:awaitility')
distributedTestCompile('junit:junit')
distributedTestCompile('org.hamcrest:hamcrest-core')
distributedTestCompile('org.hamcrest:hamcrest-library')
distributedTestCompile('org.mockito:mockito-core')
distributedTestCompile('org.hamcrest:hamcrest-all')
distributedTestCompile('org.apache.commons:commons-lang3')
distributedTestCompile('commons-io:commons-io')
distributedTestCompile('org.assertj:assertj-core')
distributedTestCompile('pl.pragmatists:JUnitParams')
upgradeTestCompile(project(':geode-junit'))
upgradeTestCompile(project(':geode-dunit')) {
exclude module: 'geode-core'
}
upgradeTestCompile('org.awaitility:awaitility')
upgradeTestCompile('org.assertj:assertj-core')
upgradeTestCompile('junit:junit')
upgradeTestRuntime(project(path: ':geode-old-versions', configuration: 'testOutput'))
}