]> source.dussan.org Git - vaadin-framework.git/commitdiff
Moved ide.xml dependencies to separate file
authorArtur Signell <artur@vaadin.com>
Wed, 12 Sep 2012 07:44:01 +0000 (10:44 +0300)
committerArtur Signell <artur@vaadin.com>
Wed, 12 Sep 2012 07:51:14 +0000 (10:51 +0300)
build/ide.xml
build/ivy-ide.xml [new file with mode: 0755]

index 707fcaa956352408c145937a3c8658461b7c5c24..3390bb8e4aa7eab4427a171caf0be71e8966c9e0 100755 (executable)
        <property name="theme-version" location="9.9.9.INTERNAL-DEBUG-BUILD" />
        <echo>Using gwt-dev.jar from ${gwt.dev.jar}</echo>
 
-       <ivy:cachepath pathid="ivy.deps" inline="true" organisation="javax.validation" module="validation-api" revision="1.0.0.GA" conf="default,sources" />
-       <ivy:cachepath pathid="ivy.deps2" inline="true" organisation="commons-cli" module="commons-cli" revision="1.2" conf="default" />
-       <ivy:cachepath pathid="ivy.deps3" inline="true" organisation="org.apache.commons" module="commons-jexl" revision="2.1.1" conf="default" />
+       <ivy:resolve file="build/ivy-ide.xml" />
+       <ivy:cachepath pathid="ivy.deps" conf="default" />
 
        <path id="classpath">
                <pathelement location="${gwt.user.jar}" />
                <pathelement location="${gwt.dev.jar}" />
                <path refid="ivy.deps" />
-               <path refid="ivy.deps2" />
-               <path refid="ivy.deps3" />
                <path location="bin" />
                <path location="build/classes" />
                <path location="server/src" />
diff --git a/build/ivy-ide.xml b/build/ivy-ide.xml
new file mode 100755 (executable)
index 0000000..aac387e
--- /dev/null
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<ivy-module version="2.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:noNamespaceSchemaLocation="http://ant.apache.org/ivy/schemas/ivy.xsd">
+
+    <info organisation="com.vaadin" module="vaadin-client"
+        revision="${vaadin.version}" />
+
+    <configurations>
+        <conf name="default" />
+    </configurations>
+    <publications>
+    </publications>
+    <dependencies defaultconf="default" defaultconfmapping="default->default">
+        <dependency org="javax.validation" name="validation-api"
+            rev="1.0.0.GA" conf="default -> default,sources" />
+        <dependency org="commons-cli" name="commons-cli" rev="1.2" />
+        <dependency org="org.apache.commons" name="commons-jexl"
+            rev="2.1.1" />
+
+    </dependencies>
+
+</ivy-module>