Statistics
| Branch: | Revision:

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

History | View | Annotate | Download (3.5 kB)

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

4 35e7942d Michael Mayo

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

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

13 35e7942d Michael Mayo
        http://www.apache.org/licenses/LICENSE-2.0 Unless required by
14 35e7942d Michael Mayo
        applicable law or agreed to in writing, software distributed
15 35e7942d Michael Mayo
        under the License is distributed on an "AS IS" BASIS, WITHOUT
16 35e7942d Michael Mayo
        WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 35e7942d Michael Mayo
        See the License for the specific language governing permissions
18 35e7942d Michael Mayo
        and limitations under the License.
19 35e7942d Michael Mayo
        ====================================================================
20 35e7942d Michael Mayo
    -->
21 35e7942d Michael Mayo
22 35e7942d Michael Mayo
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23 35e7942d Michael Mayo
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
24 35e7942d Michael Mayo
    <modelVersion>4.0.0</modelVersion>
25 35e7942d Michael Mayo
    <parent>
26 35e7942d Michael Mayo
        <groupId>org.jclouds</groupId>
27 35e7942d Michael Mayo
        <artifactId>jclouds-extensions-project</artifactId>
28 35e7942d Michael Mayo
        <version>1.0-SNAPSHOT</version>
29 35e7942d Michael Mayo
    </parent>
30 35e7942d Michael Mayo
    <groupId>org.jclouds</groupId>
31 35e7942d Michael Mayo
    <artifactId>jclouds-gae</artifactId>
32 35e7942d Michael Mayo
    <name>jclouds Google App Engine Components</name>
33 35e7942d Michael Mayo
    <description>Google App Engine Components</description>
34 35e7942d Michael Mayo
35 35e7942d Michael Mayo
    <scm>
36 35e7942d Michael Mayo
        <connection>scm:svn:http://jclouds.googlecode.com/svn/trunk</connection>
37 35e7942d Michael Mayo
        <developerConnection>scm:svn:https://jclouds.googlecode.com/svn/trunk</developerConnection>
38 35e7942d Michael Mayo
        <url>http://jclouds.googlecode.com/svn/trunk</url>
39 35e7942d Michael Mayo
    </scm>
40 35e7942d Michael Mayo
41 35e7942d Michael Mayo
    <dependencies>
42 35e7942d Michael Mayo
        <dependency>
43 35e7942d Michael Mayo
            <groupId>${project.groupId}</groupId>
44 35e7942d Michael Mayo
            <artifactId>jclouds-joda</artifactId>
45 35e7942d Michael Mayo
            <version>${project.version}</version>
46 35e7942d Michael Mayo
        </dependency>
47 35e7942d Michael Mayo
        <dependency>
48 35e7942d Michael Mayo
            <groupId>${project.groupId}</groupId> 
49 35e7942d Michael Mayo
            <artifactId>jclouds-bouncycastle</artifactId>
50 35e7942d Michael Mayo
            <version>${project.version}</version>
51 35e7942d Michael Mayo
        </dependency>
52 35e7942d Michael Mayo
        <dependency>
53 35e7942d Michael Mayo
            <groupId>com.google.appengine</groupId>
54 35e7942d Michael Mayo
            <artifactId>appengine-api</artifactId>
55 35e7942d Michael Mayo
            <version>1.3.0</version>
56 35e7942d Michael Mayo
        </dependency>
57 35e7942d Michael Mayo
        <dependency>
58 35e7942d Michael Mayo
            <groupId>com.google.appengine</groupId>
59 35e7942d Michael Mayo
            <artifactId>appengine-api-stubs</artifactId>
60 35e7942d Michael Mayo
            <version>1.3.0</version>
61 35e7942d Michael Mayo
            <scope>test</scope>
62 35e7942d Michael Mayo
        </dependency>
63 35e7942d Michael Mayo
        <dependency>
64 35e7942d Michael Mayo
            <groupId>com.google.appengine</groupId>
65 35e7942d Michael Mayo
            <artifactId>appengine-local-runtime</artifactId>
66 35e7942d Michael Mayo
            <version>1.3.0</version>
67 35e7942d Michael Mayo
            <scope>test</scope>
68 35e7942d Michael Mayo
        </dependency>
69 35e7942d Michael Mayo
        <dependency>
70 35e7942d Michael Mayo
            <groupId>${project.groupId}</groupId>
71 35e7942d Michael Mayo
            <artifactId>jclouds-core</artifactId>
72 35e7942d Michael Mayo
            <version>${project.version}</version>
73 35e7942d Michael Mayo
            <type>test-jar</type>
74 35e7942d Michael Mayo
            <scope>test</scope>
75 35e7942d Michael Mayo
            <!--
76 35e7942d Michael Mayo
                <exclusions> <exclusion>
77 35e7942d Michael Mayo
                <groupId>org.mortbay.jetty</groupId>
78 35e7942d Michael Mayo
                <artifactId>jetty</artifactId> </exclusion>
79 35e7942d Michael Mayo
                </exclusions>
80 35e7942d Michael Mayo
            -->
81 35e7942d Michael Mayo
        </dependency>
82 35e7942d Michael Mayo
        <dependency>
83 35e7942d Michael Mayo
            <groupId>org.apache.geronimo.specs</groupId>
84 35e7942d Michael Mayo
            <artifactId>geronimo-servlet_2.5_spec</artifactId>
85 35e7942d Michael Mayo
            <version>1.2</version>
86 35e7942d Michael Mayo
            <scope>test</scope>
87 35e7942d Michael Mayo
        </dependency>
88 35e7942d Michael Mayo
    </dependencies>
89 35e7942d Michael Mayo
90 35e7942d Michael Mayo
</project>