In Maven, my dependencies are set up but I get a ClassNotFoundException when I run generated jar
问题 I was following along with the maven tutorial at http://www.youtube.com/watch?v=IRKu8_l5YiQ. I created a maven project with the default archetype. Then I added the following dependencies to my pom.xml: <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.7</version> </dependency> Then I tried to put a Logger into my App.java file. This file comes built in with the default maven archetype that I used. The code for that is below: package GroupID; import org