This repository has been archived by the owner on Nov 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
plugin.xml
144 lines (136 loc) · 5.42 KB
/
plugin.xml
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<idea-plugin>
<!--
Copyright (c) 2019, 2020 IBM Corporation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v2.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v20.html
Contributors:
IBM Corporation - initial API and implementation
-->
<id>org.eclipse.codewind.intellij</id>
<name>Codewind</name>
<vendor email="[email protected]" url="https://www.eclipse.org/codewind/">Codewind</vendor>
<description><![CDATA[
<h2>Codewind</h2>
<p>
Adds tools to help build cloud-native, containerized Java
applications. Create an application from a template project
and launch, update, test, and debug in containers on the
desktop. Supports Codewind version 0.11.0. For more
information, see the <a href="https://www.eclipse.org/codewind/">Codewind website</a>.
</p>
<h2>Why use Codewind?</h2>
<ul>
<li>Get started with templates or samples to create and deploy applications that run in containers.</li>
<li>Create containerized applications in languages and runtimes that you're already familiar with.</li>
<li>Pull in your existing applications and use Codewind to help get them cloud ready.</li>
<li>See code changes reflected in your containerized application.</li>
</ul>
<h2>Features</h2>
<ul>
<li>Create new containerized projects or add existing ones.</li>
<li>View your containerized projects, including the application and build status.</li>
<li>Access application, build, and container logs in the Output view.</li>
<li>Toggle the project auto build setting and manually initiate project builds.</li>
<li>Open your application in a browser.</li>
</ul>
<h2>Getting started with Codewind</h2>
<p>
For more information, see
<a href="https://www.eclipse.org/codewind/intellij-getting-started.html">Installing Codewind for IntelliJ</a>.
</p>
<h2>Contributing</h2>
<p>Submit issues and contributions:</p>
<ul>
<li>
Submitting issues:
<a href="https://github.com/eclipse/codewind/issues">https://github.com/eclipse/codewind/issues</a>.
</li>
<li>
Contributing:
<a href="https://github.com/eclipse/codewind-intellij/blob/master/CONTRIBUTING.md">https://github.com/eclipse/codewind-intellij/blob/master/CONTRIBUTING.md</a>.</li>
</ul>
<h2>Developing</h2>
<p>To develop and debug Codewind for IntelliJ, see
<a href="https://github.com/eclipse/codewind-intellij#developing">Developing</a>.
</p>
]]></description>
<change-notes><![CDATA[
<p><b>0.14.1</b></p>
<p>
<ul>
<li>Support Codewind 0.14.1
</ul>
</p>
<br/>
<p><b>0.14.0</b></p>
<p>
<ul>
<li>Manage Secure and Non-Secure Template Sources</li>
</ul>
</p>
<br/>
<p><b>0.13.0</b></p>
<p>
<ul>
<li>Plugin now requires a minimum of IntelliJ IDEA 2020.1.1</li>
<li>Bug fixes</li>
</ul>
</p>
<br/>
<p><b>0.12.0</b></p>
<p>
<ul>
<li>Support for app metrics, dashboard and injection</li>
<li>Open shell into container</li>
<li>Add notifications for log changes</li>
<li>Open and select project after project creation</li>
<li>Bug fixes</li>
</ul>
</p>
<br/>
<p><b>0.11.0</b></p>
<p>
<ul>
<li>Show project log files</li>
<li>Open performance dashboard</li>
<li>Support Disable/Enable project</li>
<li>Support Debugging</li>
<li>Bug fixes</li>
</ul>
</p>
<br/>
<p><b>0.9.0</b></p>
<p>
<ul>
<li>
Initial tech preview release.
To get started, see <a href="https://www.eclipse.org/codewind/intellij-getting-started.html">Getting Started</a>.
</li>
</ul>
</p>
]]>
</change-notes>
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
<idea-version since-build="201.7223.91"/>
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
on how to target different products -->
<depends>com.intellij.modules.java</depends>
<depends>org.jetbrains.idea.maven</depends>
<depends>org.jetbrains.plugins.terminal</depends>
<extensions defaultExtensionNs="com.intellij">
<toolWindow id="Codewind" anchor="left" secondary="true" icon="/META-INF/pluginIcon13x13.svg"
factoryClass="org.eclipse.codewind.intellij.ui.WindowToolFactory"/>
<!-- <moduleType id="CODEWIND_MODULE" implementationClass="org.eclipse.codewind.intellij.ui.module.CodewindModuleType" /> -->
<moduleBuilder builderClass="org.eclipse.codewind.intellij.ui.module.CodewindModuleBuilder"/>
<fileType name="CwSettingsFileType"
implementationClass="org.eclipse.codewind.intellij.core.filetypes.CwSettingsFileType"
fieldName="INSTANCE" language="JSON"/>
<fileTypeDetector implementation="org.eclipse.codewind.intellij.core.filetypes.CwSettingsFileTypeDetector"
order="first"/>
<configurationType implementation="org.eclipse.codewind.intellij.ui.debug.CodewindConfigurationType"/>
</extensions>
<actions>
</actions>
</idea-plugin>