blob: 185bafd9941ad0906e560e20f798ebb5878c5a43 [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')) {
// Remove everything related to Tomcat 6.x
exclude group: 'org.apache.tomcat'
}
compile ('org.apache.tomcat:tomcat-catalina:' + project.'tomcat7.version') {
exclude module: 'tomcat-annotations-api'
exclude module: 'tomcat-servlet-api'
}
compile ('org.apache.tomcat:tomcat-coyote:' + project.'tomcat7.version') {
exclude module: 'tomcat-servlet-api'
}
compile 'org.apache.tomcat:tomcat-juli:' + project.'tomcat7.version'
testCompile 'org.httpunit:httpunit:' + project.'httpunit.version'
testRuntime 'javax.annotation:jsr250-api:' + project.'javax.jsr250-api.version'
testRuntime 'javax.ejb:ejb-api:' + project.'javax.ejb-api.version'
testRuntime 'javax.servlet:javax.servlet-api:' + project.'javax.servlet-api.version'
testRuntime 'org.eclipse.persistence:javax.persistence:' + project.'javax.persistence-api.version'
testCompile project(path: ':geode-junit')
testCompile files(project(':geode-core').sourceSets.test.output)
testCompile files(project(':extensions/geode-modules').sourceSets.test.output)
eclipse.classpath.file {
whenMerged { classpath ->
classpath.entries.removeAll { entry -> entry.path.contains('geode-modules/build')}
}
}
}