forked from icerockdev/moko-resources
-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle.kts
32 lines (27 loc) · 891 Bytes
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
* Copyright 2019 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
*/
buildscript {
repositories {
mavenCentral()
google()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
gradlePluginPortal()
}
dependencies {
classpath("dev.icerock.moko:resources-generator")
classpath(libs.composeJetBrainsPlugin)
classpath(libs.autoManifestPlugin)
classpath(":resources-build-logic")
}
}
allprojects {
plugins.withId("org.gradle.maven-publish") {
group = "dev.icerock.moko"
version = libs.versions.mokoResourcesVersion.get()
}
}
rootProject.plugins.withType<org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootPlugin> {
rootProject.the<org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootExtension>().nodeVersion =
"16.0.0"
}