blob: 13e89eb73472818aa80391034d47f23a9f3f601c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<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="buildhelpers"/>
<configurations>
<conf name="compile" visibility="private"/>
</configurations>
<publications />
<dependencies>
<dependency org="com.carrotsearch" name="smartsprites" rev="0.2.3-itmill" conf="compile->compile(*),master(*)"/>
<!-- These come with GWT for Vaadin JAR but are needed to compile CompileDefaultTheme -->
<!--
<dependency org="org.w3c.css" name="sac" rev="1.3" conf="compile->compile(*),master(*)"/>
<dependency org="org.w3c" name="flute" rev="1.2" conf="compile->compile(*),master(*)"/>
-->
</dependencies>
</ivy-module>
|