Skip to content

Commit

Permalink
Dynamic JVM Toolchain Resolver (#1760)
Browse files Browse the repository at this point in the history
  • Loading branch information
niyajali authored Sep 5, 2024
1 parent 2451ba5 commit 6c6c3a7
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
1 change: 0 additions & 1 deletion desktop/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ plugins {
alias(libs.plugins.jetbrainsCompose)
}


kotlin {
jvm {
withJava()
Expand Down
6 changes: 6 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ pluginManagement {
mavenCentral()
}
}

dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_PROJECT)
repositories {
Expand All @@ -15,6 +16,11 @@ dependencyResolutionManagement {
maven("https://plugins.gradle.org/m2/")
}
}

plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version("0.8.0")
}

rootProject.name = "mobile-wallet"

enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
Expand Down
1 change: 1 addition & 0 deletions shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ kotlin {
}
}
}

task("testClasses")
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
package org.mifospay.shared.di

import org.koin.core.module.Module
import org.koin.dsl.module

actual val platformModule: Module
get() = TODO("Not yet implemented")
get() = module { single {} }

0 comments on commit 6c6c3a7

Please sign in to comment.