blob: b9629d30a66d70e9283987ab2db8d4bb2b2f08a1 [file] [log] [blame]
apply plugin: 'war'
dependencies {
runtime 'org.springframework:spring-aspects:3.2.12.RELEASE'
runtime 'org.springframework:spring-oxm:3.2.12.RELEASE'
runtime 'commons-fileupload:commons-fileupload:1.3.1'
provided 'javax.servlet:javax.servlet-api:3.1.0'
// have to use output since we exclude the dependent classes from jar :(
provided project(path: ':gemfire-core', configuration: 'classesOutput')
provided project(':gemfire-core')
provided project(path: ':gemfire-junit', configuration: 'testOutput')
}
eclipse.classpath.minusConfigurations += [ project(':gemfire-core').configurations.classesOutput ]
idea.module.scopes.PROVIDED.minus += [ project(':gemfire-core').configurations.classesOutput ]
artifacts {
archives jar
}
war {
classpath configurations.runtime
classpath project(':gemfire-core').webJar.archivePath
}