Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: drop 212: Remove IJ/CL links #6720

Merged
merged 1 commit into from
Sep 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 0 additions & 58 deletions WORKSPACE.bzlmod
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,6 @@ load("@bazel_tools//tools/build_defs/repo:jvm.bzl", "jvm_maven_import_external")

# Long-lived download links available at: https://www.jetbrains.com/intellij-repository/releases

# The plugin api for IntelliJ 2021.2. This is required to build IJwB,
# and run integration tests.
http_archive(
name = "intellij_ce_2021_2",
build_file = "@//intellij_platform_sdk:BUILD.idea212",
sha256 = "aa38bf2f86b570ce9cac14b01f7e3bf8f592d05641384e7ecedde13cbfa6491a",
url = "https://www.jetbrains.com/intellij-repository/releases/com/jetbrains/intellij/idea/ideaIC/2021.2.4/ideaIC-2021.2.4.zip",
)

# The plugin api for intellij_ce_2022_3. This is required to build IJwB and run integration tests.
http_archive(
name = "intellij_ce_2022_3",
Expand Down Expand Up @@ -83,15 +74,6 @@ http_archive(
url = IC_242_URL,
)

# The plugin api for IntelliJ UE 2021.2. This is required to run UE-specific
# integration tests.
http_archive(
name = "intellij_ue_2021_2",
build_file = "@//intellij_platform_sdk:BUILD.ue212",
sha256 = "f5e942e090693c139dda22e798823285e22d7b31aaad5d52c23a370a6e91ec7d",
url = "https://www.jetbrains.com/intellij-repository/releases/com/jetbrains/intellij/idea/ideaIU/2021.2.4/ideaIU-2021.2.4.zip",
)

# The plugin api for intellij_ue_2022_3. This is required to run UE-specific integration tests.
http_archive(
name = "intellij_ue_2022_3",
Expand Down Expand Up @@ -157,14 +139,6 @@ http_archive(
url = IU_242_URL,
)

# The plugin api for clion_2021_2. This is required to build CLwB, and run integration tests.
http_archive(
name = "clion_2021_2",
build_file = "@//intellij_platform_sdk:BUILD.clion212",
sha256 = "1b9a882aa703303dead8b9459bd8d4f2572bd977d46dce99af96c1647231da2c",
url = "https://download.jetbrains.com/cpp/CLion-2021.2.4.tar.gz",
)

# The plugin api for clion_2022_3. This is required to build CLwB\, and run integration tests.
http_archive(
name = "clion_2022_3",
Expand Down Expand Up @@ -293,14 +267,6 @@ http_archive(
url = "https://plugins.jetbrains.com/files/7322/125352/python-ce-211.7628.24.zip",
)

# Python plugin for IntelliJ CE. Required at compile-time for python-specific features.
http_archive(
name = "python_2021_2",
build_file_content = _PYTHON_CE_BUILD_FILE,
sha256 = "ce110ae1a5d3787bc85ae88d67fa2faa2be959a3e8acfc3567f8ed7b64c9151a",
url = "https://plugins.jetbrains.com/files/7322/151370/python-ce-212.5712.43.zip",
)

http_archive(
name = "python_2022_3",
build_file_content = _PYTHON_CE_BUILD_FILE,
Expand Down Expand Up @@ -376,22 +342,6 @@ http_archive(
url = PYTHON_PLUGIN_242_URL,
)

_GO_BUILD_FILE = """
java_import(
name = "go",
jars = glob(["go/lib/*.jar"]),
visibility = ["//visibility:public"],
)
"""

# Go plugin for IntelliJ UE. Required at compile-time for Bazel integration.
http_archive(
name = "go_2021_2",
build_file_content = _GO_BUILD_FILE,
sha256 = "5c868f2be8feb552aa4f9edb2a3c48db68193eb49ba50ca0a0976f4b9de82c67",
url = "https://plugins.jetbrains.com/files/9568/149614/go-212.5712.14.zip",
)

_GO_BUILD_FILE_223 = """
java_import(
name = "go",
Expand Down Expand Up @@ -478,14 +428,6 @@ java_import(
)
"""

# Scala plugin for IntelliJ CE. Required at compile-time for scala-specific features.
http_archive(
name = "scala_2021_2",
build_file_content = _SCALA_BUILD_FILE,
sha256 = "8d9c2831920fb69a52898598dc7f78c455001b3ebd1956b972757ffae7c0f056",
url = "https://plugins.jetbrains.com/files/1347/153522/scala-intellij-bin-2021.2.30.zip",
)

http_archive(
name = "scala_2022_3",
build_file_content = _SCALA_BUILD_FILE,
Expand Down
Loading