diff options
author | Henri Sara <hesara@vaadin.com> | 2016-04-22 21:23:01 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2016-04-25 09:19:12 +0000 |
commit | 6a89c2fae342401f99c591cfc2b2549f4e675e81 (patch) | |
tree | 0598a7b9d3452c118e3ef479a03cef0f4475aa89 /client | |
parent | 204afbceaaa459bc0f0d3fa05d7213378b261cf0 (diff) | |
download | vaadin-framework-6a89c2fae342401f99c591cfc2b2549f4e675e81.tar.gz vaadin-framework-6a89c2fae342401f99c591cfc2b2549f4e675e81.zip |
Check Java 1.6 compatibility
Ensure that server side classes are compatible with Java 1.6.
Change-Id: I464096bbb316769a4c2fede55d7bcb11ce61e4f0
Diffstat (limited to 'client')
-rw-r--r-- | client/pom.xml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/client/pom.xml b/client/pom.xml index dcf190c7f0..0c4cf1d7ce 100644 --- a/client/pom.xml +++ b/client/pom.xml @@ -201,6 +201,14 @@ </plugin> <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>animal-sniffer-maven-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + + <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> </plugin> |