blob: 5169b04d5aa483511d00939ed0e32707ed5e64be [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.
*/
dependencies {
compile project(':extensions/geode-modules')
compile ('org.hibernate:hibernate-annotations:' + project.'hibernate.version') {
//TODO - do we want these extensions, especially since the show up in testruntime?
//If they were needed by our tests, doesn't that mean they will be needed in production?
exclude module: 'commons-collections'
exclude module: 'dom4j'
exclude module: 'hibernate-commons-annotations'
exclude module: 'hibernate-jpa-2.0-api'
exclude module: 'jta'
}
compile 'org.eclipse.persistence:javax.persistence:' + project.'javax.persistence-api.version'
runtime ('dom4j:dom4j:' + project.'dom4j.version') {
exclude module: 'xml-apis'
}
testRuntime 'commons-collections:commons-collections:' + project.'commons-collections.version'
testRuntime 'org.hibernate:hibernate-commons-annotations:' + project.'hibernate-commons-annotations.version'
testRuntime 'org.slf4j:slf4j-jdk14:' + project.'slf4j-api.version'
testRuntime 'org.hsqldb:hsqldb:' + project.'hsqldb.version'
testRuntime 'org.javassist:javassist:' + project.'javassist.version'
testCompile project(path: ':geode-junit')
}