summaryrefslogtreecommitdiffstats
path: root/uitest/ivy.xml
blob: 04488459f3bfac62b7166d21648bfc57b3b18e25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?xml version="1.0" encoding="UTF-8"?>
<ivy-module version="2.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:noNamespaceSchemaLocation="http://ant.apache.org/ivy/schemas/ivy.xsd"
    xmlns:m="http://ant.apache.org/ivy/maven">

    <info organisation="com.vaadin" module="vaadin-uitest"
        revision="${vaadin.version}" />

    <configurations>
        <conf name="build" />
        <conf name="build-provided" visibility="private" />
        <conf name="ide" visibility="private" />
        <conf name="jetty-run" extends="build" visibility="private" />
    </configurations>
    <publications>
        <artifact type="war" ext="war"/>
                   </publications>
    <dependencies defaultconf="build" defaultconfmapping="build,ide->default">
        <!-- API DEPENDENCIES -->
        <dependency org="javax.portlet" name="portlet-api"
            rev="2.0" conf="build-provided,ide -> default" />

        <dependency org="javax.validation" name="validation-api"
            rev="1.0.0.GA" conf="build,ide -> default,sources" />
        <!-- Servlet API -->
        <dependency org="javax.servlet" name="servlet-api"
            rev="2.4" conf="build-provided,ide -> default" />
        <!-- Google App Engine -->
        <dependency org="com.google.appengine" name="appengine-api-1.0-sdk"
            rev="1.2.1" conf="build-provided,ide -> default" />

        <!-- LIBRARY DEPENDENCIES (compile time) -->
        <!-- Project modules -->
        <dependency org="com.vaadin" name="vaadin-server"
            rev="${vaadin.version}" conf="build->build"></dependency>
        <dependency org="com.vaadin" name="vaadin-client"
            rev="${vaadin.version}" conf="build->build"></dependency>
        <dependency org="com.vaadin" name="vaadin-client-compiled"
            rev="${vaadin.version}" conf="build->build"></dependency>
        <dependency org="com.vaadin" name="vaadin-themes"
            rev="${vaadin.version}" conf="build->build"></dependency>
            
        <!-- For compiling TestingWidgetSet -->
        <dependency org="com.vaadin" name="vaadin-client-compiler"
            rev="${vaadin.version}" conf="build-provided-> build"></dependency>

        <!-- Newest Jetty does not work with Ivy currently (orbit -> jar 
            mapping problem) -->
        <dependency org="org.eclipse.jetty" name="jetty-server"
            rev="7.4.5.v20110725" conf="build, ide, jetty-run->default" />
        <!-- jetty-servlets needed in .war by ProxyTest, but not by jetty-runner -->
        <dependency org="org.eclipse.jetty" name="jetty-servlets"
            rev="7.4.5.v20110725" conf="build, ide->default" />
        <!-- <dependency org="org.mortbay.jetty" name="jetty-util" -->
        <!-- rev="8.1.5.v20120716" conf="build,ide,jetty-run->default" /> -->
        <dependency org="org.eclipse.jetty" name="jetty-webapp"
            rev="7.4.5.v20110725" conf="build, ide,jetty-run->default" />
        <dependency org="org.mortbay.jetty" name="jetty-runner"
            rev="7.4.5.v20110725" conf="jetty-run->default" />
        <dependency org="junit" name="junit" rev="4.5"
            conf="build,ide -> default" />

        <dependency org="commons-codec" name="commons-codec"
            rev="1.5" conf="build,ide->default" />
        <dependency org="commons-io" name="commons-io" rev="1.4"
            conf="build,ide->default" />

    </dependencies>

</ivy-module>