diff options
author | Jonatan Kronqvist <jonatan@vaadin.com> | 2014-04-03 11:15:40 +0300 |
---|---|---|
committer | Jonatan Kronqvist <jonatan@vaadin.com> | 2014-04-03 13:26:01 +0300 |
commit | 3efe81da8ba99d527a3caa210251aa0cd28f2f61 (patch) | |
tree | 4e939a078fffca6adf38d223023b89d98366d220 /client-compiler/ivy.xml | |
parent | 563b0ca0d8b7c085aa5a69a7afd352811979612b (diff) | |
download | vaadin-framework-3efe81da8ba99d527a3caa210251aa0cd28f2f61.tar.gz vaadin-framework-3efe81da8ba99d527a3caa210251aa0cd28f2f61.zip |
Override the cssparser dependency from sass-compiler (#13532)
vaadin-sass-compiler depends on an older version of cssparser than the
one used in client-compiler. This change overrides all sass-compiler
provided cssparser deps with the newer version.
Change-Id: I06d2b957d66dd3abbef161ae2643eec0cdf7e13a
Diffstat (limited to 'client-compiler/ivy.xml')
-rw-r--r-- | client-compiler/ivy.xml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/client-compiler/ivy.xml b/client-compiler/ivy.xml index bc50e2a93e..8c45597214 100644 --- a/client-compiler/ivy.xml +++ b/client-compiler/ivy.xml @@ -26,7 +26,10 @@ <dependency org="com.vaadin" name="vaadin-client" rev="${vaadin.version}" conf="build" /> <dependency org="com.vaadin" name="vaadin-sass-compiler" - rev="${vaadin.sass.version}" conf="build,ide->default" /> + rev="${vaadin.sass.version}" conf="build,ide->default"> + <!-- remove cssparser override once sass-compiler is updated --> + <exclude name="cssparser" /> + </dependency> <dependency org="commons-collections" name="commons-collections" rev="3.1" conf="build,ide -> default" /> |