summaryrefslogtreecommitdiffstats
path: root/server/ivy.xml
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-09-04 16:23:49 +0300
committerArtur Signell <artur@vaadin.com>2012-09-09 11:23:18 +0300
commit45e4dc9fdcc96da44c0b96fde0bc146d8915041b (patch)
tree60593f46a2d3e275a0bd39207360e8714eac62bc /server/ivy.xml
parent91d8fdedbed70a291eb324fc4db187b77ab7d221 (diff)
downloadvaadin-framework-45e4dc9fdcc96da44c0b96fde0bc146d8915041b.tar.gz
vaadin-framework-45e4dc9fdcc96da44c0b96fde0bc146d8915041b.zip
Ensure required jars are available when running tests (#9299)
Diffstat (limited to 'server/ivy.xml')
-rw-r--r--server/ivy.xml11
1 files changed, 8 insertions, 3 deletions
diff --git a/server/ivy.xml b/server/ivy.xml
index e6f3d60de6..c0951e90a3 100644
--- a/server/ivy.xml
+++ b/server/ivy.xml
@@ -9,8 +9,8 @@
<configurations>
<conf name="build" />
<conf name="build-provided" />
- <conf name="ide" visibility="private"/>
- <conf name="tests" visibility="private"/>
+ <conf name="ide" visibility="private" />
+ <conf name="tests" visibility="private" />
</configurations>
<publications>
<artifact></artifact>
@@ -42,7 +42,7 @@
<!-- Jsoup for BootstrapHandler -->
<dependency org="org.jsoup" name="jsoup" rev="1.6.3"
- conf="build,ide -> default" />
+ conf="build,ide,tests -> default" />
<!-- TESTING DEPENDENCIES -->
@@ -57,6 +57,11 @@
conf="tests->default" />
<dependency org="commons-lang" name="commons-lang"
rev="2.3" conf="tests,ide->default" />
+ <!-- Bean Validation implementation -->
+ <dependency org="org.slf4j" name="slf4j-log4j12" rev="1.6.1"
+ conf="tests -> default" />
+ <dependency org="org.hibernate" name="hibernate-validator"
+ rev="4.2.0.Final" conf="tests -> default" />
</dependencies>