From d496728ba0a62a898674cc9f04f22e23aab5686b Mon Sep 17 00:00:00 2001 From: Louis CAD Date: Thu, 17 Aug 2023 18:01:14 +0200 Subject: [PATCH] Update all urls to point to the new website address Resolves #691 --- README.md | 28 +++++++++---------- mkdocs.yml | 12 ++++---- .../src/main/kotlin/publishing/Publishing.kt | 4 +-- .../buildSrcLibs/internal/PluginConfig.kt | 2 +- .../core/RefreshVersionsCleanupTask.kt | 2 +- .../core/RefreshVersionsCoreSetup.kt | 2 +- .../core/RefreshVersionsTask.kt | 4 +-- .../refreshVersions/RefreshVersionsPlugin.kt | 2 +- .../DependencyNotationsWebpageUpdateTest.kt | 4 +-- .../buildSrc/src/main/kotlin/Libs.kt | 2 +- .../buildSrc/src/main/kotlin/Libs.kt | 2 +- 11 files changed, 32 insertions(+), 32 deletions(-) diff --git a/README.md b/README.md index f1e4e1118..337a7fbcc 100644 --- a/README.md +++ b/README.md @@ -6,17 +6,17 @@ ## Documentation -- [Start here](https://jmfayard.github.io/refreshVersions/) -- [Setup refreshVersions](https://jmfayard.github.io/refreshVersions/setup/) -- [Migrate your project](https://jmfayard.github.io/refreshVersions/migrate/) -- [Find Available Dependencies Updates](https://jmfayard.github.io/refreshVersions/update-dependencies/) -- [Add Dependencies](https://jmfayard.github.io/refreshVersions/add-dependencies/) -- [Explore built-in Dependencies Notations](https://jmfayard.github.io/refreshVersions/dependency-notations/) -- [Schedule the RefreshVersionsBot](https://jmfayard.github.io/refreshVersions/refreshversions-bot/) -- [Use the buildSrc](https://jmfayard.github.io/refreshVersions/gradle-buildsrcversions/) -- [Changelog](https://jmfayard.github.io/refreshVersions/CHANGELOG/) +- [Start here](https://splitties.github.io/refreshVersions/) +- [Setup refreshVersions](https://splitties.github.io/refreshVersions/setup/) +- [Migrate your project](https://splitties.github.io/refreshVersions/migrate/) +- [Find Available Dependencies Updates](https://splitties.github.io/refreshVersions/update-dependencies/) +- [Add Dependencies](https://splitties.github.io/refreshVersions/add-dependencies/) +- [Explore built-in Dependencies Notations](https://splitties.github.io/refreshVersions/dependency-notations/) +- [Schedule the RefreshVersionsBot](https://splitties.github.io/refreshVersions/refreshversions-bot/) +- [Use the buildSrc](https://splitties.github.io/refreshVersions/gradle-buildsrcversions/) +- [Changelog](https://splitties.github.io/refreshVersions/CHANGELOG/) -[**See documentation at https://jmfayard.github.io/refreshVersions**](https://jmfayard.github.io/refreshVersions/) +[**See documentation at https://splitties.github.io/refreshVersions**](https://splitties.github.io/refreshVersions/) @@ -25,7 +25,7 @@ ```kotlin // settings.gradle(.kts) plugins { - // See https://jmfayard.github.io/refreshVersions + // See https://splitties.github.io/refreshVersions id("de.fayard.refreshVersions") version "0.51.0" } @@ -34,7 +34,7 @@ refreshVersions { // Optional: configure the plugin } ``` -[Read the friendly documentation](https://jmfayard.github.io/refreshVersions/setup/) +[Read the friendly documentation](https://splitties.github.io/refreshVersions/setup/) ## Usage @@ -45,7 +45,7 @@ Make sure the project is correctly set up (see just above). The `refreshVersionsMigrate` task can help you migrate your project in a few minutes, or less. -In version 0.50.0, support for Gradle's Versions Catalogs was added ([see discussion thread here](https://github.com/jmfayard/refreshVersions/discussions/592)), so a `--mode` option is now required. +In version 0.50.0, support for Gradle's Versions Catalogs was added ([see discussion thread here](https://github.com/Splitties/refreshVersions/discussions/592)), so a `--mode` option is now required. Run it without it to see the complete list and the full description of each mode: @@ -56,7 +56,7 @@ Run it without it to see the complete list and the full description of each mode
Examples (click to expand) -If you want to use only `versions.properties` and the [built-in dependencies notations](https://jmfayard.github.io/refreshVersions/dependency-notations/), run: +If you want to use only `versions.properties` and the [built-in dependencies notations](https://splitties.github.io/refreshVersions/dependency-notations/), run: `./gradlew refreshVersionsMigrate --mode=VersionsPropertiesOnly` diff --git a/mkdocs.yml b/mkdocs.yml index 329421767..3cc4a5d3d 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -8,15 +8,15 @@ repo_url: https://github.com/jmfayard/refreshVersions site_description: "Life is too short to google for dependencies and versions" site_author: jmfayard LouisCAD remote_branch: gh-pages -edit_uri: "https://github.com/jmfayard/refreshVersions/edit/release/docs" +edit_uri: "https://github.com/Splitties/refreshVersions/edit/release/docs" extra: link: playground: https://github.com/LouisCAD/kotlin-libraries-playground - site: https://jmfayard.github.io/refreshVersions - github: https://github.com/jmfayard/refreshVersions - master: https://github.com/jmfayard/refreshVersions/blob/main - issues: https://github.com/jmfayard/refreshVersions/issues + site: https://splitties.github.io/refreshVersions + github: https://github.com/Splitties/refreshVersions + master: https://github.com/Splitties/refreshVersions/blob/main + issues: https://github.com/Splitties/refreshVersions/issues gradlePluginPortal: https://plugins.gradle.org/plugin/de.fayard.refreshVersions slack: https://app.slack.com/client/T09229ZC6/CP5659EL9 version: @@ -26,7 +26,7 @@ extra: keyboard_shortcuts: find_actions: ctrl/cmd + shift + A -copyright: 'Copyright © 2020-2022 jmfayard' +copyright: 'Copyright © 2020-2023 jmfayard - Louis CAD' theme: name: 'material' diff --git a/plugins/buildSrc/src/main/kotlin/publishing/Publishing.kt b/plugins/buildSrc/src/main/kotlin/publishing/Publishing.kt index de46e3234..6fbfa71e0 100644 --- a/plugins/buildSrc/src/main/kotlin/publishing/Publishing.kt +++ b/plugins/buildSrc/src/main/kotlin/publishing/Publishing.kt @@ -12,8 +12,8 @@ import org.gradle.kotlin.dsl.register import org.gradle.kotlin.dsl.withType object Publishing { - const val gitUrl = "https://github.com/jmfayard/refreshVersions.git" - const val siteUrl = "https://github.com/jmfayard/refreshVersions" + const val gitUrl = "https://github.com/Splitties/refreshVersions.git" + const val siteUrl = "https://github.com/Splitties/refreshVersions" const val libraryDesc = "Life is too short to Google for dependencies and versions." } diff --git a/plugins/buildSrcLibs/src/main/kotlin/de/fayard/buildSrcLibs/internal/PluginConfig.kt b/plugins/buildSrcLibs/src/main/kotlin/de/fayard/buildSrcLibs/internal/PluginConfig.kt index a45b4c646..637833a5f 100644 --- a/plugins/buildSrcLibs/src/main/kotlin/de/fayard/buildSrcLibs/internal/PluginConfig.kt +++ b/plugins/buildSrcLibs/src/main/kotlin/de/fayard/buildSrcLibs/internal/PluginConfig.kt @@ -10,7 +10,7 @@ internal object PluginConfig { /** Documentation **/ internal fun issue(number: Int): String = "$refreshVersionsUrl/issues/$number" - const val refreshVersionsUrl = "https://github.com/jmfayard/refreshVersions" + const val refreshVersionsUrl = "https://github.com/Splitties/refreshVersions" val INITIAL_GITIGNORE = """ diff --git a/plugins/core/src/main/kotlin/de/fayard/refreshVersions/core/RefreshVersionsCleanupTask.kt b/plugins/core/src/main/kotlin/de/fayard/refreshVersions/core/RefreshVersionsCleanupTask.kt index 75907cc9a..e3d622872 100644 --- a/plugins/core/src/main/kotlin/de/fayard/refreshVersions/core/RefreshVersionsCleanupTask.kt +++ b/plugins/core/src/main/kotlin/de/fayard/refreshVersions/core/RefreshVersionsCleanupTask.kt @@ -86,7 +86,7 @@ open class RefreshVersionsCleanupTask : DefaultTask() { @TaskAction fun cleanupKotlinScripts() { if (FeatureFlag.KOTLIN_SCRIPTS.isEnabled) { - println("NOTE: refreshVersionsCleanUp doesn't clean up Kotlin Scripts yet, see https://github.com/jmfayard/refreshVersions/issues/582") + println("NOTE: refreshVersionsCleanUp doesn't clean up Kotlin Scripts yet, see https://github.com/Splitties/refreshVersions/issues/582") } } } diff --git a/plugins/core/src/main/kotlin/de/fayard/refreshVersions/core/RefreshVersionsCoreSetup.kt b/plugins/core/src/main/kotlin/de/fayard/refreshVersions/core/RefreshVersionsCoreSetup.kt index 0996c25ad..0400a46d7 100644 --- a/plugins/core/src/main/kotlin/de/fayard/refreshVersions/core/RefreshVersionsCoreSetup.kt +++ b/plugins/core/src/main/kotlin/de/fayard/refreshVersions/core/RefreshVersionsCoreSetup.kt @@ -142,7 +142,7 @@ fun Nothing?.checkGradleVersionIsSupported() { throw UnsupportedVersionException( """ The plugin "de.fayard.refreshVersions" only works with Gradle $minimumGradleVersionString and above. - See https://jmfayard.github.io/refreshVersions/setup/#update-gradle-if-needed + See https://splitties.github.io/refreshVersions/setup/#update-gradle-if-needed """.trimIndent() ) } diff --git a/plugins/core/src/main/kotlin/de/fayard/refreshVersions/core/RefreshVersionsTask.kt b/plugins/core/src/main/kotlin/de/fayard/refreshVersions/core/RefreshVersionsTask.kt index e35456e88..775549093 100644 --- a/plugins/core/src/main/kotlin/de/fayard/refreshVersions/core/RefreshVersionsTask.kt +++ b/plugins/core/src/main/kotlin/de/fayard/refreshVersions/core/RefreshVersionsTask.kt @@ -140,7 +140,7 @@ open class RefreshVersionsTask : DefaultTask() { } } if (FeatureFlag.KOTLIN_SCRIPTS.isEnabled) { - println("NOTE: refreshVersions support for Kotlin Scripts isn't implemented yet, see https://github.com/jmfayard/refreshVersions/issues/582") + println("NOTE: refreshVersions support for Kotlin Scripts isn't implemented yet, see https://github.com/Splitties/refreshVersions/issues/582") } } @@ -212,7 +212,7 @@ open class RefreshVersionsTask : DefaultTask() { |To migrate your project, run | ./gradlew refreshVersionsMigrate | - |See https://jmfayard.github.io/refreshVersions/migrate/""".trimMargin() + |See https://splitties.github.io/refreshVersions/migrate/""".trimMargin() ) //TODO: Replace issue link above with stable link to explanation in documentation. } diff --git a/plugins/dependencies/src/main/kotlin/de/fayard/refreshVersions/RefreshVersionsPlugin.kt b/plugins/dependencies/src/main/kotlin/de/fayard/refreshVersions/RefreshVersionsPlugin.kt index 6e74de267..fa2278f97 100644 --- a/plugins/dependencies/src/main/kotlin/de/fayard/refreshVersions/RefreshVersionsPlugin.kt +++ b/plugins/dependencies/src/main/kotlin/de/fayard/refreshVersions/RefreshVersionsPlugin.kt @@ -73,7 +73,7 @@ open class RefreshVersionsPlugin : Plugin { } """ plugins.id("de.fayard.refreshVersions") must be configured in settings.gradle(.kts)$notInExtraClause. - See https://jmfayard.github.io/refreshVersions/setup/ + See https://splitties.github.io/refreshVersions/setup/ """.trimIndent() } bootstrap(target) diff --git a/plugins/dependencies/src/prePublishTest/kotlin/DependencyNotationsWebpageUpdateTest.kt b/plugins/dependencies/src/prePublishTest/kotlin/DependencyNotationsWebpageUpdateTest.kt index 5e2946f4f..17a4e2328 100644 --- a/plugins/dependencies/src/prePublishTest/kotlin/DependencyNotationsWebpageUpdateTest.kt +++ b/plugins/dependencies/src/prePublishTest/kotlin/DependencyNotationsWebpageUpdateTest.kt @@ -66,7 +66,7 @@ class DependencyNotationsWebpageUpdateTest { dependencies.joinToString("| - ", transform = MarkdownDependency::markdown) } """ - |## [$group.kt](https://github.com/jmfayard/refreshVersions/blob/main/plugins/dependencies/src/main/kotlin/dependencies/$group.kt) + |## [$group.kt](https://github.com/splitties/refreshVersions/blob/main/plugins/dependencies/src/main/kotlin/dependencies/$group.kt) | |${table(rows)} | @@ -90,7 +90,7 @@ class DependencyNotationsWebpageUpdateTest { |--- |# Built-in Dependency Notations | - |[**refreshVersions**](https://github.com/jmfayard/refreshVersions) provides **$dependenciesCount** Dependency Notations in **$groupsCount** groups and **$subgroupsCount** subgroups + |[**refreshVersions**](https://github.com/Splitties/refreshVersions) provides **$dependenciesCount** Dependency Notations in **$groupsCount** groups and **$subgroupsCount** subgroups | |**Built-in Dependency Notations** are maven coordinates of popular libraries, |discoverable as for example `KotlinX.coroutines.core` in IntelliJ IDEA, diff --git a/sample-groovy/buildSrc/src/main/kotlin/Libs.kt b/sample-groovy/buildSrc/src/main/kotlin/Libs.kt index 873937f5f..352ae19c6 100644 --- a/sample-groovy/buildSrc/src/main/kotlin/Libs.kt +++ b/sample-groovy/buildSrc/src/main/kotlin/Libs.kt @@ -9,7 +9,7 @@ import kotlin.String * $ ./gradlew refreshVersions * And edit the file `versions.properties` * - * See https://github.com/jmfayard/refreshVersions + * See https://github.com/splitties/refreshVersions */ object Libs { const val annotation: String = "androidx.annotation:annotation:_" diff --git a/sample-multi-modules/buildSrc/src/main/kotlin/Libs.kt b/sample-multi-modules/buildSrc/src/main/kotlin/Libs.kt index ea3482728..6a273f69e 100644 --- a/sample-multi-modules/buildSrc/src/main/kotlin/Libs.kt +++ b/sample-multi-modules/buildSrc/src/main/kotlin/Libs.kt @@ -9,7 +9,7 @@ import kotlin.String * $ ./gradlew refreshVersions * And edit the file `versions.properties` * - * See https://github.com/jmfayard/refreshVersions + * See https://github.com/Splitties/refreshVersions */ object Libs { const val clikt: String = "com.github.ajalt.clikt:clikt:_"