First Commit

This commit is contained in:
Theo Tappe
2026-05-13 14:19:41 +02:00
commit 1eaa7d0896
89 changed files with 6206 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
rootProject.name = "papertrader"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
repositories {
google {
mavenContent {
includeGroupAndSubgroups("androidx")
includeGroupAndSubgroups("com.android")
includeGroupAndSubgroups("com.google")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositories {
google {
mavenContent {
includeGroupAndSubgroups("androidx")
includeGroupAndSubgroups("com.android")
includeGroupAndSubgroups("com.google")
}
}
mavenCentral()
}
}
// plugins { id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0" }
include(":composeApp")
include(":server")
include(":shared")