j2s/settings.gradle.kts

19 lines
335 B
Plaintext
Raw Permalink Normal View History

pluginManagement {
repositories {
mavenCentral();
gradlePluginPortal();
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.7.0";
}
2025-01-24 00:45:26 +00:00
rootProject.name = extra.properties["project_name"].toString();
include(":lib");
include(":common");
include(":repl");
include(":runtime");
2025-01-24 00:45:26 +00:00
include(":compilation");