summaryrefslogtreecommitdiffstats
path: root/server/pom.xml
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2016-08-18 19:21:32 +0300
committerArtur Signell <artur@vaadin.com>2016-08-18 20:05:57 +0300
commite10ec4ca0d5ff06f5dacc790d58c6390ba21675d (patch)
tree15859bb0be8d0dcc45640c622067c70c9040b2f0 /server/pom.xml
parent470deb3e15d96388049f2acb6278a2af4bc81155 (diff)
downloadvaadin-framework-e10ec4ca0d5ff06f5dacc790d58c6390ba21675d.tar.gz
vaadin-framework-e10ec4ca0d5ff06f5dacc790d58c6390ba21675d.zip
Define dependency version in the main pom file
Change-Id: Id603133355b1cb398bcb880e693dd3c8276f7937
Diffstat (limited to 'server/pom.xml')
-rw-r--r--server/pom.xml26
1 files changed, 5 insertions, 21 deletions
diff --git a/server/pom.xml b/server/pom.xml
index 111c7fa996..68db722ef8 100644
--- a/server/pom.xml
+++ b/server/pom.xml
@@ -26,19 +26,17 @@
<scope>provided</scope>
</dependency>
- <!--Servlet API version 3.0 -->
+ <!--Servlet API -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
- <version>${javax.servlet.version}</version>
<scope>provided</scope>
</dependency>
- <!--Portlet API version 2.0 (JSR-286) -->
+ <!--Portlet API -->
<dependency>
<groupId>javax.portlet</groupId>
<artifactId>portlet-api</artifactId>
- <version>${javax.portlet.version}</version>
<scope>provided</scope>
</dependency>
@@ -46,7 +44,6 @@
<dependency>
<groupId>com.google.appengine</groupId>
<artifactId>appengine-api-1.0-sdk</artifactId>
- <version>${google.appengine.version}</version>
<scope>provided</scope>
</dependency>
@@ -54,26 +51,24 @@
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
- <version>${javax.validation.version}</version>
<scope>provided</scope>
</dependency>
<!-- Sass compiler -->
<dependency>
- <groupId>com.vaadin</groupId>
+ <groupId>${project.groupId}</groupId>
<artifactId>vaadin-sass-compiler</artifactId>
- <version>${vaadin.sass.version}</version>
</dependency>
<!-- LIBRARY DEPENDENCIES (compile time) -->
<!-- Project modules -->
<dependency>
- <groupId>com.vaadin</groupId>
+ <groupId>${project.groupId}</groupId>
<artifactId>vaadin-shared</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
- <groupId>com.vaadin</groupId>
+ <groupId>${project.groupId}</groupId>
<artifactId>vaadin-push</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
@@ -83,7 +78,6 @@
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
- <version>${jsoup.version}</version>
</dependency>
<!-- TESTING DEPENDENCIES -->
@@ -92,56 +86,46 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
- <version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
- <version>1.9.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
- <version>1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
- <version>3.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
- <version>2.2.6</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
- <version>${commons-io.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
- <version>2.6</version>
<scope>test</scope>
</dependency>
- <!-- Bean Validation implementation -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
- <version>1.6.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
- <version>4.2.0.Final</version>
<scope>test</scope>
</dependency>