blob: 11bbe9594e3e805c59fc90a3c352819ae94ecfc3 [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')))
compile(project(':geode-core'))
implementation(project(':geode-logging'))
implementation(project(':geode-serialization'))
testCompile(project(':geode-junit')) {
exclude module: 'geode-core'
}
integrationTestCompile(project(':geode-dunit')) {
exclude module: 'geode-core'
}
integrationTestCompile(project(':geode-junit')) {
exclude module: 'geode-core'
}
distributedTestCompile(project(':geode-junit')) {
exclude module: 'geode-core'
}
distributedTestCompile(project(':geode-dunit')){
exclude module: 'geode-core'
}
upgradeTestCompile(project(':geode-dunit')) {
exclude module: 'geode-core'
}
upgradeTestCompile(project(':geode-junit')) {
exclude module: 'geode-core'
}
compile('org.apache.logging.log4j:log4j-api')
integrationTestCompile('junit:junit')
integrationTestCompile('org.awaitility:awaitility')
distributedTestCompile('org.apache.commons:commons-lang3')
distributedTestCompile('junit:junit')
distributedTestCompile('mx4j:mx4j')
distributedTestCompile('org.assertj:assertj-core')
distributedTestCompile('org.awaitility:awaitility')
distributedTestCompile('org.hamcrest:hamcrest-all')
distributedTestCompile('org.hamcrest:hamcrest-core')
distributedTestCompile('org.hamcrest:hamcrest-library')
upgradeTestCompile('junit:junit')
upgradeTestCompile('org.awaitility:awaitility')
upgradeTestCompile('org.mockito:mockito-core')
upgradeTestRuntime(project(path: ':geode-old-versions', configuration: 'testOutput'))
}
ext.moduleName = group + '.cq'
jar {
inputs.property("moduleName", moduleName)
manifest {
attributes('Automatic-Module-Name': moduleName)
}
}