mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-20 00:03:37 +07:00
Currently, we don't have a special 'visible for testing' variant of the visibility modifier, so we need to mark such modules as internal to avoid errors after the visibility checks are enabled at runtime. Reviewed in IJ-MR-180677. GitOrigin-RevId: 1dcff728cc567e0c9c4055285b279402b7e5e030
21 lines
737 B
XML
21 lines
737 B
XML
<idea-plugin visibility="internal">
|
|
<dependencies>
|
|
<module name="intellij.python.community"/>
|
|
<module name="intellij.python.community.helpersLocator"/>
|
|
</dependencies>
|
|
|
|
<extensionPoints>
|
|
<extensionPoint qualifiedName="Pythonid.execService.targetEnvironmentRequestHandler"
|
|
interface="com.intellij.python.community.execService.spi.TargetEnvironmentRequestHandler"
|
|
dynamic="true"/>
|
|
|
|
</extensionPoints>
|
|
|
|
<extensions defaultExtensionNs="Pythonid">
|
|
<execService.targetEnvironmentRequestHandler
|
|
implementation="com.intellij.python.community.execService.impl.processLaunchers.DefaultTargetEnvironmentRequestHandler"
|
|
order="last"
|
|
/>
|
|
</extensions>
|
|
|
|
</idea-plugin> |