Skip to content

Instantly share code, notes, and snippets.

@ozodrukh
Created June 26, 2017 08:27
Show Gist options
  • Select an option

  • Save ozodrukh/ff5d1168b4c84ef7a20b87aaebd9e874 to your computer and use it in GitHub Desktop.

Select an option

Save ozodrukh/ff5d1168b4c84ef7a20b87aaebd9e874 to your computer and use it in GitHub Desktop.

Revisions

  1. ozodrukh created this gist Jun 26, 2017.
    24 changes: 24 additions & 0 deletions build.gradle.kts
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,24 @@
    plugins {
    kotlin("jvm")
    }

    kapt {
    generateStubs = true
    }

    dependencies {
    compile(project(":shared"))
    compile(kotlin("reflect"))

    compile("com.rabbitmq:amqp-client:4.1.1")

    val junitVersion: String by project.extra
    testCompile(group = "org.junit.jupiter", name = "junit-jupiter-api", version = junitVersion)
    testCompile(group = "org.junit.jupiter", name = "junit-jupiter-params", version = junitVersion)
    }

    repositories {
    mavenCentral()
    jcenter()
    gradleScriptKotlin()
    }