-
-
Notifications
You must be signed in to change notification settings - Fork 423
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- start to upgrade project to Kotlin2.x with the new compose compiler…
… plugin
- Loading branch information
Showing
11 changed files
with
92 additions
and
106 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,3 +18,4 @@ docs | |
|
||
/.bundle/ | ||
/vendor/* | ||
/.kotlin/ |
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import org.jetbrains.dokka.gradle.DokkaMultiModuleTask | ||
|
||
buildscript { | ||
apply(from = "configurations.gradle") | ||
|
||
dependencies { | ||
classpath("com.mikepenz.aboutlibraries.plugin:aboutlibraries-plugin") | ||
} | ||
} | ||
|
||
plugins { | ||
alias(libs.plugins.androidApplication) apply false | ||
alias(libs.plugins.androidLibrary) apply false | ||
alias(libs.plugins.jetbrainsCompose) apply false | ||
alias(libs.plugins.composeCompiler) apply false | ||
alias(libs.plugins.kotlinMultiplatform) apply false | ||
alias(libs.plugins.navSafeArgs) apply false | ||
alias(libs.plugins.dokka) | ||
alias(libs.plugins.mavenPublish) apply false | ||
} | ||
|
||
allprojects { | ||
group = properties["GROUP"]!! | ||
version = properties["VERSION_NAME"]!! | ||
|
||
repositories { | ||
mavenLocal() | ||
mavenCentral() | ||
google() | ||
maven { setUrl("https://androidx.dev/storage/compose-compiler/repository") } | ||
maven { setUrl("https://maven.pkg.jetbrains.space/public/p/compose/dev") } | ||
maven { setUrl("https://maven.pkg.jetbrains.space/kotlin/p/wasm/experimental") } | ||
} | ||
} | ||
|
||
tasks.withType<DokkaMultiModuleTask>().configureEach { | ||
dependsOn(gradle.includedBuild("plugin-build").task(":plugin:dokkaHtmlPartial")) | ||
addSubprojectChildTasks(":plugin-build:build:dokkaHtmlPartial") | ||
} |
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