Skip to content

Instantly share code, notes, and snippets.

@krzysztofbalana
Created April 1, 2017 09:01
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
domain build.gradle
apply plugin: 'java'
apply plugin: 'kotlin'
dependencies {
def domainDependencies = rootProject.ext.domainDependencies
def testDependencies = rootProject.ext.testDependencies
def commonDependencies = rootProject.ext.commonDependencies
compile domainDependencies.rxjava
compile commonDependencies.kotlin
testCompile 'junit:junit:4.12'
testCompile commonDependencies.kotlin
testCompile testDependencies.kjunit
testCompile 'com.nhaarman:mockito-kotlin:1.1.0'
}
configurations {
provided
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment