You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

42 lines
1.2 KiB

plugins {
id("org.jetbrains.kotlin.multiplatform") version("1.4.32") apply(false)
id("org.jetbrains.compose") version "0.0.0-web-dev-12" apply(false)
}
subprojects {
apply plugin: "maven-publish"
pluginManager.withPlugin("maven-publish") {
publishing {
publications {
maven(MavenPublication) {
groupId = "org.jetbrains.compose.web"
version = System.getenv("COMPOSE_WEB_VERSION")
}
}
repositories {
maven {
name "internal"
url "https://maven.pkg.jetbrains.space/public/p/compose/dev"
credentials {
username = project.hasProperty("COMPOSE_REPO_USERNAME") ? "$COMPOSE_REPO_USERNAME" : ""
password = project.hasProperty("COMPOSE_REPO_KEY") ? "$COMPOSE_REPO_KEY" : ""
}
}
}
}
}
repositories {
gradlePluginPortal()
mavenCentral()
maven {
url = uri("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
maven {
url("https://packages.jetbrains.team/maven/p/ui/dev")
}
}
}