I am beginning to work with IntelliJ and have not worked with Java for many years. I've been working in the .Net world. I am creating an Atlassian Crowd Custom Connector using IntelliJ. I need to add a dependency to the pom.xml
file for the com.atlassian.crowd.manager.directory
package. I believe the dependency block below is correct except for the version. Is the artifactid correct? I used other dependencies to derive this. How do I find the correct version?
<dependency>
<groupId>com.atlassian.crowd</groupId>
<artifactId>manager-directory</artifactId>
<version>2.8.8</version>
</dependency>
It seems you're looking for the following dependency atlassian-crowd-components.
To be able to use it, you've to add the following section into your
pom.xml
An replace your dependency section by the following one:
Then, within the
<dependencies>
section of the POM add the desired dependency without indication of the version like follow:You can find all dependencies from this URL