Created
June 26, 2017 08:27
-
-
Save ozodrukh/ff5d1168b4c84ef7a20b87aaebd9e874 to your computer and use it in GitHub Desktop.
Revisions
-
ozodrukh created this gist
Jun 26, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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() }