>You may want to look at [1] for an introduction to maven's standard directory layout. Yeah sorry I meant /src/main/resources -- sorry for the typo. > >My guess is that you deleted the .java file and did not run 'mvn >> clean'. The .class file would still be there under target. >Aside from deleting your test java and class files, you can simply add -Dmaven.test.skip=true to your >mvn command to skip the tests ( i.e. mvn install -Dmaven.test.skip=true ). See [2] for more info >about skipping tests. Thanks for the tip. I fixed the weird deleted test issue by running mvn clean. I fixed the resource issue not being found by creating a resources file under /src/test/resources. As you probably know this is where the tests search for their resources under /src/main/ -- View this message in context: http://www.nabble.com/mvn----still-runs-delete-test--tf2898827s177.html#a8149566 Sent from the Maven - Users mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
