diff options
author | Sauli Tähkäpää <sauli@vaadin.com> | 2014-03-25 21:01:59 +0200 |
---|---|---|
committer | Sauli Tähkäpää <sauli@vaadin.com> | 2014-03-29 14:12:47 +0200 |
commit | 8077db8d513396f451c0d8772b683faa83ceccc3 (patch) | |
tree | cbbfbd42bf9744bb34a0c035eb249fe6ef29bd5b /server | |
parent | 5b3ae6d62e5ff49ef0b204ed27b1004399a19aac (diff) | |
download | vaadin-framework-8077db8d513396f451c0d8772b683faa83ceccc3.tar.gz vaadin-framework-8077db8d513396f451c0d8772b683faa83ceccc3.zip |
Fixed pom fails in unit tests.
Change-Id: I0acbde16576dc26c36031038fe905695581c682d
Diffstat (limited to 'server')
-rw-r--r-- | server/ivy.xml | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/server/ivy.xml b/server/ivy.xml index 2967d25f32..638cc299d0 100644 --- a/server/ivy.xml +++ b/server/ivy.xml @@ -45,11 +45,17 @@ <!-- LIBRARY DEPENDENCIES (compile time) --> <!-- Project modules --> <dependency org="com.vaadin" name="vaadin-shared" - rev="${vaadin.version}" conf="build,test->build" /> + rev="${vaadin.version}" conf="build,test->build"> + <exclude type="pom" conf="test" /> + </dependency> <dependency org="com.vaadin" name="vaadin-theme-compiler" - rev="${vaadin.version}" conf="build,test->build" /> + rev="${vaadin.version}" conf="build,test->build"> + <exclude type="pom" conf="test" /> + </dependency> <dependency org="com.vaadin" name="vaadin-push" rev="${vaadin.version}" - conf="build-provided,test->build" /> + conf="build-provided,test->build"> + <exclude type="pom" conf="test" /> + </dependency> <!-- Jsoup for BootstrapHandler --> <dependency org="org.jsoup" name="jsoup" rev="1.6.3" |