Skip to content

Instantly share code, notes, and snippets.

@ozodrukh
Created June 26, 2017 08:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ozodrukh/ff5d1168b4c84ef7a20b87aaebd9e874 to your computer and use it in GitHub Desktop.
Save ozodrukh/ff5d1168b4c84ef7a20b87aaebd9e874 to your computer and use it in GitHub Desktop.
Gradle Kotlin Script
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()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment