Browse Source

[build] Simplify module creation in web

pull/722/head 0.4.0
Shagen Ogandzhanian 3 years ago
parent
commit
34c0d67a1d
  1. 16
      web/settings.gradle.kts

16
web/settings.gradle.kts

@ -20,12 +20,12 @@ pluginManagement {
} }
} }
include("web-core") fun module(name: String, path: String) {
include("web-widgets") include(name)
include("web-integration-core") project(name).projectDir = file(path)
include("web-integration-widgets") }
project(":web-core").projectDir = file("$rootDir/core") module(":web-core", "$rootDir/core")
project(":web-widgets").projectDir = file("$rootDir/widgets") module(":web-widgets", "$rootDir/widgets")
project(":web-integration-core").projectDir = file("$rootDir/integration-core") module(":web-integration-core", "$rootDir/integration-core")
project(":web-integration-widgets").projectDir = file("$rootDir/integration-widgets") module(":web-integration-widgets", "$rootDir/integration-widgets")

Loading…
Cancel
Save