Skip to content

Commit

Permalink
Also apply Dokka when running examples
Browse files Browse the repository at this point in the history
  • Loading branch information
Thijsiez committed Nov 8, 2024
1 parent 8491729 commit 9570403
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
15 changes: 12 additions & 3 deletions examples/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,32 @@
# limitations under the License.
#

#region Dependencies
#https://github.com/quarkusio/quarkus
# Can be upgraded freely and probably should be
quarkusVersion=3.15.1
quarkusVersion=3.16.2

#https://github.com/JetBrains/kotlin
# Needs to match Quarkus Kotlin version for compatibility
kotlinVersion=2.0.10
kotlinVersion=2.0.21

#https://github.com/google/ksp
# Latest version matching the above Kotlin version
kspVersion=2.0.10-1.0.24
kspVersion=2.0.21-1.0.27
#endregion

#region Plugins
#https://github.com/Kotlin/dokka
dokkaVersion=1.9.20

#https://github.com/Kotlin/kotlinx-kover
koverVersion=0.8.3

#https://plugins.gradle.org/plugin/org.sonarqube
sonarqubeVersion=5.1.0.4882

#https://github.com/vanniktech/gradle-maven-publish-plugin
mavenPublishVersion=0.30.0
#endregion

kotlin.code.style=official
2 changes: 2 additions & 0 deletions examples/settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ pluginManagement {
val quarkusVersion: String by settings
val kotlinVersion: String by settings
val kspVersion: String by settings
val dokkaVersion: String by settings
val koverVersion: String by settings
val sonarqubeVersion: String by settings
val mavenPublishVersion: String by settings
Expand All @@ -33,6 +34,7 @@ pluginManagement {
kotlin("plugin.allopen") version kotlinVersion
kotlin("plugin.jpa") version kotlinVersion
id("com.google.devtools.ksp") version kspVersion
id("org.jetbrains.dokka") version dokkaVersion
id("org.jetbrains.kotlinx.kover") version koverVersion
id("org.sonarqube") version sonarqubeVersion
id("com.vanniktech.maven.publish") version mavenPublishVersion
Expand Down

0 comments on commit 9570403

Please sign in to comment.