> I noticed I'm having this in other projects as well (my own projects). > > what am i missing?
Maven does not, by default, build a jar package which you can simply run with "java -jar" from the command line. You have to include all of your dependencies (including transitive deps) with the -cp parameter. If you want to build "fat" jars, google "maven jar with dependencies". Wayne --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
