I am trying to include gson in javaEE project with Maven:
<dependencies>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.5</version>
</dependency>
</dependencies>
This is my output:
Project settings:
Yet it complains :
java.lang.NoClassDefFoundError: com/google/gson/Gson
I am using intelliJ. What is the right way to include it? So far i have only found the output is in correct format...
Thanks for help!