initial commit

This commit is contained in:
2020-05-22 02:40:51 +02:00
commit 1733c32c41
15 changed files with 570 additions and 0 deletions

38
build.gradle.kts Normal file
View File

@@ -0,0 +1,38 @@
buildscript {
repositories {
gradlePluginPortal()
}
dependencies {
classpath("com.github.jengelman.gradle.plugins:shadow:5.2.0")
}
}
plugins {
kotlin("jvm") version "1.3.72"
}
group = "com.kmlabz"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
jcenter()
}
apply(plugin= "com.github.johnrengelman.shadow")
dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation("com.rabbitmq:amqp-client:2.7.1")
implementation("com.viartemev:the-white-rabbit:0.0.5")
implementation("com.google.code.gson:gson:2.8.6")
}
tasks {
compileKotlin {
kotlinOptions.jvmTarget = "11"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "11"
}
}