Project

General

Profile

Download (1.75 KB) Statistics
| Branch: | Tag: | Revision:
1
<?xml version="1.0"?>
2
<!DOCTYPE ivy-module [
3
	<!ENTITY vaadin.version "7.7.9">
4
]>
5
<ivy-module version="2.0"
6
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
7
	xsi:noNamespaceSchemaLocation="http://ant.apache.org/ivy/schemas/ivy.xsd">
8
	<info organisation="com.example" module="v7proj" />
9
	<configurations>
10
		<!-- The default configuration, which should be deployed to the server -->
11
		<conf name="default" />
12
		<!-- A configuration only needed when compiling the widget set. Should 
13
			not be deployed to the server -->
14
		<conf name="widgetset-compile" />
15
		<!-- A configuration used in compilation of server side classes only.
16
			Should be deployed to the server -->
17
		<conf name="nodeploy" />
18
	</configurations>
19
	<dependencies defaultconf="default" defaultconfmapping="default->default">
20
		<!-- The core server part of Vaadin -->
21
		<dependency org="com.vaadin" name="vaadin-server" rev="&vaadin.version;" />
22

    
23
		<!-- Vaadin themes -->
24
		<dependency org="com.vaadin" name="vaadin-themes" rev="&vaadin.version;" />
25

    
26
		<!-- Push support -->
27
		<dependency org="com.vaadin" name="vaadin-push" rev="&vaadin.version;" />
28

    
29
		<!-- TestBench 4 -->
30
		<dependency org="com.vaadin" name="vaadin-testbench-api" rev="&vaadin.version;" conf="nodeploy -> default" />
31

    
32
		<!-- Precompiled DefaultWidgetSet -->
33
		<dependency org="com.vaadin" name="vaadin-client-compiled"
34
			rev="&vaadin.version;" />
35

    
36
		<!-- Vaadin client side, needed for widget set compilation -->
37
		<dependency org="com.vaadin" name="vaadin-client" rev="&vaadin.version;"
38
			 conf="widgetset-compile->default" />
39

    
40
		<!-- Compiler for custom widget sets. Should not be deployed -->
41
		<dependency org="com.vaadin" name="vaadin-client-compiler"
42
			rev="&vaadin.version;" conf="widgetset-compile->default" />
43
	</dependencies>
44
</ivy-module>
(4-4/6)