mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 06:28:28 +08:00
Put all shared build logic in precompiled gradle conventions plugins.
This commit is contained in:
parent
51ae313df2
commit
89b88a0a2d
@ -1,45 +1,3 @@
|
|||||||
import org.jetbrains.kotlin.gradle.tasks.Kotlin2JsCompile
|
|
||||||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
||||||
|
|
||||||
plugins {
|
|
||||||
kotlin("js") version "1.5.21" apply false
|
|
||||||
kotlin("multiplatform") version "1.5.21" apply false
|
|
||||||
kotlin("plugin.serialization") version "1.5.21" apply false
|
|
||||||
}
|
|
||||||
|
|
||||||
tasks.wrapper {
|
tasks.wrapper {
|
||||||
gradleVersion = "7.1.1"
|
gradleVersion = "7.1.1"
|
||||||
}
|
}
|
||||||
|
|
||||||
subprojects {
|
|
||||||
project.extra["coroutinesVersion"] = "1.5.1"
|
|
||||||
project.extra["junitVersion"] = "5.7.1"
|
|
||||||
project.extra["kotlinLoggingVersion"] = "2.0.6"
|
|
||||||
project.extra["ktorVersion"] = "1.6.1"
|
|
||||||
project.extra["log4jVersion"] = "2.14.1"
|
|
||||||
project.extra["serializationVersion"] = "1.2.2"
|
|
||||||
project.extra["slf4jVersion"] = "1.7.30"
|
|
||||||
|
|
||||||
repositories {
|
|
||||||
mavenCentral()
|
|
||||||
maven(url = "https://kotlin.bintray.com/kotlinx/")
|
|
||||||
}
|
|
||||||
|
|
||||||
tasks.withType<KotlinCompile> {
|
|
||||||
kotlinOptions {
|
|
||||||
jvmTarget = "11"
|
|
||||||
freeCompilerArgs += listOf(
|
|
||||||
"-Xjvm-default=all"
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
tasks.withType<Kotlin2JsCompile> {
|
|
||||||
kotlinOptions.freeCompilerArgs += listOf(
|
|
||||||
"-Xopt-in=kotlin.RequiresOptIn",
|
|
||||||
"-Xopt-in=kotlin.ExperimentalUnsignedTypes",
|
|
||||||
"-Xopt-in=kotlin.contracts.ExperimentalContracts",
|
|
||||||
"-Xopt-in=kotlin.time.ExperimentalTime"
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -1,17 +1,12 @@
|
|||||||
plugins {
|
plugins {
|
||||||
kotlin("jvm") version "1.5.21"
|
`kotlin-dsl`
|
||||||
`java-gradle-plugin`
|
|
||||||
}
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
gradlePluginPortal()
|
||||||
}
|
}
|
||||||
|
|
||||||
gradlePlugin {
|
dependencies {
|
||||||
plugins {
|
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.21")
|
||||||
create("pwPlugins") {
|
implementation("org.jetbrains.kotlin:kotlin-serialization:1.5.21")
|
||||||
id = "world.phantasmal.gradle.js"
|
|
||||||
implementationClass = "world.phantasmal.gradle.PwJsPlugin"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
11
buildSrc/src/main/kotlin/world/phantasmal/OptIns.kt
Normal file
11
buildSrc/src/main/kotlin/world/phantasmal/OptIns.kt
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
package world.phantasmal
|
||||||
|
|
||||||
|
val EXPERIMENTAL_ANNOTATIONS: List<String> = listOf(
|
||||||
|
"kotlin.RequiresOptIn",
|
||||||
|
"kotlin.ExperimentalUnsignedTypes",
|
||||||
|
"kotlin.contracts.ExperimentalContracts",
|
||||||
|
"kotlin.time.ExperimentalTime",
|
||||||
|
)
|
||||||
|
|
||||||
|
val EXPERIMENTAL_ANNOTATION_COMPILER_ARGS: List<String> =
|
||||||
|
EXPERIMENTAL_ANNOTATIONS.map { "-Xopt-in=$it" }
|
16
buildSrc/src/main/kotlin/world/phantasmal/common.gradle.kts
Normal file
16
buildSrc/src/main/kotlin/world/phantasmal/common.gradle.kts
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
package world.phantasmal
|
||||||
|
|
||||||
|
plugins {
|
||||||
|
kotlin("plugin.serialization") apply false
|
||||||
|
}
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
}
|
||||||
|
|
||||||
|
project.extra["coroutinesVersion"] = "1.5.1"
|
||||||
|
project.extra["junitVersion"] = "5.7.1"
|
||||||
|
project.extra["kotlinLoggingVersion"] = "2.0.6"
|
||||||
|
project.extra["ktorVersion"] = "1.6.1"
|
||||||
|
project.extra["log4jVersion"] = "2.14.1"
|
||||||
|
project.extra["serializationVersion"] = "1.2.2"
|
@ -1,28 +0,0 @@
|
|||||||
package world.phantasmal.gradle
|
|
||||||
|
|
||||||
import org.gradle.api.DefaultTask
|
|
||||||
import org.gradle.api.tasks.TaskAction
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This task generates a Karma configuration in karma.config.d that ensures Karma serves files from
|
|
||||||
* the resources directories.
|
|
||||||
*/
|
|
||||||
open class KarmaResourcesTask : DefaultTask() {
|
|
||||||
private val outputFile = project.file("karma.config.d/karma.config.generated.js")
|
|
||||||
|
|
||||||
init {
|
|
||||||
outputs.file(outputFile)
|
|
||||||
}
|
|
||||||
|
|
||||||
@TaskAction
|
|
||||||
fun generateKarmaConfig() {
|
|
||||||
outputFile.outputStream().use { stream ->
|
|
||||||
val writer = stream.writer()
|
|
||||||
val path = project.projectDir.absolutePath.replace("\\", "\\\\")
|
|
||||||
writer.write("const PROJECT_PATH = '$path';\n\n")
|
|
||||||
writer.flush()
|
|
||||||
|
|
||||||
KarmaResourcesTask::class.java.getResourceAsStream("/karmaConfig.js").copyTo(stream)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,20 +0,0 @@
|
|||||||
package world.phantasmal.gradle
|
|
||||||
|
|
||||||
import org.gradle.api.Plugin
|
|
||||||
import org.gradle.api.Project
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This plugin adds a karmaResources task as dependency to the browserTest and jsBrowserTest tasks
|
|
||||||
* as a workaround for https://youtrack.jetbrains.com/issue/KT-42923.
|
|
||||||
*/
|
|
||||||
class PwJsPlugin : Plugin<Project> {
|
|
||||||
override fun apply(target: Project) {
|
|
||||||
val karmaResources = target.tasks.create("karmaResources", KarmaResourcesTask::class.java)
|
|
||||||
|
|
||||||
target.tasks.configureEach { task ->
|
|
||||||
if (task.name == "browserTest" || task.name == "jsBrowserTest") {
|
|
||||||
task.dependsOn(karmaResources)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
28
buildSrc/src/main/kotlin/world/phantasmal/js.gradle.kts
Normal file
28
buildSrc/src/main/kotlin/world/phantasmal/js.gradle.kts
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
package world.phantasmal
|
||||||
|
|
||||||
|
plugins {
|
||||||
|
kotlin("js")
|
||||||
|
id("world.phantasmal.common")
|
||||||
|
id("world.phantasmal.karma-resources")
|
||||||
|
}
|
||||||
|
|
||||||
|
kotlin {
|
||||||
|
js {
|
||||||
|
compilations.all {
|
||||||
|
kotlinOptions {
|
||||||
|
freeCompilerArgs = freeCompilerArgs + EXPERIMENTAL_ANNOTATION_COMPILER_ARGS
|
||||||
|
}
|
||||||
|
}
|
||||||
|
browser {
|
||||||
|
testTask {
|
||||||
|
useKarma {
|
||||||
|
useChromeHeadless()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
testImplementation(kotlin("test-js"))
|
||||||
|
}
|
29
buildSrc/src/main/kotlin/world/phantasmal/jvm.gradle.kts
Normal file
29
buildSrc/src/main/kotlin/world/phantasmal/jvm.gradle.kts
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
package world.phantasmal
|
||||||
|
|
||||||
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||||
|
|
||||||
|
plugins {
|
||||||
|
kotlin("jvm")
|
||||||
|
id("world.phantasmal.common")
|
||||||
|
}
|
||||||
|
|
||||||
|
val junitVersion: String by project.extra
|
||||||
|
val log4jVersion: String by project.extra
|
||||||
|
|
||||||
|
tasks.withType<KotlinCompile>().configureEach {
|
||||||
|
kotlinOptions {
|
||||||
|
jvmTarget = "11"
|
||||||
|
freeCompilerArgs = freeCompilerArgs + EXPERIMENTAL_ANNOTATION_COMPILER_ARGS
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
runtimeOnly("org.apache.logging.log4j:log4j-slf4j-impl:$log4jVersion")
|
||||||
|
|
||||||
|
testImplementation(kotlin("test-junit5"))
|
||||||
|
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:$junitVersion")
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.withType<Test>().configureEach {
|
||||||
|
useJUnitPlatform()
|
||||||
|
}
|
@ -0,0 +1,28 @@
|
|||||||
|
package world.phantasmal
|
||||||
|
|
||||||
|
// This task generates a Karma configuration in karma.config.d that ensures Karma serves files from
|
||||||
|
// the resources directories.
|
||||||
|
// This is a workaround for https://youtrack.jetbrains.com/issue/KT-42923.
|
||||||
|
val karmaResourcesTask = tasks.register("karmaResources") {
|
||||||
|
doLast {
|
||||||
|
val karmaConfigDir = file("karma.config.d")
|
||||||
|
karmaConfigDir.mkdir()
|
||||||
|
|
||||||
|
object {}::class.java.getResourceAsStream("karmaConfig.js")!!.use { karmaConfigStream ->
|
||||||
|
karmaConfigDir.resolve("karma.config.generated.js").outputStream().use { stream ->
|
||||||
|
val writer = stream.writer()
|
||||||
|
val path = project.projectDir.absolutePath.replace("\\", "\\\\")
|
||||||
|
writer.write("const PROJECT_PATH = '$path';\n\n")
|
||||||
|
writer.flush()
|
||||||
|
|
||||||
|
karmaConfigStream.copyTo(stream)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.configureEach {
|
||||||
|
if (name == "browserTest" || name == "jsBrowserTest") {
|
||||||
|
dependsOn(karmaResourcesTask)
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,75 @@
|
|||||||
|
package world.phantasmal
|
||||||
|
|
||||||
|
plugins {
|
||||||
|
kotlin("multiplatform")
|
||||||
|
id("world.phantasmal.common")
|
||||||
|
id("world.phantasmal.karma-resources")
|
||||||
|
}
|
||||||
|
|
||||||
|
val coroutinesVersion: String by project.ext
|
||||||
|
val junitVersion: String by project.extra
|
||||||
|
val kotlinLoggingVersion: String by project.extra
|
||||||
|
val log4jVersion: String by project.extra
|
||||||
|
|
||||||
|
kotlin {
|
||||||
|
js {
|
||||||
|
browser {
|
||||||
|
testTask {
|
||||||
|
useKarma {
|
||||||
|
useChromeHeadless()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
jvm {
|
||||||
|
compilations.all {
|
||||||
|
kotlinOptions {
|
||||||
|
jvmTarget = "11"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
sourceSets {
|
||||||
|
all {
|
||||||
|
EXPERIMENTAL_ANNOTATIONS.forEach(languageSettings::useExperimentalAnnotation)
|
||||||
|
}
|
||||||
|
|
||||||
|
commonMain {
|
||||||
|
dependencies {
|
||||||
|
api("org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion")
|
||||||
|
api("io.github.microutils:kotlin-logging:$kotlinLoggingVersion")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
commonTest {
|
||||||
|
dependencies {
|
||||||
|
implementation(kotlin("test-common"))
|
||||||
|
implementation(kotlin("test-annotations-common"))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
getByName("jsTest") {
|
||||||
|
dependencies {
|
||||||
|
implementation(kotlin("test-js"))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
getByName("jvmMain") {
|
||||||
|
dependencies {
|
||||||
|
runtimeOnly("org.apache.logging.log4j:log4j-slf4j-impl:$log4jVersion")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
getByName("jvmTest") {
|
||||||
|
dependencies {
|
||||||
|
implementation(kotlin("test-junit5"))
|
||||||
|
runtimeOnly("org.junit.jupiter:junit-jupiter-engine:$junitVersion")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.withType<Test>().configureEach {
|
||||||
|
useJUnitPlatform()
|
||||||
|
}
|
@ -1,52 +1,3 @@
|
|||||||
plugins {
|
plugins {
|
||||||
kotlin("multiplatform")
|
id("world.phantasmal.multiplatform")
|
||||||
}
|
|
||||||
|
|
||||||
val coroutinesVersion: String by project.ext
|
|
||||||
val junitVersion: String by project.extra
|
|
||||||
val kotlinLoggingVersion: String by project.extra
|
|
||||||
|
|
||||||
tasks.withType<Test> {
|
|
||||||
useJUnitPlatform()
|
|
||||||
}
|
|
||||||
|
|
||||||
kotlin {
|
|
||||||
js {
|
|
||||||
browser {}
|
|
||||||
}
|
|
||||||
|
|
||||||
jvm()
|
|
||||||
|
|
||||||
sourceSets {
|
|
||||||
all {
|
|
||||||
languageSettings.useExperimentalAnnotation("kotlin.ExperimentalUnsignedTypes")
|
|
||||||
}
|
|
||||||
|
|
||||||
commonMain {
|
|
||||||
dependencies {
|
|
||||||
api("org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion")
|
|
||||||
api("io.github.microutils:kotlin-logging:$kotlinLoggingVersion")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
commonTest {
|
|
||||||
dependencies {
|
|
||||||
implementation(kotlin("test-common"))
|
|
||||||
implementation(kotlin("test-annotations-common"))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
getByName("jsTest") {
|
|
||||||
dependencies {
|
|
||||||
implementation(kotlin("test-js"))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
getByName("jvmTest") {
|
|
||||||
dependencies {
|
|
||||||
implementation(kotlin("test-junit5"))
|
|
||||||
runtimeOnly("org.junit.jupiter:junit-jupiter-engine:$junitVersion")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -4,9 +4,8 @@ import org.snakeyaml.engine.v2.api.LoadSettings
|
|||||||
import java.io.PrintWriter
|
import java.io.PrintWriter
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
kotlin("multiplatform")
|
id("world.phantasmal.multiplatform")
|
||||||
kotlin("plugin.serialization")
|
kotlin("plugin.serialization")
|
||||||
id("world.phantasmal.gradle.js")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
@ -15,67 +14,23 @@ buildscript {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
val coroutinesVersion: String by project.extra
|
|
||||||
val junitVersion: String by project.extra
|
|
||||||
val kotlinLoggingVersion: String by project.extra
|
|
||||||
val serializationVersion: String by project.extra
|
val serializationVersion: String by project.extra
|
||||||
val slf4jVersion: String by project.extra
|
|
||||||
|
|
||||||
tasks.withType<Test> {
|
|
||||||
useJUnitPlatform()
|
|
||||||
}
|
|
||||||
|
|
||||||
kotlin {
|
kotlin {
|
||||||
js {
|
|
||||||
browser {
|
|
||||||
testTask {
|
|
||||||
useKarma {
|
|
||||||
useChromeHeadless()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
jvm()
|
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
all {
|
|
||||||
languageSettings.useExperimentalAnnotation("kotlin.RequiresOptIn")
|
|
||||||
languageSettings.useExperimentalAnnotation("kotlin.ExperimentalUnsignedTypes")
|
|
||||||
languageSettings.useExperimentalAnnotation("kotlin.time.ExperimentalTime")
|
|
||||||
}
|
|
||||||
|
|
||||||
commonMain {
|
commonMain {
|
||||||
kotlin.setSrcDirs(kotlin.srcDirs + file("build/generated-src/commonMain/kotlin"))
|
kotlin.setSrcDirs(kotlin.srcDirs + file("build/generated-src/commonMain/kotlin"))
|
||||||
dependencies {
|
dependencies {
|
||||||
api(project(":core"))
|
api(project(":core"))
|
||||||
api("org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion")
|
|
||||||
api("io.github.microutils:kotlin-logging:$kotlinLoggingVersion")
|
|
||||||
api("org.jetbrains.kotlinx:kotlinx-serialization-core:$serializationVersion")
|
api("org.jetbrains.kotlinx:kotlinx-serialization-core:$serializationVersion")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
commonTest {
|
commonTest {
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation(kotlin("test-common"))
|
|
||||||
implementation(kotlin("test-annotations-common"))
|
|
||||||
implementation(project(":test-utils"))
|
implementation(project(":test-utils"))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
getByName("jsTest") {
|
|
||||||
dependencies {
|
|
||||||
implementation(kotlin("test-js"))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
getByName("jvmTest") {
|
|
||||||
dependencies {
|
|
||||||
implementation(kotlin("test-junit5"))
|
|
||||||
implementation("org.slf4j:slf4j-simple:$slf4jVersion")
|
|
||||||
runtimeOnly("org.junit.jupiter:junit-jupiter-engine:$junitVersion")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -209,6 +164,8 @@ fun paramsToCode(params: List<Map<String, Any>>, indent: Int): String {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.withType<AbstractKotlinCompile<*>> {
|
// The following line results in warning "The AbstractCompile.destinationDir property has been
|
||||||
|
// deprecated.".
|
||||||
|
tasks.withType<AbstractKotlinCompile<*>>().configureEach {
|
||||||
dependsOn(generateOpcodes)
|
dependsOn(generateOpcodes)
|
||||||
}
|
}
|
||||||
|
@ -1,25 +1,9 @@
|
|||||||
plugins {
|
plugins {
|
||||||
kotlin("multiplatform")
|
id("world.phantasmal.multiplatform")
|
||||||
}
|
|
||||||
|
|
||||||
val junitVersion: String by project.extra
|
|
||||||
|
|
||||||
tasks.withType<Test> {
|
|
||||||
useJUnitPlatform()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
kotlin {
|
kotlin {
|
||||||
js {
|
|
||||||
browser {}
|
|
||||||
}
|
|
||||||
|
|
||||||
jvm()
|
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
all {
|
|
||||||
languageSettings.useExperimentalAnnotation("kotlin.contracts.ExperimentalContracts")
|
|
||||||
}
|
|
||||||
|
|
||||||
commonMain {
|
commonMain {
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation(project(":core"))
|
implementation(project(":core"))
|
||||||
@ -28,23 +12,8 @@ kotlin {
|
|||||||
|
|
||||||
commonTest {
|
commonTest {
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation(kotlin("test-common"))
|
|
||||||
implementation(kotlin("test-annotations-common"))
|
|
||||||
implementation(project(":test-utils"))
|
implementation(project(":test-utils"))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
getByName("jsTest") {
|
|
||||||
dependencies {
|
|
||||||
implementation(kotlin("test-js"))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
getByName("jvmTest") {
|
|
||||||
dependencies {
|
|
||||||
implementation(kotlin("test-junit5"))
|
|
||||||
runtimeOnly("org.junit.jupiter:junit-jupiter-engine:$junitVersion")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -9,5 +9,5 @@ include(
|
|||||||
":web:assembly-worker",
|
":web:assembly-worker",
|
||||||
":web:assets-generation",
|
":web:assets-generation",
|
||||||
":web:shared",
|
":web:shared",
|
||||||
":webui"
|
":webui",
|
||||||
)
|
)
|
||||||
|
@ -1,23 +1,14 @@
|
|||||||
plugins {
|
plugins {
|
||||||
kotlin("multiplatform")
|
id("world.phantasmal.multiplatform")
|
||||||
}
|
}
|
||||||
|
|
||||||
val coroutinesVersion: String by project.ext
|
|
||||||
|
|
||||||
kotlin {
|
kotlin {
|
||||||
js {
|
|
||||||
browser {}
|
|
||||||
}
|
|
||||||
|
|
||||||
jvm()
|
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
commonMain {
|
commonMain {
|
||||||
dependencies {
|
dependencies {
|
||||||
api(project(":core"))
|
api(project(":core"))
|
||||||
api(kotlin("test-common"))
|
api(kotlin("test-common"))
|
||||||
api(kotlin("test-annotations-common"))
|
api(kotlin("test-annotations-common"))
|
||||||
api("org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion")
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,26 +1,15 @@
|
|||||||
plugins {
|
plugins {
|
||||||
kotlin("js")
|
id("world.phantasmal.js")
|
||||||
}
|
}
|
||||||
|
|
||||||
kotlin {
|
kotlin {
|
||||||
js {
|
js {
|
||||||
browser {
|
|
||||||
testTask {
|
|
||||||
useKarma {
|
|
||||||
useChromeHeadless()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
binaries.executable()
|
binaries.executable()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
val kotlinLoggingVersion: String by project.extra
|
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api(project(":web:shared"))
|
api(project(":web:shared"))
|
||||||
implementation("io.github.microutils:kotlin-logging-js:$kotlinLoggingVersion")
|
|
||||||
|
|
||||||
testImplementation(kotlin("test-js"))
|
|
||||||
testImplementation(project(":test-utils"))
|
testImplementation(project(":test-utils"))
|
||||||
}
|
}
|
||||||
|
@ -1,16 +1,11 @@
|
|||||||
plugins {
|
plugins {
|
||||||
kotlin("jvm")
|
id("world.phantasmal.jvm")
|
||||||
}
|
}
|
||||||
|
|
||||||
val kotlinLoggingVersion: String by project.extra
|
|
||||||
val log4jVersion: String by project.extra
|
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation(project(":lib"))
|
implementation(project(":lib"))
|
||||||
implementation(project(":web:shared"))
|
implementation(project(":web:shared"))
|
||||||
implementation("org.jsoup:jsoup:1.13.1")
|
implementation("org.jsoup:jsoup:1.13.1")
|
||||||
implementation("io.github.microutils:kotlin-logging:$kotlinLoggingVersion")
|
|
||||||
runtimeOnly("org.apache.logging.log4j:log4j-slf4j-impl:$log4jVersion")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.register<JavaExec>("generateAssets") {
|
tasks.register<JavaExec>("generateAssets") {
|
||||||
@ -18,6 +13,6 @@ tasks.register<JavaExec>("generateAssets") {
|
|||||||
outputs.dir(outputFile)
|
outputs.dir(outputFile)
|
||||||
|
|
||||||
classpath = sourceSets.main.get().runtimeClasspath
|
classpath = sourceSets.main.get().runtimeClasspath
|
||||||
main = "world.phantasmal.web.assetsGeneration.MainKt"
|
mainClass.set("world.phantasmal.web.assetsGeneration.MainKt")
|
||||||
args = listOf(outputFile.absolutePath)
|
args = listOf(outputFile.absolutePath)
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
plugins {
|
plugins {
|
||||||
kotlin("js")
|
id("world.phantasmal.js")
|
||||||
kotlin("plugin.serialization")
|
kotlin("plugin.serialization")
|
||||||
id("world.phantasmal.gradle.js")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
kotlin {
|
kotlin {
|
||||||
@ -13,20 +12,14 @@ kotlin {
|
|||||||
runTask {
|
runTask {
|
||||||
devServer = devServer!!.copy(
|
devServer = devServer!!.copy(
|
||||||
open = false,
|
open = false,
|
||||||
port = 1623
|
port = 1623,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
testTask {
|
|
||||||
useKarma {
|
|
||||||
useChromeHeadless()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
binaries.executable()
|
binaries.executable()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
val kotlinLoggingVersion: String by project.extra
|
|
||||||
val ktorVersion: String by project.extra
|
val ktorVersion: String by project.extra
|
||||||
val serializationVersion: String by project.extra
|
val serializationVersion: String by project.extra
|
||||||
|
|
||||||
@ -35,13 +28,13 @@ dependencies {
|
|||||||
implementation(project(":webui"))
|
implementation(project(":webui"))
|
||||||
implementation(project(":web:shared"))
|
implementation(project(":web:shared"))
|
||||||
|
|
||||||
implementation("io.github.microutils:kotlin-logging-js:$kotlinLoggingVersion")
|
|
||||||
implementation("io.ktor:ktor-client-core-js:$ktorVersion")
|
implementation("io.ktor:ktor-client-core-js:$ktorVersion")
|
||||||
implementation("io.ktor:ktor-client-serialization-js:$ktorVersion")
|
implementation("io.ktor:ktor-client-serialization-js:$ktorVersion")
|
||||||
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:$serializationVersion")
|
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:$serializationVersion")
|
||||||
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.1.1")
|
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.1.1")
|
||||||
implementation(npm("golden-layout", "^1.5.9"))
|
implementation(npm("golden-layout", "^1.5.9"))
|
||||||
// Can't upgrade monaco-editor until https://github.com/microsoft/monaco-editor/issues/2466 is fixed.
|
// Can't upgrade monaco-editor until https://github.com/microsoft/monaco-editor/issues/2466 is
|
||||||
|
// fixed.
|
||||||
implementation(npm("monaco-editor", "0.20.0"))
|
implementation(npm("monaco-editor", "0.20.0"))
|
||||||
implementation(npm("three", "^0.128.0"))
|
implementation(npm("three", "^0.128.0"))
|
||||||
implementation(npm("javascript-lp-solver", "0.4.17"))
|
implementation(npm("javascript-lp-solver", "0.4.17"))
|
||||||
@ -50,7 +43,6 @@ dependencies {
|
|||||||
// Can't upgrade monaco-editor-webpack-plugin until monaco-editor is upgraded.
|
// Can't upgrade monaco-editor-webpack-plugin until monaco-editor is upgraded.
|
||||||
implementation(devNpm("monaco-editor-webpack-plugin", "1.9.1"))
|
implementation(devNpm("monaco-editor-webpack-plugin", "1.9.1"))
|
||||||
|
|
||||||
testImplementation(kotlin("test-js"))
|
|
||||||
testImplementation(project(":test-utils"))
|
testImplementation(project(":test-utils"))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,18 +1,11 @@
|
|||||||
plugins {
|
plugins {
|
||||||
kotlin("multiplatform")
|
id("world.phantasmal.multiplatform")
|
||||||
kotlin("plugin.serialization")
|
kotlin("plugin.serialization")
|
||||||
}
|
}
|
||||||
|
|
||||||
val serializationVersion: String by project.extra
|
val serializationVersion: String by project.extra
|
||||||
|
|
||||||
kotlin {
|
kotlin {
|
||||||
js {
|
|
||||||
browser {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
jvm()
|
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
commonMain {
|
commonMain {
|
||||||
dependencies {
|
dependencies {
|
||||||
|
@ -1,11 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
kotlin("js")
|
id("world.phantasmal.js")
|
||||||
}
|
|
||||||
|
|
||||||
kotlin {
|
|
||||||
js {
|
|
||||||
browser {}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
@ -13,6 +7,5 @@ dependencies {
|
|||||||
api(project(":observable"))
|
api(project(":observable"))
|
||||||
implementation(npm("@fortawesome/fontawesome-free", "^5.13.1"))
|
implementation(npm("@fortawesome/fontawesome-free", "^5.13.1"))
|
||||||
|
|
||||||
testImplementation(kotlin("test-js"))
|
|
||||||
testImplementation(project(":test-utils"))
|
testImplementation(project(":test-utils"))
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user