Add annotation processing into dist, publish & tests

This commit is contained in:
Ilya Chernikov
2017-08-30 16:39:10 +03:00
parent c0572aeb34
commit 19e0cfeb9e
2 changed files with 11 additions and 1 deletions
+2 -1
View File
@@ -273,7 +273,8 @@ tasks {
dependsOn(":plugins:plugins-tests:test",
":plugins:kapt3:test",
":kotlin-source-sections-compiler-plugin:test",
":plugins:uast-kotlin:test")
":plugins:uast-kotlin:test",
":kotlin-annotation-processing")
}
"scripting-tests" {
@@ -1,4 +1,6 @@
description = "Annotation Processor wrapper for Kotlin"
apply { plugin("kotlin") }
dependencies {
@@ -18,3 +20,10 @@ projectTest {
workingDir = projectDir
}
runtimeJar()
sourcesJar()
javadocJar()
dist()
publish()