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
25 lines (20 loc) · 785 Bytes
/
build.gradle
File metadata and controls
25 lines (20 loc) · 785 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
plugins {
id 'org.springframework.boot'
}
description = 'Barrier Sample'
dependencies {
api 'org.springframework.boot:spring-boot-starter-web'
api 'org.springframework.boot:spring-boot-starter-integration'
api 'org.springframework.boot:spring-boot-starter-amqp'
api 'org.springframework.integration:spring-integration-amqp'
api 'org.springframework.integration:spring-integration-http'
testImplementation 'org.springframework.amqp:spring-rabbit-junit'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
springBoot {
mainClass = 'org.springframework.integration.samples.barrier.Application'
}
tasks.register('run', JavaExec) {
mainClass = 'org.springframework.integration.samples.barrier.Application'
classpath = sourceSets.main.runtimeClasspath
}