diff options
author | Mikael Vappula <mikael@vaadin.com> | 2011-12-02 15:05:24 +0200 |
---|---|---|
committer | Mikael Vappula <mikael@vaadin.com> | 2011-12-02 15:05:24 +0200 |
commit | c1ac1f6b1f0675dece725c5b9d04a8823335cb09 (patch) | |
tree | 2f7eff34d3acba9e9ae2a02fedce6cfab29efa2f /tests/ivy.xml | |
parent | c7af8ee743fb3c86d6d369da153ff2a2404a0181 (diff) | |
download | vaadin-framework-c1ac1f6b1f0675dece725c5b9d04a8823335cb09.tar.gz vaadin-framework-c1ac1f6b1f0675dece725c5b9d04a8823335cb09.zip |
Cleaned up Ivy configuration
Targets related to Ivy configuration are now in separate common.xml file
which is imported to main build files.
Diffstat (limited to 'tests/ivy.xml')
-rw-r--r-- | tests/ivy.xml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/ivy.xml b/tests/ivy.xml index 3fdaf81ef1..6c7171166b 100644 --- a/tests/ivy.xml +++ b/tests/ivy.xml @@ -3,11 +3,14 @@ xsi:noNamespaceSchemaLocation= "http://ant.apache.org/ivy/schemas/ivy.xsd"> <info organisation="com.vaadin" module="tests"/> - <configurations defaultconfmapping="*->jetty"> + <configurations> <conf name="jetty" visibility="private" /> + <conf name="emma" visibility="private" /> + <conf name="server" visibility="private" /> </configurations> <publications /> <dependencies> - <dependency org="org.mortbay.jetty" name="jetty" rev="6.1.7" conf="jetty->default(*)" /> + <dependency org="org.mortbay.jetty" name="jetty" rev="6.1.7" conf="server,jetty->default(*)" /> + <dependency org="emma" name="emma" rev="2.0.5312-patched" conf="server,emma -> default(*)"/> </dependencies> </ivy-module>
\ No newline at end of file |