Install annotation-processor-example for Gradle integration tests.

This commit is contained in:
Sergey Igushkin
2017-09-29 19:47:15 +03:00
parent feee93186b
commit ad4fc7363e
2 changed files with 6 additions and 2 deletions
@@ -1,6 +1,9 @@
description = "Simple Annotation Processor for testing kapt"
apply { plugin("kotlin") }
apply {
plugin("kotlin")
plugin("maven") // only used for installing to mavenLocal()
}
dependencies {
compile(projectDist(":kotlin-stdlib"))
@@ -34,7 +34,8 @@ test.dependsOn(":kotlin-allopen:install",
":kotlin-reflect:install",
":kotlin-test:kotlin-test-jvm:install",
":kotlin-gradle-subplugin-example:install",
":kotlin-stdlib-jre8:install")
":kotlin-stdlib-jre8:install",
":examples:annotation-processor-example:install")
// Validate that all dependencies 'install' tasks are added to 'test' dependencies
// Test dependencies are specified as paths to avoid forcing dependency resolution