DAS_2024_1/emelyanov_artem_lab_4/lesson-1/build.gradle

20 lines
330 B
Groovy
Raw Normal View History

2024-10-18 16:27:06 +04:00
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()
}