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-compiler | |
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-compiler')
-rw-r--r-- | client-compiler/pom.xml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/client-compiler/pom.xml b/client-compiler/pom.xml index ebebfca387..30e51f4764 100644 --- a/client-compiler/pom.xml +++ b/client-compiler/pom.xml @@ -308,6 +308,13 @@ </configuration> </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> |