Changes to applications poms:

* Suport maven-exec-plugin in the same way as the shade plugin, so
        $ mvn exec:java
    is all you need to do to run an app
* Update README
* Fix dependencies to nail Spring version
This commit is contained in:
Dave Syer
2013-05-03 17:09:37 +01:00
parent 7e548b5bd4
commit 380b1748c9
4 changed files with 54 additions and 1 deletions

View File

@@ -159,7 +159,7 @@ which are more convenient at development time. Here are a few:
1. Use the Maven exec plugin, e.g.
$ mvn exec:java -Dexec.mainClass=com.mycompany.sample.SampleController
$ mvn exec:java
2. Run directly in your IDE, e.g. Eclipse or IDEA let you right click
on a class and run it.