forked from spring-projects/spring-integration-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
24 lines (21 loc) · 985 Bytes
/
build.gradle
File metadata and controls
24 lines (21 loc) · 985 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
description = 'Cafe Sample (Scripted Implementation)'
dependencies {
api 'org.springframework.integration:spring-integration-stream'
api 'org.springframework.integration:spring-integration-groovy'
api 'org.springframework.integration:spring-integration-jmx'
api 'org.springframework.integration:spring-integration-rsocket'
api "org.jruby:jruby-complete:$jrubyVersion"
api "org.graalvm.sdk:graal-sdk:$graalvmVersion"
api "org.graalvm.polyglot:python:$graalvmVersion"
api "org.apache.groovy:groovy-jsr223:$groovyVersion"
api "org.apache.logging.log4j:log4j-core:$log4jVersion"
}
tasks.register('runCafeDemoApp', JavaExec) {
mainClass = 'org.springframework.integration.samples.cafe.demo.CafeDemoApp'
args project.hasProperty('lang') ? project.lang : ''
classpath = sourceSets.main.runtimeClasspath
}
tasks.register('runControlBus', JavaExec) {
mainClass = 'org.springframework.integration.samples.cafe.demo.ControlBusMain'
classpath = sourceSets.main.runtimeClasspath
}