maven noob here
I have this in my pom.xml
file
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-encryption-sdk-java</artifactId>
<version>1.6.1</version>
</dependency>
but for some reason, when I do mvn dependency:resolve
, this will never show up in the list, and the code itself is forever failing to import com.amazonaws.encryptionsdk
. Also the jar file wouldn't appear under External Libraries
in IntelliJ.
If my googling skills haven't filed me, isn't mvn dependency:resolve
suppose to download the jar file? Please let me know what I'm missing. Thanks!