diff options
author | Teemu Suo-Anttila <teemusa@vaadin.com> | 2016-03-31 12:12:14 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2016-03-31 09:59:37 +0000 |
commit | a82561b309f62cae4bce105403343e0b73998e64 (patch) | |
tree | 3cdbf86a74063bd8f3a2eb7b5f5188f1ac918f28 | |
parent | 13be45b2e74b0e77da4a97cf3c353cc761346f95 (diff) | |
download | vaadin-framework-a82561b309f62cae4bce105403343e0b73998e64.tar.gz vaadin-framework-a82561b309f62cae4bce105403343e0b73998e64.zip |
Fix build/ide.xml classpath
Change-Id: Id7fcb8e84ba0bf0f8863216f961845b9cefeb9f2
-rwxr-xr-x | build/ide.xml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/build/ide.xml b/build/ide.xml index c7cfee151c..e5d5479ed6 100755 --- a/build/ide.xml +++ b/build/ide.xml @@ -33,10 +33,11 @@ <path refid="buildhelpers.deps" /> <path refid="gwt.deps" /> <path refid="uitest.deps" /> - <path location="server/src" /> + <path location="server/src/main/java" /> <path location="shared/src/main/java" /> + <path location="shared/src/main/java-templates" /> <path location="uitest/src" /> - <path location="client/src" /> + <path location="client/src/main/java" /> </path> <property name="resolve.done" value="true" /> </target> |