Browse Source

Configuration for publishing web artefacts

pull/685/head
Shagen Ogandzhanian 3 years ago
parent
commit
86c6f57b6d
  1. 11
      web/build.gradle

11
web/build.gradle

@ -15,6 +15,17 @@ subprojects {
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" : ""
}
}
}
}
}

Loading…
Cancel
Save