-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update Dokka to 1.9.0 * Move Kotlin Analysis dependencies to new single dependency (analysis-kotlin-descriptors) * Dependency updates: * Update Kotlin from 1.8.20 to 1.9.0 * Update Dokka from 1.8.20 to 1.9.0 * Update Kotlin Serialization from 1.5.1 to 1.6.0 * Update internal Dokkatoo from 1.5.0 to 1.6.0 Resolves #117 * remove overridden Dokka version in `:docs` * update example projects * update integration test projects --------- Co-authored-by: Adam <[email protected]>
- Loading branch information
1 parent
a4bb6c7
commit 6f89c1a
Showing
38 changed files
with
87 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
/* | ||
* All Margins and sizes are custom for the ktor-logo.png file. | ||
* You may need to modify it and find what works best for your case. | ||
* You may need to override it and find what works best for your case. | ||
*/ | ||
.library-name a { | ||
position: relative; | ||
margin-left: 55px; | ||
:root { | ||
--dokka-logo-image-url: url('../images/ktor-logo.png'); | ||
--dokka-logo-height: 125px; | ||
--dokka-logo-width: 50px; | ||
} | ||
|
||
.library-name a::before { | ||
content: ''; | ||
background-image: url('../images/ktor-logo.png'); | ||
background-repeat: no-repeat; | ||
background-size: 125px 50px; | ||
position: absolute; | ||
width: 52px; | ||
height: 50px; | ||
top: -18px; | ||
left: -62px; | ||
/* link custom rules styles */ | ||
.library-name--link { | ||
/* ... */ | ||
} | ||
|
||
/* logo custom rules styles */ | ||
.library-name--link::before { | ||
background-position: left; | ||
width: 52px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
plugins { | ||
kotlin("jvm") version "1.8.22" | ||
kotlin("jvm") version "1.9.0" | ||
id("dev.adamko.dokkatoo") version "2.0.0-SNAPSHOT" | ||
} | ||
|
||
dokkatoo { | ||
moduleName.set("customFormat-example") | ||
pluginsConfiguration.html { | ||
// Custom format adds a custom logo | ||
// Dokka's stylesheets and assets with conflicting names will be overridden. | ||
// In this particular case, logo-styles.css will be overridden | ||
// and ktor-logo.png will be added as an additional image asset | ||
customStyleSheets.from("logo-styles.css") | ||
customAssets.from("ktor-logo.png") | ||
|
||
// Text used in the footer | ||
footerMessage.set("(c) Custom Format Dokka example") | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
/* | ||
* All Margins and sizes are custom for the ktor-logo.png file. | ||
* You may need to modify it and find what works best for your case. | ||
* You may need to override it and find what works best for your case. | ||
*/ | ||
.library-name a { | ||
position: relative; | ||
margin-left: 55px; | ||
:root { | ||
--dokka-logo-image-url: url('../images/ktor-logo.png'); | ||
--dokka-logo-height: 125px; | ||
--dokka-logo-width: 50px; | ||
} | ||
|
||
.library-name a::before { | ||
content: ''; | ||
background-image: url('../images/ktor-logo.png'); | ||
background-repeat: no-repeat; | ||
background-size: 125px 50px; | ||
position: absolute; | ||
width: 52px; | ||
height: 50px; | ||
top: -18px; | ||
left: -62px; | ||
/* link custom rules styles */ | ||
.library-name--link { | ||
/* ... */ | ||
} | ||
|
||
/* logo custom rules styles */ | ||
.library-name--link::before { | ||
background-position: left; | ||
width: 52px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 1 addition & 3 deletions
4
examples/multimodule-example/dokkatoo/buildSrc/build.gradle.kts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,8 @@ | ||
import org.gradle.kotlin.dsl.support.expectedKotlinDslPluginsVersion | ||
|
||
plugins { | ||
`kotlin-dsl` | ||
} | ||
|
||
dependencies { | ||
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.22") | ||
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.0") | ||
implementation("dev.adamko.dokkatoo:dokkatoo-plugin:2.0.0-SNAPSHOT") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
modules/dokkatoo-plugin-integration-tests/projects/it-android-0/dokkatoo/build.gradle.kts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
modules/dokkatoo-plugin-integration-tests/projects/it-basic-groovy/dokka/gradle.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
dokka_it_kotlin_version=1.8.20 | ||
dokka_it_kotlin_version=1.9.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
modules/dokkatoo-plugin-integration-tests/projects/it-basic/dokka/gradle.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
dokka_it_kotlin_version=1.8.20 | ||
dokka_it_kotlin_version=1.9.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
modules/dokkatoo-plugin-integration-tests/projects/it-collector-0/dokka/gradle.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
dokka_it_kotlin_version=1.8.20 | ||
dokka_it_kotlin_version=1.9.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
modules/dokkatoo-plugin-integration-tests/projects/it-js-ir-0/dokka/gradle.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
dokka_it_kotlin_version=1.8.20 | ||
dokka_it_kotlin_version=1.9.0 | ||
react_version=18.2.0-pre.467 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
modules/dokkatoo-plugin-integration-tests/projects/it-multimodule-0/dokka/gradle.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
dokka_it_kotlin_version=1.8.20 | ||
dokka_it_kotlin_version=1.9.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
modules/dokkatoo-plugin-integration-tests/projects/it-multimodule-1/dokka/gradle.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
dokka_it_kotlin_version=1.8.20 | ||
dokka_it_kotlin_version=1.9.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...too-plugin-integration-tests/projects/it-multimodule-versioning-0/dokka/gradle.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
dokka_it_kotlin_version=1.8.20 | ||
dokka_it_kotlin_version=1.9.0 | ||
|
Oops, something went wrong.