21 lines
553 B
Kotlin
21 lines
553 B
Kotlin
/*
|
|
* Examples for Java
|
|
*
|
|
* Copyright (c) 2021. Elex. All Rights Reserved.
|
|
* https://www.elex-project.com/
|
|
*/
|
|
|
|
plugins {
|
|
id("elex-java")
|
|
}
|
|
|
|
dependencies {
|
|
// https://mvnrepository.com/artifact/com.rabbitmq/amqp-client
|
|
implementation("com.rabbitmq:amqp-client:5.13.0")
|
|
|
|
// https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on
|
|
implementation("org.bouncycastle:bcprov-jdk15on:1.69")
|
|
// https://mvnrepository.com/artifact/org.bouncycastle/bcpkix-jdk15on
|
|
implementation("org.bouncycastle:bcpkix-jdk15on:1.69")
|
|
}
|