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
26 lines (21 loc) · 948 Bytes
/
build.gradle
File metadata and controls
26 lines (21 loc) · 948 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
25
26
description = 'AMQP Basic Sample'
dependencies {
api 'org.springframework.integration:spring-integration-stream'
api 'org.springframework.integration:spring-integration-amqp'
api "org.apache.logging.log4j:log4j-core:$log4jVersion"
runtimeOnly "org.slf4j:slf4j-jcl:$slf4jVersion"
}
tasks.register('runSimple', JavaExec) {
mainClass = 'org.springframework.integration.samples.amqp.SampleSimple'
classpath = sourceSets.main.runtimeClasspath
standardInput = System.in
// useful for debugging the GradleWorkerMain
// jvmArgs "-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=8000"
}
tasks.register('runPubConfirmsReturns', JavaExec) {
mainClass = 'org.springframework.integration.samples.amqp.SamplePubConfirmsReturns'
classpath = sourceSets.main.runtimeClasspath
standardInput = System.in
// useful for debugging the GradleWorkerMain
// jvmArgs "-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=8000"
}