31 lines
760 B
Groovy
31 lines
760 B
Groovy
description = 'Spring Integration Splunk Sample'
|
|
apply plugin: 'base'
|
|
apply plugin: 'java'
|
|
apply plugin: 'eclipse'
|
|
apply plugin: 'application'
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
maven { url "http://repo.springsource.org/libs-snapshot" }
|
|
}
|
|
|
|
dependencies {
|
|
compile "org.springframework.integration:spring-integration-splunk:$springIntegrationSplunkVersion"
|
|
compile "org.springframework.integration:spring-integration-jdbc:$springIntegrationVersion"
|
|
compile "org.springframework:spring-jdbc:$springVersion"
|
|
compile "org.apache.derby:derby:$derbyVersion"
|
|
}
|
|
|
|
task wrapper(type: Wrapper) {
|
|
description = 'Generates gradlew[.bat] scripts'
|
|
gradleVersion = '1.2'
|
|
}
|
|
|
|
eclipse {
|
|
project {
|
|
name = "spring-integration-splunk-sample"
|
|
}
|
|
}
|
|
|
|
defaultTasks 'clean', 'build'
|