diff options
author | Artur Signell <artur@vaadin.com> | 2012-09-06 19:09:03 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-09-09 11:23:47 +0300 |
commit | 94b1759e67c07fbca4c7371b374da97feb0fe7e7 (patch) | |
tree | 8aa425b6aa274e63a8b34d49defa44786722ffe1 | |
parent | bbab36092aecd61b2718363b415052eba29b5b60 (diff) | |
download | vaadin-framework-94b1759e67c07fbca4c7371b374da97feb0fe7e7.tar.gz vaadin-framework-94b1759e67c07fbca4c7371b374da97feb0fe7e7.zip |
Moved validation dependency to compiler (#9299)
-rw-r--r-- | client-compiled/ivy.xml | 2 | ||||
-rw-r--r-- | client-compiler/ivy.xml | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/client-compiled/ivy.xml b/client-compiled/ivy.xml index a136929929..7802775f70 100644 --- a/client-compiled/ivy.xml +++ b/client-compiled/ivy.xml @@ -27,8 +27,6 @@ rev="${vaadin.version}" conf="compile-module-> build" /> <dependency org="com.vaadin" name="vaadin-client-compiler" rev="${vaadin.version}" conf="compile-module-> build" /> - <dependency org="javax.validation" name="validation-api" - rev="1.0.0.GA" conf="compile-module-> default,sources" /> </dependencies> </ivy-module> diff --git a/client-compiler/ivy.xml b/client-compiler/ivy.xml index 3e8b46d77b..d57c3f700c 100644 --- a/client-compiler/ivy.xml +++ b/client-compiler/ivy.xml @@ -27,8 +27,10 @@ rev="${vaadin.version}" conf="build" /> <dependency org="commons-collections" name="commons-collections" rev="3.1" conf="build,ide -> default" /> - <dependency org="ant" name="ant" - rev="1.6.5" conf="build,ide -> default" /> + <dependency org="ant" name="ant" rev="1.6.5" + conf="build,ide -> default" /> + <dependency org="javax.validation" name="validation-api" + rev="1.0.0.GA" conf="build->default,sources" /> </dependencies> |