views:

54

answers:

2

I'm making Google App Engine project with SpringSource Tool Suite. I made project without maven and added libraries to lib folder and I got Spring Framework work perfectly. But the I tried to make project that uses Maven, adn I when I tried to run my app on development server it cannot find any classes.

So what should I do, so that my dependecies are actually deployed to lib folder?

Example of dependency in pom.xml:

    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>org.springframework.core</artifactId>
        <version>3.0.2.RELEASE</version>
    </dependency>
A: 

Take a look at the pom.xml in my jappstart project. It's a functional GAE project that uses Spring.

Taylor Leese
A: 

Hi,

Take a look at the example it covers Sprint 3, Google App Engine and maven.

bhdrkn