mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
* [JetBrains] Migrate platform version for `2024.2.*` - Update Platform Version of JetBrains Backend Plugin (EAP) to 242.18071-EAP-CANDIDATE-SNAPSHOT * fix sdkman cmd not found * Regist plugin verify task * stable broken * restart to get more workspace space * Make it build * Remove deprecated preload property * Revert "Remove deprecated preload property" This reverts commit 4574632f051b1a50cbcef6092c1d33e63636398d. * do not verify * add todo * Use `--build-file` flag * Revert "Use `--build-file` flag" This reverts commit 3cc44942122ec6ce69ae82db3812a633f4fee431.
14 lines
525 B
Plaintext
14 lines
525 B
Plaintext
// Copyright (c) 2021 Gitpod GmbH. All rights reserved.
|
|
// Licensed under the GNU Affero General Public License (AGPL).
|
|
// See License.AGPL.txt in the project root for license information.
|
|
|
|
rootProject.name = "gitpod-remote"
|
|
|
|
include(":supervisor-api")
|
|
val supervisorApiProjectPath: String by settings
|
|
project(":supervisor-api").projectDir = File(supervisorApiProjectPath)
|
|
|
|
include(":gitpod-protocol")
|
|
val gitpodProtocolProjectPath: String by settings
|
|
project(":gitpod-protocol").projectDir = File(gitpodProtocolProjectPath)
|