From 86c6f57b6dcb6413649ae34b76ee17a0c37b0ee3 Mon Sep 17 00:00:00 2001 From: Shagen Ogandzhanian Date: Wed, 19 May 2021 15:19:47 +0200 Subject: [PATCH] Configuration for publishing web artefacts --- web/build.gradle | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/web/build.gradle b/web/build.gradle index bb74b06734..3e26ae1807 100644 --- a/web/build.gradle +++ b/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" : "" + } + } + } } }