19 lines
307 B
Groovy
19 lines
307 B
Groovy
plugins {
|
|
id 'org.springframework.boot' version '2.6.3'
|
|
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
|
|
id 'java'
|
|
}
|
|
|
|
group = 'myapp'
|
|
version = '0.0.1-SNAPSHOT'
|
|
sourceCompatibility = '17'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.rabbitmq:amqp-client:5.16.0'
|
|
}
|
|
|