-
Notifications
You must be signed in to change notification settings - Fork 180
Expand file tree
/
Copy pathplugin.xml
More file actions
61 lines (56 loc) · 2.97 KB
/
plugin.xml
File metadata and controls
61 lines (56 loc) · 2.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<idea-plugin url="https://github.com/Microsoft/azure-tools-for-java"
xmlns:xi="http://www.w3.org/2001/XInclude">
<id>com.microsoft.tooling.msservices.intellij.azure</id>
<name>Azure Toolkit</name>
<version>3.97.3</version>
<vendor email="java@microsoft.com" url="http://www.microsoft.com">Microsoft</vendor>
<description>
<![CDATA[
<html>
<h3>Azure</h3>
<p>You may get the full change log <a href="https://github.com/Microsoft/azure-tools-for-java/blob/develop/CHANGELOG.md">here</a></p>
</html>
]]>
</description>
<change-notes>
<![CDATA[
<html>
<h3>Azure</h3>
<h4>3.97.3</h4>
<ul>
<li>Support IntelliJ IDEA 2026.1 EAP</li>
<li>Migrate 97 scheduled-for-removal APIs to new IntelliJ Platform APIs</li>
<li>Replace deprecated AnActionEvent, ComponentManager, LafManager, Notification APIs</li>
<li>Fix registry key conflict for Cosmos DB dbtools module</li>
</ul>
<p>You may get the full change log <a href="https://github.com/Microsoft/azure-tools-for-java/blob/develop/CHANGELOG.md">here</a></p>
</html>
]]>
</change-notes>
<!-- please see https://confluence.jetbrains.com/display/IDEADEV/Build+Number+Ranges for description -->
<idea-version since-build="222.2270.31" until-build="222.*"/>
<resource-bundle>com.microsoft.intellij.ui.messages.messages</resource-bundle>
<depends>com.intellij.modules.java</depends>
<depends>org.jetbrains.idea.maven</depends>
<depends>com.intellij.gradle</depends>
<xi:include href="/META-INF/azure-intellij-plugin-lib-java.xml" xpointer="xpointer(/idea-plugin/*)"/>
<xi:include href="/META-INF/azure-intellij-plugin-appmod.xml" xpointer="xpointer(/idea-plugin/*)"/>
<xi:include href="/META-INF/azure-intellij-plugin-service-explorer.xml" xpointer="xpointer(/idea-plugin/*)"/>
<xi:include href="/META-INF/azure-intellij-plugin-database.xml" xpointer="xpointer(/idea-plugin/*)"/>
<xi:include href="/META-INF/azure-intellij-plugin-storage.xml" xpointer="xpointer(/idea-plugin/*)"/>
<xi:include href="/META-INF/azure-intellij-plugin-redis.xml" xpointer="xpointer(/idea-plugin/*)"/>
<extensions defaultExtensionNs="com.microsoft.tooling.msservices.intellij.azure">
<actions implementation="com.microsoft.azure.toolkit.intellij.common.action.LegacyIntellijActionsContributor"/>
</extensions>
<applicationListeners>
<listener class="com.microsoft.azure.toolkit.intellij.base.PluginLifeCycleListener" topic="com.intellij.ide.AppLifecycleListener"/>
</applicationListeners>
<extensions defaultExtensionNs="com.intellij">
<postStartupActivity implementation="com.microsoft.azure.toolkit.intellij.base.AzurePlugin"/>
<toolWindow id="Azure Explorer"
canCloseContents="false"
anchor="left"
icon="AllIcons.Providers.Azure"
factoryClass="com.microsoft.azure.toolkit.intellij.explorer.AzureExplorer$ToolWindowFactory"/>
</extensions>
</idea-plugin>