Proper import of the gradle part:

- using non-shadowed libs
- stop preshgadowing plugins
- switch to project dependencies
- add annotation processing module
This commit is contained in:
Ilya Chernikov
2017-08-03 15:46:34 +02:00
parent 3caa426b76
commit 438525dfff
22 changed files with 167 additions and 100 deletions
@@ -14,10 +14,10 @@ dependencies {
testCompile project(':kotlin-gradle-subplugin-example')
testCompile project(':kotlin-allopen')
testCompile project (path: ':examples:annotation-processor-example')
testCompile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version"
testCompile "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version"
testCompile project (path: ':build-common', configuration: 'tests-jar')
testCompile project(path: ':examples:annotation-processor-example')
testCompile project(':kotlin-stdlib-jre8')
testCompile project(':plugins:android-extensions-compiler')
testCompile project(path: ':build-common', configuration: 'tests-jar')
testCompile 'org.jetbrains.kotlin:gradle-api:2.2'
}