So I am trying to get unirest working in my Confluence plugin so that I can make API requests easily in MyContextProvider.java. I added the following dependency in pom.xml
<dependency>
<groupId>com.konghq</groupId>
<artifactId>unirest-java</artifactId>
<version>2.3.08</version>
</dependency>
However, when I do the following import I get an error that it does not exist when I compile
import kong.unirest.http.*;
I am fairly new to Java development so I apologize if it is a simple mistake.