-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #103 from asyncapi/Support-2024.2-IDE-releases
feat: support 2024.2
- Loading branch information
Showing
11 changed files
with
153 additions
and
141 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
10 changes: 10 additions & 0 deletions
10
...atform/localPlatformArtifacts/bundledPlugin-org.jetbrains.plugins.yaml-2024.2.0.2+665.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<ivy-module version="2.0"> | ||
<info organisation="bundledPlugin" module="org.jetbrains.plugins.yaml" revision="2024.2.0.2+665"/> | ||
<configurations> | ||
<conf name="default" visibility="public"/> | ||
</configurations> | ||
<publications> | ||
<artifact name="/Users/pavelbodyachevskiy/.gradle/caches/8.10/transforms/44bd0f87823f31d8ddf00a60fee2320c/transformed/ideaIC-2024.2.0.2/plugins/yaml" type="directory" conf="default"/> | ||
</publications> | ||
<dependencies/> | ||
</ivy-module> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<p>Edit <a href="https://www.asyncapi.com/">AsyncAPI</a> specifications in the IDE with syntax highlighting, auto-completion and a live preview.</p> | ||
<div> | ||
<h3>Features</h3> | ||
<ul> | ||
<li>Recognition of AsyncAPI specifications</li> | ||
<li>AsyncAPI specification auto-completion</li> | ||
<li>AsyncAPI specification example creation from <code>file -> new -> AsyncAPI specification</code></li> | ||
<li>AsyncAPI specification inspection and validation using <a href="https://github.com/asyncapi/spec-json-schemas">AsyncAPI JSON Schema</a></li> | ||
<li>Local references resolving with auto-completion in AsyncAPI specification</li> | ||
<li>File references resolving with auto-completion in AsyncAPI specification</li> | ||
<li>AsyncAPI specification preview as html in built-in/external browser</li> | ||
</ul> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,22 +3,6 @@ | |
<name>AsyncAPI</name> | ||
<vendor email="[email protected]" url="https://www.asyncapi.com">AsyncAPI</vendor> | ||
|
||
<description><![CDATA[ | ||
<h2>⚠️ This plugin doesn't support AsyncAPI 1.x</h2> | ||
<p>Plugin to help you easily edit <a href="https://www.asyncapi.com/">AsyncAPI</a> specification files.</p> | ||
<h3>Features</h3> | ||
<ul> | ||
<li>Recognition of AsyncAPI specifications.</li> | ||
<li>AsyncAPI specification auto-completion.</li> | ||
<li>AsyncAPI specification example creation from <code>file -> new -> AsyncAPI specification</code>.</li> | ||
<li>AsyncAPI specification inspection and validation using <a href="https://github.com/asyncapi/spec-json-schemas">AsyncAPI JSON Schema</a>.</li> | ||
<li>Local references resolving with auto-completion in AsyncAPI specification.</li> | ||
<li>File references resolving with auto-completion in AsyncAPI specification.</li> | ||
<li>AsyncAPI specification preview as html in built-in/external browser.</li> | ||
</ul> | ||
]]> | ||
</description> | ||
|
||
<!-- please see https://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html | ||
on how to target different products --> | ||
<depends>com.intellij.modules.platform</depends> | ||
|
@@ -27,12 +11,6 @@ | |
<extensions defaultExtensionNs="com.intellij"> | ||
<!-- Add your extensions here --> | ||
|
||
<applicationService serviceImplementation="com.asyncapi.plugin.idea._core.AsyncAPISpecificationRecognizer"/> | ||
<applicationService serviceImplementation="com.asyncapi.plugin.idea._core.AsyncAPISpecificationHtmlRenderer"/> | ||
<applicationService serviceImplementation="com.asyncapi.plugin.idea._core.render.WebSocketRendererProvider"/> | ||
<applicationService serviceImplementation="com.asyncapi.plugin.idea.extensions.web.UrlProvider"/> | ||
<applicationService serviceImplementation="com.asyncapi.plugin.idea._core.AsyncAPIJsonSchemaProvider"/> | ||
|
||
<!-- Templates for AsyncAPI specification example --> | ||
<internalFileTemplate name="AsyncAPI specification 2 (yaml)"/> | ||
<internalFileTemplate name="AsyncAPI specification 2 (json)"/> | ||
|