mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 10:20:15 +07:00
[python]: rename module to move it out of community.impl since this name is already used and might lead to clash.
`intellij.python.community.impl.community_only` -> `intellij.python.community.communityOnly` GitOrigin-RevId: 070222708f66ba5f58b9716040186ec11d984e5d
This commit is contained in:
committed by
intellij-monorepo-bot
parent
d406ad5f3d
commit
37c7118b1a
2
.idea/modules.xml
generated
2
.idea/modules.xml
generated
@@ -1126,9 +1126,9 @@
|
||||
<module fileurl="file://$PROJECT_DIR$/python/python-ast/intellij.python.ast.iml" filepath="$PROJECT_DIR$/python/python-ast/intellij.python.ast.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/python/python-common-tests/intellij.python.commonTests.iml" filepath="$PROJECT_DIR$/python/python-common-tests/intellij.python.commonTests.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/python/openapi/intellij.python.community.iml" filepath="$PROJECT_DIR$/python/openapi/intellij.python.community.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/python/intellij.python.community.communityOnly/intellij.python.community.communityOnly.iml" filepath="$PROJECT_DIR$/python/intellij.python.community.communityOnly/intellij.python.community.communityOnly.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/python/python-core-impl/intellij.python.community.core.impl.iml" filepath="$PROJECT_DIR$/python/python-core-impl/intellij.python.community.core.impl.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/python/intellij.python.community.impl.iml" filepath="$PROJECT_DIR$/python/intellij.python.community.impl.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/python/intellij.python.community.impl.community_only/intellij.python.community.impl.community_only.iml" filepath="$PROJECT_DIR$/python/intellij.python.community.impl.community_only/intellij.python.community.impl.community_only.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/python/huggingFace/intellij.python.community.impl.huggingFace.iml" filepath="$PROJECT_DIR$/python/huggingFace/intellij.python.community.impl.huggingFace.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/python/poetry/intellij.python.community.impl.poetry.iml" filepath="$PROJECT_DIR$/python/poetry/intellij.python.community.impl.poetry.iml" />
|
||||
<module fileurl="file://$PROJECT_DIR$/python/pluginCore/intellij.python.community.plugin.iml" filepath="$PROJECT_DIR$/python/pluginCore/intellij.python.community.plugin.iml" />
|
||||
|
||||
@@ -22,7 +22,7 @@ object PythonCommunityPluginModules {
|
||||
"intellij.python.community.impl",
|
||||
"intellij.python.community.impl.poetry",
|
||||
"intellij.python.community.impl.huggingFace",
|
||||
"intellij.python.community.impl.community_only",
|
||||
"intellij.python.community.communityOnly",
|
||||
"intellij.python.langInjection",
|
||||
"intellij.python.copyright",
|
||||
"intellij.python.terminal",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
|
||||
package com.intellij.python.community.impl.community_only
|
||||
package com.intellij.python.community.communityOnly
|
||||
|
||||
import com.jetbrains.python.console.PydevConsoleRunnerFactory
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<!-- Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
|
||||
<idea-plugin package="com.intellij.python.community.impl.community_only">
|
||||
<idea-plugin package="com.intellij.python.community.communityOnly">
|
||||
<!--Community only, never professional: both plugin and DS -->
|
||||
<dependencies>
|
||||
<module name="intellij.python.community.impl"/>
|
||||
</dependencies>
|
||||
<extensions defaultExtensionNs="com.intellij">
|
||||
<applicationService serviceInterface="com.jetbrains.python.console.PythonConsoleRunnerFactory"
|
||||
serviceImplementation="com.intellij.python.community.impl.community_only.CommunityPydevConsoleRunnerFactory"/>
|
||||
serviceImplementation="com.intellij.python.community.communityOnly.CommunityPydevConsoleRunnerFactory"/>
|
||||
</extensions>
|
||||
</idea-plugin>
|
||||
@@ -8,6 +8,6 @@
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
<orderEntry type="module" module-name="intellij.platform.lang" />
|
||||
<orderEntry type="module" module-name="intellij.python.community.impl.community_only" scope="RUNTIME" />
|
||||
<orderEntry type="module" module-name="intellij.python.community.communityOnly" scope="RUNTIME" />
|
||||
</component>
|
||||
</module>
|
||||
@@ -31,7 +31,7 @@ The Python plug-in provides smart editing for Python scripts. The feature set of
|
||||
<!--Mini-IDes support community python only-->
|
||||
<module name="intellij.python.community.plugin.minor"/> <!-- Python for Mini-IDEs-->
|
||||
<module name="intellij.python.community.plugin.minor.rider"/> <!-- Python special support for Rider -->
|
||||
<module name="intellij.python.community.impl.community_only"/> <!-- Community-specific code-->
|
||||
<module name="intellij.python.community.communityOnly"/> <!-- Community-specific code-->
|
||||
</content>
|
||||
|
||||
</idea-plugin>
|
||||
|
||||
Reference in New Issue
Block a user