Skip to content

Commit ee62c25

Browse files
committed
Update hardcoded project paths
1 parent 496c0e3 commit ee62c25

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

docs-developer/src/doc/docs/developer_guide/architecture/extension_points/core_extension_points.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,6 @@ and `CommonmarkRenderer`.
9898
`PostAction` can be used for when you want to run some actions after the documentation has been generated - for example,
9999
if you want to move some files around or log some informational messages.
100100

101-
Dokka's [Versioning plugin](https://github.com/Kotlin/dokka/tree/master/plugins/versioning) utilizes `PostAction`
101+
Dokka's [Versioning plugin](https://github.com/Kotlin/dokka/tree/master/dokka-subprojects/plugin-versioning) utilizes `PostAction`
102102
to move generated documentation to the versioned directories.
103103

dokka-integration-tests/gradle/projects/it-basic-groovy/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ dokkaHtml {
3131
remoteUrl.set(
3232
new URL(
3333
"https://github.com/Kotlin/dokka/tree/master/" +
34-
"integration-tests/gradle/projects/it-basic-groovy/src/main"
34+
"dokka-integration-tests/gradle/projects/it-basic-groovy/src/main"
3535
)
3636
)
3737
}

dokka-integration-tests/gradle/projects/it-basic/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ tasks.withType<DokkaTask> {
5151
remoteUrl.set(
5252
URL(
5353
"https://github.com/Kotlin/dokka/tree/master/" +
54-
"integration-tests/gradle/projects/it-basic/src/main"
54+
"dokka-integration-tests/gradle/projects/it-basic/src/main"
5555
)
5656
)
5757
}

dokka-integration-tests/gradle/projects/it-collector-0/moduleA/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ allprojects {
1313
tasks.withType<org.jetbrains.dokka.gradle.AbstractDokkaTask> {
1414
pluginsMapConfiguration.set(
1515
mapOf(
16-
"org.jetbrains.dokka.base.DokkaBase" to """{ "homepageLink" : "https://github.com/Kotlin/dokka/tree/master/integration-tests/gradle/projects/it-multimodule-0/" }"""
16+
"org.jetbrains.dokka.base.DokkaBase" to """{ "homepageLink" : "https://github.com/Kotlin/dokka/tree/master/dokka-integration-tests/gradle/projects/it-multimodule-0/" }"""
1717
)
1818
)
1919
}

dokka-integration-tests/gradle/src/integrationTest/kotlin/org/jetbrains/dokka/it/gradle/AbstractGradleCachingIntegrationTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ abstract class AbstractGradleCachingIntegrationTest : AbstractGradleIntegrationT
104104
assertTrue(
105105
allHtmlFiles().any { file ->
106106
"https://github.com/Kotlin/dokka/tree/master/" +
107-
"integration-tests/gradle/projects/it-basic/" +
107+
"dokka-integration-tests/gradle/projects/it-basic/" +
108108
"src/main/kotlin/it/basic/PublicClass.kt" in file.readText()
109109
},
110110
"Expected `PublicClass` source link to GitHub"
@@ -113,7 +113,7 @@ abstract class AbstractGradleCachingIntegrationTest : AbstractGradleIntegrationT
113113
assertTrue(
114114
allHtmlFiles().any { file ->
115115
"https://github.com/Kotlin/dokka/tree/master/" +
116-
"integration-tests/gradle/projects/it-basic/" +
116+
"dokka-integration-tests/gradle/projects/it-basic/" +
117117
"src/main/java/it/basic/java/SampleJavaClass.java" in file.readText()
118118
},
119119
"Expected `SampleJavaClass` source link to GitHub"

dokka-integration-tests/gradle/src/integrationTest/kotlin/org/jetbrains/dokka/it/gradle/BasicGradleIntegrationTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ class BasicGradleIntegrationTest : AbstractGradleIntegrationTest() {
111111
assertTrue(
112112
allHtmlFiles().any { file ->
113113
"https://github.com/Kotlin/dokka/tree/master/" +
114-
"integration-tests/gradle/projects/it-basic/" +
114+
"dokka-integration-tests/gradle/projects/it-basic/" +
115115
"src/main/kotlin/it/basic/PublicClass.kt" in file.readText()
116116
},
117117
"Expected `PublicClass` source link to GitHub"
@@ -120,7 +120,7 @@ class BasicGradleIntegrationTest : AbstractGradleIntegrationTest() {
120120
assertTrue(
121121
allHtmlFiles().any { file ->
122122
"https://github.com/Kotlin/dokka/tree/master/" +
123-
"integration-tests/gradle/projects/it-basic/" +
123+
"dokka-integration-tests/gradle/projects/it-basic/" +
124124
"src/main/java/it/basic/java/SampleJavaClass.java" in file.readText()
125125
},
126126
"Expected `SampleJavaClass` source link to GitHub"

dokka-integration-tests/gradle/src/integrationTest/kotlin/org/jetbrains/dokka/it/gradle/MultiModule0IntegrationTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ class MultiModule0IntegrationTest : AbstractGradleIntegrationTest() {
8282
htmlsWithHomepageLink.forEach {
8383
assertTrue(
8484
it.readText().contains(
85-
"""https://github.com/Kotlin/dokka/tree/master/integration-tests/gradle/projects/it-multimodule-0/"""
85+
"""https://github.com/Kotlin/dokka/tree/master/dokka-integration-tests/gradle/projects/it-multimodule-0/"""
8686
),
8787
"File ${it.absolutePath} doesn't contain link to homepage"
8888
)

0 commit comments

Comments
 (0)