newbie
newbie

Reputation: 24645

Using Maven in Google App Engine application

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>

Upvotes: 1

Views: 1505

Answers (2)

Taylor Leese
Taylor Leese

Reputation: 52400

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

Upvotes: 2

bhdrkn
bhdrkn

Reputation: 6712

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

Upvotes: 0

Related Questions