You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

plugin.xml 1.3KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <idea-plugin version="2">
  2. <id>com.rthoni.intellij.codefromds</id>
  3. <name>Code FROM ds</name>
  4. <version>1.0</version>
  5. <vendor email="robin@rthoni.com" url="https://www.rthoni.com">Robin Thoni</vendor>
  6. <description><![CDATA[
  7. Generate code from data sources
  8. ]]></description>
  9. <change-notes><![CDATA[
  10. First version
  11. ]]>
  12. </change-notes>
  13. <!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
  14. <idea-version since-build="141.0"/>
  15. <!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
  16. on how to target different products -->
  17. <depends>com.intellij.modules.lang</depends>
  18. <depends>com.intellij.database</depends>
  19. <extensions defaultExtensionNs="com.intellij">
  20. <!-- Add your extensions here -->
  21. </extensions>
  22. <actions>
  23. <!-- Add your actions here -->
  24. <action id="codefromds-generate" class="com.rthoni.intellij.codefromds.ui.actions.GenerateAction"
  25. text="Generate code from data source" description="Generate models from an intellij data source">
  26. <add-to-group group-id="ToolsMenu" anchor="last"/>
  27. <keyboard-shortcut keymap="$default" first-keystroke="ctrl alt G"/>
  28. </action>
  29. </actions>
  30. </idea-plugin>