summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-09-12 10:44:01 +0300
committerArtur Signell <artur@vaadin.com>2012-09-12 10:51:14 +0300
commitfc2bc2868bc10553c20688012e42f2bba9a64272 (patch)
treea23d4810fba6cbcdc787b89bc377ee247b682eea /build
parentb27bfc157938ab59affd893f86e69d217eea5cbe (diff)
downloadvaadin-framework-fc2bc2868bc10553c20688012e42f2bba9a64272.tar.gz
vaadin-framework-fc2bc2868bc10553c20688012e42f2bba9a64272.zip
Moved ide.xml dependencies to separate file
Diffstat (limited to 'build')
-rwxr-xr-xbuild/ide.xml7
-rwxr-xr-xbuild/ivy-ide.xml23
2 files changed, 25 insertions, 5 deletions
diff --git a/build/ide.xml b/build/ide.xml
index 707fcaa956..3390bb8e4a 100755
--- a/build/ide.xml
+++ b/build/ide.xml
@@ -10,16 +10,13 @@
<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
index 0000000000..aac387e3d2
--- /dev/null
+++ b/build/ivy-ide.xml
@@ -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>