Build: Fix test runtime for kapt tests

This commit is contained in:
Vyacheslav Gerasimov
2021-12-16 19:37:59 +03:00
committed by teamcity
parent 4d87843925
commit 84469d0c68
3 changed files with 8 additions and 0 deletions
@@ -19,6 +19,7 @@ fun Project.jpsBuildTest() = "com.jetbrains.intellij.idea:jps-build-test:$intell
fun Project.intellijPlatformUtil() = "com.jetbrains.intellij.platform:util:$intellijVersion"
fun Project.intellijJavaRt() = "com.jetbrains.intellij.java:java-rt:$intellijVersion"
fun Project.intellijAnalysis() = "com.jetbrains.intellij.platform:analysis:$intellijVersion"
fun Project.intellijResources() = "com.jetbrains.intellij.platform:resources:$intellijVersion"
/**
* Runtime version of annotations that are already in Kotlin stdlib (historically Kotlin has older version of this one).
+6
View File
@@ -2189,6 +2189,12 @@
<sha256 value="582061575d59620f43acf97ae0608205886a112a5d78713dedd31208b12f4056" origin="Generated by Gradle"/>
</artifact>
</component>
<component group="com.jetbrains.intellij.platform" name="resources" version="203.8084.24">
<artifact name="resources-203.8084.24.jar">
<md5 value="4c4fe9b22cd32c94a4f22226a21e9dd8" origin="Generated by Gradle"/>
<sha256 value="53cd060b14f9524e6b16a054bf56126c20e3e41a65e5e62bd16b3f7e39f60ed8" origin="Generated by Gradle"/>
</artifact>
</component>
<component group="com.jetbrains.intellij.platform" name="util" version="203.8084.24">
<artifact name="util-203.8084.24.jar">
<md5 value="7ed6fa3ead2c71ab71d81cd3e4a4ac24" origin="Generated by Gradle"/>
@@ -22,6 +22,7 @@ dependencies {
compileOnly(commonDependency("org.jetbrains.intellij.deps:asm-all"))
testImplementation(intellijCore())
testRuntimeOnly(intellijResources()) { isTransitive = false }
testApi(projectTests(":compiler:tests-common"))
testApi(project(":kotlin-annotation-processing-base"))