Created
September 21, 2019 07:14
-
-
Save ruwanka/34be8dd4a44b0522d7ed9cc77a48be57 to your computer and use it in GitHub Desktop.
Maven Dependency Updater Plugin Development Tutorial
This file contains hidden or 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
<idea-plugin> | |
<id>co.simpleq.mvn-dependency-updater</id> | |
<name>Maven Dependency Updater</name> | |
<vendor email="[email protected]" url="https://github.com/ruwanka/mvn-dependnecy-updater">simpleq</vendor> | |
<version>0.0.4</version> | |
<description><![CDATA[ | |
Inspect maven dependency version updates and provide<br> | |
<em>quick fix</em> for latest version | |
]]></description> | |
<idea-version since-build="183.4284" until-build="192.*"/> | |
<!-- dependencies --> | |
<depends>com.intellij.modules.platform</depends> | |
<depends>org.jetbrains.idea.maven</depends> | |
<!-- resource bundles --> | |
<resource-bundle>MavenVersionInspectionBundle</resource-bundle> | |
<extensions defaultExtensionNs="com.intellij"> | |
<!-- inspections --> | |
<localInspection | |
shortName="MavenVersionUpdateInspection" | |
displayName="Maven version updater" | |
groupName="Maven" | |
enabledByDefault="true" | |
language="XML" | |
level="WARNING" | |
implementationClass="co.simpleq.mvn.dependency.updater.MavenDependencyVersionUpdateInspection"/> | |
</extensions> | |
<actions> | |
<!-- Add your actions here --> | |
</actions> | |
</idea-plugin> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment