This repository has been archived by the owner on Aug 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[maintenance] fixed installer and install targets cleanup | #BAZEL-8 …
…Done buildifier alias out e2e update install script works now Merge-request: BAZEL-MR-400 Merged-by: Marcin Abramowicz <marcin.abramowicz@jetbrains.com>
- Loading branch information
1 parent
b11e3a1
commit 0314e75
Showing
6 changed files
with
21 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,21 @@ | ||
load("@rules_java//java:defs.bzl", "java_binary", "java_library") | ||
load("@io_bazel_rules_kotlin//kotlin:jvm.bzl", "kt_jvm_binary", "kt_jvm_library") | ||
|
||
java_library( | ||
kt_jvm_library( | ||
name = "install", | ||
visibility = ["//visibility:public"], | ||
exports = [ | ||
"//install/src/main/java/org/jetbrains/bsp/bazel/install", | ||
], | ||
) | ||
|
||
java_binary( | ||
name = "bsp-install", | ||
kt_jvm_binary( | ||
name = "install-server", | ||
main_class = "org.jetbrains.bsp.bazel.install.Install", | ||
runtime_deps = ["//install/src/main/java/org/jetbrains/bsp/bazel/install"], | ||
resources = ["//log4j_config"], | ||
visibility = ["//visibility:public"], | ||
runtime_deps = [ | ||
"//commons", | ||
"//install", | ||
"//server/src/main/java/org/jetbrains/bsp/bazel/server", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters