summaryrefslogtreecommitdiffstats
path: root/pom.xml
blob: 5319f3089f01eca1b8f3759bef8e80cf8caaeff3 (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
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<parent>
		<groupId>com.vaadin</groupId>
		<artifactId>vaadin-parent</artifactId>
		<version>1.0.0</version>
	</parent>
	<groupId>com.vaadin</groupId>
	<artifactId>vaadin-root</artifactId>
	<name>vaadin-root</name>
	<packaging>pom</packaging>
	<version>7.7.0-SNAPSHOT</version>

	<properties>
		<maven.compiler.source>1.6</maven.compiler.source>
		<maven.compiler.target>1.6</maven.compiler.target>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

		<!-- Used version numbers for dependencies -->
		<commons-io.version>2.4</commons-io.version>
		<google.appengine.version>1.7.7</google.appengine.version>
		<guava.version>16.0.1.vaadin1</guava.version>
		<jsoup.version>1.8.3</jsoup.version>
		<liferay.portal.version>6.0.2</liferay.portal.version>

		<vaadin.sass.version>0.9.13</vaadin.sass.version>
		<vaadin.gwt.version>2.7.0.vaadin3</vaadin.gwt.version>

		<javax.portlet.version>2.0</javax.portlet.version>
		<javax.servlet.version>3.0.1</javax.servlet.version>
		<javax.validation.version>1.0.0.GA</javax.validation.version>

		<!-- Test dependencies -->
		<junit.version>4.11</junit.version>

		<!-- Atmosphere versions -->
		<atmosphere.runtime.version>2.2.7.vaadin1</atmosphere.runtime.version>
		<atmosphere.js.version>2.2.6.vaadin4</atmosphere.js.version>
	</properties>

	<organization>
		<name>Vaadin Ltd</name>
	</organization>
	<url>https://vaadin.com/</url>
	<description>Vaadin Framework Root Pom</description>

	<modules>
		<module>bom</module>
		<module>shared</module>
		<module>push</module>
		<module>server</module>
		<module>client</module>
		<module>client-compiler</module>
	</modules>

</project>