20 lines
330 B
Groovy
20 lines
330 B
Groovy
|
plugins {
|
||
|
id 'java'
|
||
|
}
|
||
|
|
||
|
group = 'ru.promo'
|
||
|
version = '1.0-SNAPSHOT'
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
testImplementation platform('org.junit:junit-bom:5.10.0')
|
||
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
||
|
implementation 'com.rabbitmq:amqp-client:5.22.0'
|
||
|
}
|
||
|
|
||
|
test {
|
||
|
useJUnitPlatform()
|
||
|
}
|