Intellij 14 - plugin dependencies
Hello there,
I have an existing plugin compatible with Intellij 13 having lot of dependencies on SVN APIs. For example i have dependencies on(Using Maven for dependeny management)
<dependency>
<groupId>com.intellij.svn4idea</groupId>
<artifactId>svn4idea</artifactId>
<version>13.1.1</version>
<scope>provided</scope>
</dependency>
What is the corresponding dependency for Intellij 14?
I am not able to get this- <dependency> <groupId>com.intellij.svn4idea</groupId>
<artifactId>svn4idea</artifactId>
<version>14.0.0</version>
<scope>provided</scope>
</dependency>
Basically i am trying to make my plugin Intellij 13 and 14 compatible. Any help would be great.
Thanks!
Please sign in to leave a comment.
IntelliJ IDEA and its plugins are currently not officially available in any Maven repository. If you want to use Maven for dependency management, you need to set up your own repository and upload the jars there.
Thanks a lot Dmitry. Will check that.