diff options
author | Ignat Beresnev <ignat.beresnev@jetbrains.com> | 2022-04-14 16:08:11 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-14 16:08:11 +0300 |
commit | 334c9e14dff14f0eb08bda10bac9e622aa132afc (patch) | |
tree | 5ba5ac8938f1be540ee8324bed6759913ec96e03 /integration-tests/gradle/projects/it-multimodule-1 | |
parent | 21a50e214f3d834bd51525807929e1adb9d0fe6c (diff) | |
download | dokka-334c9e14dff14f0eb08bda10bac9e622aa132afc.tar.gz dokka-334c9e14dff14f0eb08bda10bac9e622aa132afc.tar.bz2 dokka-334c9e14dff14f0eb08bda10bac9e622aa132afc.zip |
Use common gradle+kotlin versions across gradle integration tests (#2287)
* Use common gradle+kotlin versions across gradle integration tests
* Separate JVM/Android/MPP tested versions
* Fix react integration tests for 1.6.10
* Move kotlin react wrapper mapping to TestedVersions
* Update gradle to 6.9.2
Diffstat (limited to 'integration-tests/gradle/projects/it-multimodule-1')
3 files changed, 4 insertions, 4 deletions
diff --git a/integration-tests/gradle/projects/it-multimodule-1/build.gradle b/integration-tests/gradle/projects/it-multimodule-1/build.gradle index aa46d030..57d22b79 100644 --- a/integration-tests/gradle/projects/it-multimodule-1/build.gradle +++ b/integration-tests/gradle/projects/it-multimodule-1/build.gradle @@ -7,8 +7,8 @@ apply from: '../template.root.gradle.kts' dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib" - compile project(':first') - compile project(':second') + implementation project(':first') + implementation project(':second') } diff --git a/integration-tests/gradle/projects/it-multimodule-1/gradle.properties b/integration-tests/gradle/projects/it-multimodule-1/gradle.properties index 80455dd0..04177526 100644 --- a/integration-tests/gradle/projects/it-multimodule-1/gradle.properties +++ b/integration-tests/gradle/projects/it-multimodule-1/gradle.properties @@ -1 +1 @@ -dokka_it_kotlin_version=1.4.0 +dokka_it_kotlin_version=1.6.10 diff --git a/integration-tests/gradle/projects/it-multimodule-1/gradle/wrapper/gradle-wrapper.properties b/integration-tests/gradle/projects/it-multimodule-1/gradle/wrapper/gradle-wrapper.properties index ba94df84..ec991f9a 100644 --- a/integration-tests/gradle/projects/it-multimodule-1/gradle/wrapper/gradle-wrapper.properties +++ b/integration-tests/gradle/projects/it-multimodule-1/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-6.9.2-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists |