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

@@ -320,6 +320,11 @@
<artifactId>spring-aop</artifactId>
<version>${dependency.springframework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>${dependency.springframework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>