mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
IJPL-149248 Run with sudo is broken due to missing gRPC dependency
GitOrigin-RevId: 2aed493b6a99ef06bc750efc18756251d6837dd7
This commit is contained in:
committed by
intellij-monorepo-bot
parent
fd74726f95
commit
84fa15c1b5
1
.idea/modules.xml
generated
1
.idea/modules.xml
generated
@@ -860,6 +860,7 @@
|
||||
<module fileurl="file://$PROJECT_DIR$/plugins/laf/win10/intellij.laf.win10.iml" filepath="$PROJECT_DIR$/plugins/laf/win10/intellij.laf.win10.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/platform/libraries/cglib/intellij.libraries.cglib.iml" filepath="$PROJECT_DIR$/platform/libraries/cglib/intellij.libraries.cglib.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/libraries/grpc/intellij.libraries.grpc.iml" filepath="$PROJECT_DIR$/libraries/grpc/intellij.libraries.grpc.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/libraries/grpc-netty-shaded/intellij.libraries.grpc.netty.shaded.iml" filepath="$PROJECT_DIR$/libraries/grpc-netty-shaded/intellij.libraries.grpc.netty.shaded.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/libraries/ktor-client/intellij.libraries.ktor.client.iml" filepath="$PROJECT_DIR$/libraries/ktor-client/intellij.libraries.ktor.client.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/plugins/lombok/intellij.lombok.iml" filepath="$PROJECT_DIR$/plugins/lombok/intellij.lombok.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/plugins/lombok/generated/intellij.lombok.generated.iml" filepath="$PROJECT_DIR$/plugins/lombok/generated/intellij.lombok.generated.iml" />
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module version="4">
|
||||
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||
<exclude-output />
|
||||
<content url="file://$MODULE_DIR$">
|
||||
<sourceFolder url="file://$MODULE_DIR$/resources" type="java-resource" />
|
||||
</content>
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
<orderEntry type="library" exported="" name="grpc-netty-shaded" level="project" />
|
||||
</component>
|
||||
</module>
|
||||
@@ -0,0 +1,2 @@
|
||||
<idea-plugin>
|
||||
</idea-plugin>
|
||||
@@ -1,5 +1,7 @@
|
||||
<idea-plugin package="com.intellij.execution.process.mediator.client">
|
||||
<dependencies>
|
||||
<module name="intellij.libraries.grpc"/>
|
||||
<module name="intellij.libraries.grpc.netty.shaded"/>
|
||||
<module name="intellij.execution.process.mediator.common"/>
|
||||
<module name="intellij.execution.process.mediator.daemon"/> <!-- for launcher and in-process server -->
|
||||
</dependencies>
|
||||
|
||||
@@ -13,9 +13,9 @@
|
||||
<orderEntry type="library" name="jetbrains-annotations" level="project" />
|
||||
<orderEntry type="library" name="Guava" level="project" />
|
||||
<orderEntry type="library" name="protobuf" level="project" />
|
||||
<orderEntry type="library" name="grpc-netty-shaded" level="project" />
|
||||
<orderEntry type="library" name="jna" level="project" />
|
||||
<orderEntry type="module" module-name="intellij.execution.process.mediator.common" />
|
||||
<orderEntry type="module" module-name="intellij.libraries.grpc" />
|
||||
<orderEntry type="module" module-name="intellij.libraries.grpc.netty.shaded" />
|
||||
</component>
|
||||
</module>
|
||||
@@ -1,5 +1,7 @@
|
||||
<idea-plugin package="com.intellij.execution.process.mediator.daemon">
|
||||
<dependencies>
|
||||
<module name="intellij.libraries.grpc"/>
|
||||
<module name="intellij.libraries.grpc.netty.shaded"/>
|
||||
<module name="intellij.execution.process.mediator.common"/>
|
||||
</dependencies>
|
||||
</idea-plugin>
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
<idea-plugin>
|
||||
<content>
|
||||
<module name="intellij.libraries.grpc"/>
|
||||
<module name="intellij.libraries.grpc.netty.shaded"/>
|
||||
<module name="intellij.execution.process.elevation"/>
|
||||
<module name="intellij.execution.process.mediator.client"/>
|
||||
<module name="intellij.execution.process.mediator.common"/>
|
||||
<module name="intellij.execution.process.mediator.daemon"/>
|
||||
</content>
|
||||
</idea-plugin>
|
||||
Reference in New Issue
Block a user