aboutsummaryrefslogtreecommitdiffstats
path: root/server/ivy.xml
blob: e6f3d60de6996471d3606bca59c223814716a701 (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
<?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">

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

    <configurations>
        <conf name="build" />
        <conf name="build-provided" />
        <conf name="ide" visibility="private"/>
        <conf name="tests" visibility="private"/>
    </configurations>
    <publications>
        <artifact></artifact>
    </publications>
    <dependencies>
        <!-- API DEPENDENCIES -->

        <!-- Liferay Portal Service -->
        <dependency org="com.liferay.portal" name="portal-service"
            rev="6.0.2" conf="build-provided,ide -> default" />
        <!--Servlet API version 2.5 -->
        <dependency org="javax.servlet" name="servlet-api"
            rev="2.5" conf="build-provided,ide,tests -> default" />

        <!--Portlet API version 2.0 (JSR-286) -->
        <dependency org="javax.portlet" name="portlet-api"
            rev="2.0" conf="build-provided,ide,tests -> default" />

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

        <!-- LIBRARY DEPENDENCIES (compile time) -->
        <!-- Project modules -->
        <dependency org="com.vaadin" name="vaadin-shared"
            rev="${vaadin.version}" conf="build,tests" />

        <!-- Jsoup for BootstrapHandler -->
        <dependency org="org.jsoup" name="jsoup" rev="1.6.3"
            conf="build,ide -> default" />

        <!-- TESTING DEPENDENCIES -->

        <!-- Test frameworks & related -->
        <dependency org="junit" name="junit" rev="4.5"
            conf="tests,ide -> default" />
        <dependency org="org.easymock" name="easymock" rev="3.0"
            conf="tests,ide-> default" transitive="true" />
        <dependency org="org.hsqldb" name="hsqldb" rev="2.2.6"
            conf="tests,ide -> default" />
        <dependency org="commons-io" name="commons-io" rev="1.4"
            conf="tests->default" />
        <dependency org="commons-lang" name="commons-lang"
            rev="2.3" conf="tests,ide->default" />

    </dependencies>

</ivy-module>