aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--all/pom.xml2
-rw-r--r--bom/pom.xml2
-rw-r--r--buildhelpers/pom.xml2
-rw-r--r--client-compiled/pom.xml2
-rw-r--r--client-compiler/pom.xml2
-rw-r--r--client/pom.xml2
-rw-r--r--liferay/pom.xml2
-rw-r--r--pom.xml12
-rw-r--r--push/pom.xml2
-rw-r--r--server/pom.xml2
-rw-r--r--shared/pom.xml2
-rw-r--r--themes/pom.xml2
-rw-r--r--uitest/pom.xml2
-rw-r--r--uitest/src/test/java/com/vaadin/tests/VerifyJreVersionTest.java2
-rw-r--r--widgets/pom.xml2
15 files changed, 20 insertions, 20 deletions
diff --git a/all/pom.xml b/all/pom.xml
index 7742b54f7d..4adf25b7e7 100644
--- a/all/pom.xml
+++ b/all/pom.xml
@@ -5,7 +5,7 @@
<parent>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-root</artifactId>
- <version>7.7.0-SNAPSHOT</version>
+ <version>8.0-SNAPSHOT</version>
</parent>
<artifactId>vaadin-all</artifactId>
<name>vaadin-all</name>
diff --git a/bom/pom.xml b/bom/pom.xml
index 124b604382..04f8c370fd 100644
--- a/bom/pom.xml
+++ b/bom/pom.xml
@@ -4,7 +4,7 @@
<parent>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-root</artifactId>
- <version>7.7.0-SNAPSHOT</version>
+ <version>8.0-SNAPSHOT</version>
</parent>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-bom</artifactId>
diff --git a/buildhelpers/pom.xml b/buildhelpers/pom.xml
index cfe8187c11..66ef8c4de6 100644
--- a/buildhelpers/pom.xml
+++ b/buildhelpers/pom.xml
@@ -5,7 +5,7 @@
<parent>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-root</artifactId>
- <version>7.7.0-SNAPSHOT</version>
+ <version>8.0-SNAPSHOT</version>
</parent>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-buildhelpers</artifactId>
diff --git a/client-compiled/pom.xml b/client-compiled/pom.xml
index 63c045e2a9..97fd8fa575 100644
--- a/client-compiled/pom.xml
+++ b/client-compiled/pom.xml
@@ -5,7 +5,7 @@
<parent>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-root</artifactId>
- <version>7.7.0-SNAPSHOT</version>
+ <version>8.0-SNAPSHOT</version>
</parent>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-client-compiled</artifactId>
diff --git a/client-compiler/pom.xml b/client-compiler/pom.xml
index 4564bfb0a5..93a70a464b 100644
--- a/client-compiler/pom.xml
+++ b/client-compiler/pom.xml
@@ -5,7 +5,7 @@
<parent>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-root</artifactId>
- <version>7.7.0-SNAPSHOT</version>
+ <version>8.0-SNAPSHOT</version>
</parent>
<artifactId>vaadin-client-compiler</artifactId>
<name>vaadin-client-compiler</name>
diff --git a/client/pom.xml b/client/pom.xml
index a980c97162..eb89eea11e 100644
--- a/client/pom.xml
+++ b/client/pom.xml
@@ -5,7 +5,7 @@
<parent>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-root</artifactId>
- <version>7.7.0-SNAPSHOT</version>
+ <version>8.0-SNAPSHOT</version>
</parent>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-client</artifactId>
diff --git a/liferay/pom.xml b/liferay/pom.xml
index df42599fda..6aabab959f 100644
--- a/liferay/pom.xml
+++ b/liferay/pom.xml
@@ -5,7 +5,7 @@
<parent>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-root</artifactId>
- <version>7.7.0-SNAPSHOT</version>
+ <version>8.0-SNAPSHOT</version>
</parent>
<artifactId>vaadin-liferay</artifactId>
<name>vaadin-liferay</name>
diff --git a/pom.xml b/pom.xml
index 5f5eac095d..b61ffa49f4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -11,15 +11,15 @@
<artifactId>vaadin-root</artifactId>
<name>vaadin-root</name>
<packaging>pom</packaging>
- <version>7.7.0-SNAPSHOT</version>
+ <version>8.0-SNAPSHOT</version>
<prerequisites>
<maven>3.0.5</maven>
</prerequisites>
<properties>
- <maven.compiler.source>1.6</maven.compiler.source>
- <maven.compiler.target>1.6</maven.compiler.target>
+ <maven.compiler.source>1.8</maven.compiler.source>
+ <maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- Used version numbers for dependencies -->
@@ -243,13 +243,13 @@
</goals>
</execution>
</executions>
- </plugin>
+ </plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-maven-plugin</artifactId>
<executions>
<execution>
- <id>java6compatibility</id>
+ <id>java8compatibility</id>
<phase>test</phase>
<goals>
<goal>check</goal>
@@ -257,7 +257,7 @@
<configuration>
<signature>
<groupId>org.codehaus.mojo.signature</groupId>
- <artifactId>java16</artifactId>
+ <artifactId>java18</artifactId>
<version>1.0</version>
</signature>
<ignores>
diff --git a/push/pom.xml b/push/pom.xml
index d1ebfd4e4e..1ae24ba2aa 100644
--- a/push/pom.xml
+++ b/push/pom.xml
@@ -5,7 +5,7 @@
<parent>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-root</artifactId>
- <version>7.7.0-SNAPSHOT</version>
+ <version>8.0-SNAPSHOT</version>
</parent>
<artifactId>vaadin-push</artifactId>
<name>vaadin-push</name>
diff --git a/server/pom.xml b/server/pom.xml
index 824d272222..c9c435b918 100644
--- a/server/pom.xml
+++ b/server/pom.xml
@@ -5,7 +5,7 @@
<parent>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-root</artifactId>
- <version>7.7.0-SNAPSHOT</version>
+ <version>8.0-SNAPSHOT</version>
</parent>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-server</artifactId>
diff --git a/shared/pom.xml b/shared/pom.xml
index 4f4037c371..cfd09f8d36 100644
--- a/shared/pom.xml
+++ b/shared/pom.xml
@@ -5,7 +5,7 @@
<parent>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-root</artifactId>
- <version>7.7.0-SNAPSHOT</version>
+ <version>8.0-SNAPSHOT</version>
</parent>
<artifactId>vaadin-shared</artifactId>
<name>vaadin-shared</name>
diff --git a/themes/pom.xml b/themes/pom.xml
index 6c621204b9..7c665542bb 100644
--- a/themes/pom.xml
+++ b/themes/pom.xml
@@ -5,7 +5,7 @@
<parent>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-root</artifactId>
- <version>7.7.0-SNAPSHOT</version>
+ <version>8.0-SNAPSHOT</version>
</parent>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-themes</artifactId>
diff --git a/uitest/pom.xml b/uitest/pom.xml
index 866c45a273..450b2239d7 100644
--- a/uitest/pom.xml
+++ b/uitest/pom.xml
@@ -5,7 +5,7 @@
<parent>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-root</artifactId>
- <version>7.7.0-SNAPSHOT</version>
+ <version>8.0-SNAPSHOT</version>
</parent>
<artifactId>vaadin-uitest</artifactId>
<name>vaadin-uitest</name>
diff --git a/uitest/src/test/java/com/vaadin/tests/VerifyJreVersionTest.java b/uitest/src/test/java/com/vaadin/tests/VerifyJreVersionTest.java
index b78a4ad314..fa8d21d965 100644
--- a/uitest/src/test/java/com/vaadin/tests/VerifyJreVersionTest.java
+++ b/uitest/src/test/java/com/vaadin/tests/VerifyJreVersionTest.java
@@ -32,7 +32,7 @@ public class VerifyJreVersionTest extends SingleBrowserTest {
WebElement jreVersionLabel = vaadinElementById("jreVersionLabel");
assertThat(jreVersionLabel.getText(),
- is("Using Java 1.6.0_45 by Sun Microsystems Inc."));
+ is("Using Java 1.8.0_60 by Oracle Corporation"));
}
}
diff --git a/widgets/pom.xml b/widgets/pom.xml
index b971da479a..33a60b832b 100644
--- a/widgets/pom.xml
+++ b/widgets/pom.xml
@@ -5,7 +5,7 @@
<parent>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-root</artifactId>
- <version>7.7.0-SNAPSHOT</version>
+ <version>8.0-SNAPSHOT</version>
</parent>
<artifactId>vaadin-widgets</artifactId>
<name>vaadin-widgets</name>