Make Dokka work
Fix deprecations
This commit is contained in:
16
build.gradle
16
build.gradle
@@ -8,7 +8,7 @@ repositories {
|
|||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
|
|
||||||
task buildMainReadme {
|
tasks.register('buildMainReadme') {
|
||||||
doFirst {
|
doFirst {
|
||||||
def subProjects = project.subprojects
|
def subProjects = project.subprojects
|
||||||
//.findAll { !it.name.contains("kinect-common") && !it.name.contains
|
//.findAll { !it.name.contains("kinect-common") && !it.name.contains
|
||||||
@@ -37,7 +37,7 @@ task buildMainReadme {
|
|||||||
// Skip the hash character from the headline, then start
|
// Skip the hash character from the headline, then start
|
||||||
// on the next line and continue until the next empty line.
|
// on the next line and continue until the next empty line.
|
||||||
// Don't fall into Windows line breaks.
|
// Don't fall into Windows line breaks.
|
||||||
def descriptionRx = ~/(?s)\#.*?\n(.+?)\n\r?\n/
|
def descriptionRx = ~/(?s)#.*?\n(.+?)\n\r?\n/
|
||||||
// Note: the readme needs an empty line after the description
|
// Note: the readme needs an empty line after the description
|
||||||
|
|
||||||
def orxMultiplatform = []
|
def orxMultiplatform = []
|
||||||
@@ -93,8 +93,8 @@ group = "org.openrndr.extra"
|
|||||||
nexusPublishing {
|
nexusPublishing {
|
||||||
repositories {
|
repositories {
|
||||||
sonatype {
|
sonatype {
|
||||||
username.set(findProperty("ossrhUsername") ?: System.getenv("OSSRH_USERNAME"))
|
username.set(findProperty("ossrhUsername")?.toString() ?: System.getenv("OSSRH_USERNAME"))
|
||||||
password.set(findProperty("ossrhPassword") ?: System.getenv("OSSRH_PASSWORD"))
|
password.set(findProperty("ossrhPassword")?.toString() ?: System.getenv("OSSRH_PASSWORD"))
|
||||||
nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/"))
|
nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/"))
|
||||||
snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots"))
|
snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots"))
|
||||||
}
|
}
|
||||||
@@ -109,6 +109,14 @@ subprojects {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
subprojects.findAll {
|
||||||
|
it.name.startsWith("orx-")
|
||||||
|
}.each { subproject ->
|
||||||
|
dokka(project(subproject.path))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
gradle.buildFinished {
|
gradle.buildFinished {
|
||||||
println("\n")
|
println("\n")
|
||||||
println("orx = \"${version}\"")
|
println("orx = \"${version}\"")
|
||||||
|
|||||||
@@ -1,8 +1,5 @@
|
|||||||
package org.openrndr.extra.convention
|
package org.openrndr.extra.convention
|
||||||
|
|
||||||
import org.jetbrains.dokka.gradle.DokkaTaskPartial
|
|
||||||
import java.net.URL
|
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id("org.jetbrains.dokka")
|
id("org.jetbrains.dokka")
|
||||||
}
|
}
|
||||||
@@ -11,27 +8,31 @@ repositories {
|
|||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.withType<DokkaTaskPartial>() {
|
dokka {
|
||||||
dokkaSourceSets {
|
pluginsConfiguration.html {
|
||||||
configureEach {
|
customStyleSheets.from(rootProject.file("dokka/styles/extra.css"))
|
||||||
skipDeprecated.set(true)
|
customAssets.from(rootProject.file("dokka/images/logo-icon.svg"))
|
||||||
val sourcesDirectory = try {
|
}
|
||||||
file("src/$name/kotlin", PathValidation.EXISTS)
|
dokkaSourceSets.configureEach {
|
||||||
} catch (_: InvalidUserDataException) {
|
skipDeprecated.set(false)
|
||||||
return@configureEach
|
|
||||||
}
|
val sourcesDirectory = try {
|
||||||
// Specifies the location of the project source code on the Web.
|
file("src/$name/kotlin", PathValidation.EXISTS)
|
||||||
// If provided, Dokka generates "source" links for each declaration.
|
} catch (_: InvalidUserDataException) {
|
||||||
sourceLink {
|
return@configureEach
|
||||||
// Unix based directory relative path to the root of the project (where you execute gradle respectively).
|
}
|
||||||
localDirectory.set(sourcesDirectory)
|
|
||||||
// URL showing where the source code can be accessed through the web browser
|
// Specifies the location of the project source code on the Web.
|
||||||
remoteUrl.set(
|
// If provided, Dokka generates "source" links for each declaration.
|
||||||
URL("https://github.com/openrndr/orx/blob/master/${moduleName.get()}/src/$name/kotlin")
|
sourceLink {
|
||||||
)
|
// Unix based directory relative path to the root of the project (where you execute gradle respectively).
|
||||||
// Suffix which is used to append the line number to the URL. Use #L for GitHub
|
localDirectory = sourcesDirectory
|
||||||
remoteLineSuffix.set("#L")
|
|
||||||
}
|
// URL showing where the source code can be accessed through the web browser
|
||||||
|
remoteUrl("https://github.com/openrndr/orx/blob/master/${moduleName.get()}/src/$name/kotlin")
|
||||||
|
|
||||||
|
// Suffix which is used to append the line number to the URL. Use #L for GitHub
|
||||||
|
remoteLineSuffix.set("#L")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -116,7 +116,7 @@ val isReleaseVersion = !(version.toString()).endsWith("SNAPSHOT")
|
|||||||
if (shouldPublish) {
|
if (shouldPublish) {
|
||||||
publishing {
|
publishing {
|
||||||
publications {
|
publications {
|
||||||
val fjdj = tasks.create("fakeJavaDocJar", Jar::class) {
|
val fjdj = tasks.register("fakeJavaDocJar", Jar::class) {
|
||||||
archiveClassifier.set("javadoc")
|
archiveClassifier.set("javadoc")
|
||||||
}
|
}
|
||||||
named("js") {
|
named("js") {
|
||||||
@@ -190,4 +190,4 @@ kotlin {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.withType<JavaExec>().matching { it.name == "jvmRun" }.configureEach { workingDir = rootDir }
|
tasks.withType<JavaExec>().matching { it.name == "jvmRun" }.configureEach { workingDir = rootDir }
|
||||||
|
|||||||
2
dokka/images/logo-icon.svg
Normal file
2
dokka/images/logo-icon.svg
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg width="48" height="48" version="1.2" viewBox="0 0 12.7 12.7" xmlns="http://www.w3.org/2000/svg"><rect width="12.7" height="12.7" fill="#ffc0cb" stroke-width="1.027"/><g stop-color="#000000" stroke-width=".6"><path d="m4.135 8.32-0.333-1.123h-1.383l-0.333 1.123h-0.4911l1.208-3.94h0.6265l1.208 3.94zm-0.9991-3.437h-0.0508l-0.5532 1.902h1.157z"/><path d="m5.314 8.32v-3.94h1.434q0.5475 0 0.8354 0.2992 0.2879 0.2992 0.2879 0.8354t-0.2879 0.8354q-0.2879 0.2992-0.8354 0.2992h-0.9596v1.671zm0.4741-2.083h0.9483q0.2992 0 0.4628-0.1468 0.1693-0.1524 0.1693-0.429v-0.2935q0-0.2766-0.1693-0.4233-0.1637-0.1524-0.4628-0.1524h-0.9483z"/><path d="m8.667 8.32v-0.3782h0.9821v-3.183h-0.9821v-0.3782h2.438v0.3782h-0.9821v3.183h0.9821v0.3782z"/></g></svg>
|
||||||
|
After Width: | Height: | Size: 785 B |
4
dokka/styles/extra.css
Normal file
4
dokka/styles/extra.css
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
|
||||||
|
.library-name--link { text-transform: uppercase; }
|
||||||
|
.library-version { top: 0px; margin-left: 10px; }
|
||||||
|
|
||||||
@@ -1,6 +1,7 @@
|
|||||||
# suppress inspection "UnusedProperty" for whole file
|
# suppress inspection "UnusedProperty" for whole file
|
||||||
|
|
||||||
kotlin.code.style=official
|
kotlin.code.style=official
|
||||||
|
|
||||||
# For optimal compilation performance
|
# For optimal compilation performance
|
||||||
org.gradle.jvmargs=-Xmx2G -XX:+UseParallelGC
|
org.gradle.jvmargs=-Xmx2G -XX:+UseParallelGC
|
||||||
kotlin.incremental.multiplatform=true
|
kotlin.incremental.multiplatform=true
|
||||||
@@ -8,7 +9,15 @@ kotlin.incremental.multiplatform=true
|
|||||||
kotlin.jvm.target.validation.mode=error
|
kotlin.jvm.target.validation.mode=error
|
||||||
org.gradle.parallel=true
|
org.gradle.parallel=true
|
||||||
org.gradle.caching=true
|
org.gradle.caching=true
|
||||||
|
|
||||||
|
#org.gradle.configuration-cache=true
|
||||||
|
#org.gradle.configuration-cache.parallel=true
|
||||||
|
#org.gradle.configuration-cache.problems=warn
|
||||||
|
|
||||||
# Whether to automatically bundle the Kotlin standard library (true by default)
|
# Whether to automatically bundle the Kotlin standard library (true by default)
|
||||||
# https://kotlinlang.org/docs/gradle.html#dependency-on-the-standard-library
|
# https://kotlinlang.org/docs/gradle.html#dependency-on-the-standard-library
|
||||||
kotlin.stdlib.default.dependency=true
|
kotlin.stdlib.default.dependency=true
|
||||||
kotlin.mpp.import.legacyTestSourceSetDetection=true
|
kotlin.mpp.import.legacyTestSourceSetDetection=true
|
||||||
|
|
||||||
|
# Enable Dokka 2.0.0
|
||||||
|
org.jetbrains.dokka.experimental.gradle.pluginMode=V2Enabled
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ kotlinxCoroutines = "1.10.2"
|
|||||||
kotlinLogging = "7.0.7"
|
kotlinLogging = "7.0.7"
|
||||||
kotlinxSerialization = "1.9.0"
|
kotlinxSerialization = "1.9.0"
|
||||||
kotest = "5.9.1"
|
kotest = "5.9.1"
|
||||||
dokka = "1.7.10"
|
dokka = "2.0.0"
|
||||||
nebulaRelease = "18.0.7"
|
nebulaRelease = "18.0.7"
|
||||||
gradleNexusPublish = "2.0.0"
|
gradleNexusPublish = "2.0.0"
|
||||||
boofcv = "1.2.3"
|
boofcv = "1.2.3"
|
||||||
|
|||||||
@@ -50,10 +50,7 @@ kotlin {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.withType<KotlinCompilationTask<*>> {
|
tasks.withType<KotlinCompilationTask<*>> { dependsOn(generateKotlinGrammarSource) }
|
||||||
dependsOn(generateKotlinGrammarSource)
|
tasks.withType<org.gradle.jvm.tasks.Jar> { dependsOn(generateKotlinGrammarSource) }
|
||||||
}
|
tasks.named("dokkaGeneratePublicationHtml") { dependsOn(generateKotlinGrammarSource) }
|
||||||
|
tasks.named("dokkaGenerateModuleHtml") { dependsOn(generateKotlinGrammarSource) }
|
||||||
tasks.withType<org.gradle.jvm.tasks.Jar> {
|
|
||||||
dependsOn(generateKotlinGrammarSource)
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -23,3 +23,5 @@ dependencies {
|
|||||||
|
|
||||||
tasks.getByName("compileKotlin").dependsOn("generateGrammarSource")
|
tasks.getByName("compileKotlin").dependsOn("generateGrammarSource")
|
||||||
tasks.getByName("sourcesJar").dependsOn("generateGrammarSource")
|
tasks.getByName("sourcesJar").dependsOn("generateGrammarSource")
|
||||||
|
tasks.named("dokkaGeneratePublicationHtml") { dependsOn("generateGrammarSource") }
|
||||||
|
tasks.named("dokkaGenerateModuleHtml") { dependsOn("generateGrammarSource") }
|
||||||
|
|||||||
@@ -72,7 +72,6 @@ include(
|
|||||||
"orx-shade-styles",
|
"orx-shade-styles",
|
||||||
"orx-shapes",
|
"orx-shapes",
|
||||||
"orx-svg",
|
"orx-svg",
|
||||||
|
|
||||||
"orx-jvm:orx-syphon",
|
"orx-jvm:orx-syphon",
|
||||||
"orx-temporal-blur",
|
"orx-temporal-blur",
|
||||||
"orx-timer",
|
"orx-timer",
|
||||||
|
|||||||
Reference in New Issue
Block a user