diff options
author | Matti Tahvonen <matti.tahvonen@itmill.com> | 2009-10-06 07:58:36 +0000 |
---|---|---|
committer | Matti Tahvonen <matti.tahvonen@itmill.com> | 2009-10-06 07:58:36 +0000 |
commit | eebf12833e059de5caf3dc52ef0ed7ed67fde177 (patch) | |
tree | 20a078e3a6a5d3e419df2329073ad22f66c62ee2 /src/com/vaadin/tools | |
parent | 43467c624d543a25bce4fc3fd7963777851ac657 (diff) | |
download | vaadin-framework-eebf12833e059de5caf3dc52ef0ed7ed67fde177.tar.gz vaadin-framework-eebf12833e059de5caf3dc52ef0ed7ed67fde177.zip |
widget packaging
svn changeset:9093/svn branch:2009-09-widget-packaging_3332
Diffstat (limited to 'src/com/vaadin/tools')
-rw-r--r-- | src/com/vaadin/tools/WidgetsetCompiler.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/com/vaadin/tools/WidgetsetCompiler.java b/src/com/vaadin/tools/WidgetsetCompiler.java index 0421164873..ce7ab37625 100644 --- a/src/com/vaadin/tools/WidgetsetCompiler.java +++ b/src/com/vaadin/tools/WidgetsetCompiler.java @@ -2,6 +2,8 @@ package com.vaadin.tools; import java.lang.reflect.Method;
+import com.vaadin.terminal.gwt.widgetsetutils.WidgetSetBuilder;
+
/**
* A wrapper for the GWT 1.6 compiler that runs the compiler in a new thread.
*
@@ -44,6 +46,13 @@ public class WidgetsetCompiler { try {
// GWTCompiler.main(args);
// avoid warnings
+
+ String wsname = args[args.length - 1];
+
+ // TODO expecting this is launched via eclipse WTP
+ // project
+ WidgetSetBuilder.updateWidgetSet(wsname, "src");
+
System.setProperty("gwt.nowarn.legacy.tools", "true");
Class<?> compilerClass = Class
.forName("com.google.gwt.dev.GWTCompiler");
|