aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/protobuf/intellij_ide_info.proto
diff options
context:
space:
mode:
authorGravatar Googler <noreply@google.com>2017-01-27 21:13:16 +0000
committerGravatar Yun Peng <pcloudy@google.com>2017-01-30 09:01:43 +0000
commit669e7f2cbe72aa96504e8f94d5ce65f5534fa627 (patch)
tree6ec83c4af00d1f1be6b9c8333b54541d224fb400 /src/main/protobuf/intellij_ide_info.proto
parentfd82fefe8230329bb91ee57e0d363fbc1b8e74b3 (diff)
Add intellij_plugin_debug_target rule.
This rule allows deploying more than just a single jar. It can also read structure from pkgfilegroup, allowing deployment of non-single-jar plugins. -- PiperOrigin-RevId: 145828461 MOS_MIGRATED_REVID=145828461
Diffstat (limited to 'src/main/protobuf/intellij_ide_info.proto')
-rw-r--r--src/main/protobuf/intellij_ide_info.proto11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/main/protobuf/intellij_ide_info.proto b/src/main/protobuf/intellij_ide_info.proto
index ce21daf1fb..51e9ede53f 100644
--- a/src/main/protobuf/intellij_ide_info.proto
+++ b/src/main/protobuf/intellij_ide_info.proto
@@ -111,6 +111,15 @@ message JavaToolchainIdeInfo {
string target_version = 2;
}
+message IntellijPluginDeployFile {
+ ArtifactLocation src = 1;
+ string deploy_location = 2;
+}
+
+message IntellijPluginDeployInfo {
+ repeated IntellijPluginDeployFile deploy_files = 1;
+}
+
message TargetKey {
string label = 1;
repeated string aspect_ids = 3;
@@ -154,4 +163,6 @@ message TargetIdeInfo {
TargetKey key = 19;
repeated Dependency deps = 20;
+
+ IntellijPluginDeployInfo intellij_plugin_deploy_info = 21;
}