diff options
author | Taras Hupalo <taras.hupalo@gmail.com> | 2014-08-12 15:28:41 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2014-08-26 09:51:15 +0000 |
commit | f2551a9fc03636deb5fcd3f30c761dca946c8341 (patch) | |
tree | b59bc2c5ea1f7471dec4ef59826614b4f6d0adbf /gwt-files.xml | |
parent | c8d58261954de18ef67eaf9043bd93360202cf06 (diff) | |
download | vaadin-framework-f2551a9fc03636deb5fcd3f30c761dca946c8341.tar.gz vaadin-framework-f2551a9fc03636deb5fcd3f30c761dca946c8341.zip |
replaced all org.json.* usages with elemental.json.* (#8942)
Change-Id: I4809fbbdb48f3e36c8e1da8552ff3fa734714105
Diffstat (limited to 'gwt-files.xml')
-rw-r--r-- | gwt-files.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gwt-files.xml b/gwt-files.xml index 4a8486ab55..c0ef583177 100644 --- a/gwt-files.xml +++ b/gwt-files.xml @@ -182,6 +182,13 @@ <include name="com/google/gwt/user/client/rpc/IsSerializable.*" /> </fileset> + <!-- GWT Elemental --> + <fileset dir="${gwt.elemental.jar.files}"> + <include name="elemental/util/Array*" /> + <include name="elemental/util/Can*" /> + <include name="elemental/util/Map*" /> + <include name="elemental/json/**" /> + </fileset> </union> <union id="server.gwt.includes"> @@ -189,5 +196,10 @@ <!-- Server files from gwt-user --> <include name="com/google/gwt/*/server/**" /> </fileset> + <!-- GWT Elemental --> + <fileset dir="${gwt.elemental.jar.files}"> + <exclude name="META-INF/**" /> + <exclude name="super/**" /> + </fileset> </union> </project> |