Statistics
| Branch: | Revision:

root / extensions / gae / pom.xml @ 35e7942d

History | View | Annotate | Download (3.5 kB)

1
<?xml version="1.0" encoding="UTF-8"?>
2
    <!--
3

4

5
        Copyright (C) 2009 Cloud Conscious, LLC.
6
        <info@cloudconscious.com>
7

8
        ====================================================================
9
        Licensed under the Apache License, Version 2.0 (the "License");
10
        you may not use this file except in compliance with the License.
11
        You may obtain a copy of the License at
12

13
        http://www.apache.org/licenses/LICENSE-2.0 Unless required by
14
        applicable law or agreed to in writing, software distributed
15
        under the License is distributed on an "AS IS" BASIS, WITHOUT
16
        WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17
        See the License for the specific language governing permissions
18
        and limitations under the License.
19
        ====================================================================
20
    -->
21

    
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
24
    <modelVersion>4.0.0</modelVersion>
25
    <parent>
26
        <groupId>org.jclouds</groupId>
27
        <artifactId>jclouds-extensions-project</artifactId>
28
        <version>1.0-SNAPSHOT</version>
29
    </parent>
30
    <groupId>org.jclouds</groupId>
31
    <artifactId>jclouds-gae</artifactId>
32
    <name>jclouds Google App Engine Components</name>
33
    <description>Google App Engine Components</description>
34

    
35
    <scm>
36
        <connection>scm:svn:http://jclouds.googlecode.com/svn/trunk</connection>
37
        <developerConnection>scm:svn:https://jclouds.googlecode.com/svn/trunk</developerConnection>
38
        <url>http://jclouds.googlecode.com/svn/trunk</url>
39
    </scm>
40

    
41
    <dependencies>
42
        <dependency>
43
            <groupId>${project.groupId}</groupId>
44
            <artifactId>jclouds-joda</artifactId>
45
            <version>${project.version}</version>
46
        </dependency>
47
        <dependency>
48
            <groupId>${project.groupId}</groupId> 
49
            <artifactId>jclouds-bouncycastle</artifactId>
50
            <version>${project.version}</version>
51
        </dependency>
52
        <dependency>
53
            <groupId>com.google.appengine</groupId>
54
            <artifactId>appengine-api</artifactId>
55
            <version>1.3.0</version>
56
        </dependency>
57
        <dependency>
58
            <groupId>com.google.appengine</groupId>
59
            <artifactId>appengine-api-stubs</artifactId>
60
            <version>1.3.0</version>
61
            <scope>test</scope>
62
        </dependency>
63
        <dependency>
64
            <groupId>com.google.appengine</groupId>
65
            <artifactId>appengine-local-runtime</artifactId>
66
            <version>1.3.0</version>
67
            <scope>test</scope>
68
        </dependency>
69
        <dependency>
70
            <groupId>${project.groupId}</groupId>
71
            <artifactId>jclouds-core</artifactId>
72
            <version>${project.version}</version>
73
            <type>test-jar</type>
74
            <scope>test</scope>
75
            <!--
76
                <exclusions> <exclusion>
77
                <groupId>org.mortbay.jetty</groupId>
78
                <artifactId>jetty</artifactId> </exclusion>
79
                </exclusions>
80
            -->
81
        </dependency>
82
        <dependency>
83
            <groupId>org.apache.geronimo.specs</groupId>
84
            <artifactId>geronimo-servlet_2.5_spec</artifactId>
85
            <version>1.2</version>
86
            <scope>test</scope>
87
        </dependency>
88
    </dependencies>
89

    
90
</project>