On Fri, May 18, 2012 at 9:14 PM, Justin Knotzke <
jkno...@shampoo.ca> wrote:
>
> Hi
>
> After doing some research and some digging, getting this to work is quite
> easy:
>
> You need to add the following to your pom.xml
>
> <plugin>
> <groupId>org.apache.maven.plugins</groupId>
> <artifactId>maven-dependency-plugin</artifactId>
> <version>2.4</version>
> <executions>
> <execution>
> <id>copy-dependencies</id>
> <phase>package</phase>
> <goals><goal>copy-dependencies</goal></goals>
> </execution>
> </executions>
> </plugin>
>
>
> Then read and follow:
>
>
https://devcenter.heroku.com/articles/spring-mvc-hibernate
>
> Start from the section that says "Add Jetty Runner" and everything should
> work.. I didn't have to do much else then this.. other then opening a Heroku
> account etc..
>
> So far my app appears to be working relatively well.