diff options
author | Marko Grönroos <magi@iki.fi> | 2009-02-09 12:40:16 +0000 |
---|---|---|
committer | Marko Grönroos <magi@iki.fi> | 2009-02-09 12:40:16 +0000 |
commit | 572a3a1e6485cbd6b4484b1bdb3f3c5461a95905 (patch) | |
tree | 003ee1a5aa4bcfbb36ffdbe9ef8e949fec2fdc9e /build/package | |
parent | 968543e763cb6e5e7a8bc06cfe6061a04d3ace29 (diff) | |
download | vaadin-framework-572a3a1e6485cbd6b4484b1bdb3f3c5461a95905.tar.gz vaadin-framework-572a3a1e6485cbd6b4484b1bdb3f3c5461a95905.zip |
Demo and QuickStart fixes: use UTF-8 encoding for source files (#2544) and include source path in demo launch scripts and Eclipse launch classpath (#2265). Finishes #2349.
svn changeset:6763/svn branch:trunk
Diffstat (limited to 'build/package')
-rw-r--r-- | build/package/eclipse-IT Mill Toolkit Web Mode-launch | 6 | ||||
-rw-r--r-- | build/package/eclipse-org.eclipse.core.resources.prefs | 3 | ||||
-rw-r--r-- | build/package/start.bat | 2 | ||||
-rw-r--r-- | build/package/start.sh | 2 |
4 files changed, 11 insertions, 2 deletions
diff --git a/build/package/eclipse-IT Mill Toolkit Web Mode-launch b/build/package/eclipse-IT Mill Toolkit Web Mode-launch index 2c60ed49d3..ab9efe4b1d 100644 --- a/build/package/eclipse-IT Mill Toolkit Web Mode-launch +++ b/build/package/eclipse-IT Mill Toolkit Web Mode-launch @@ -12,6 +12,12 @@ <listEntry value="org.eclipse.debug.ui.launchGroup.run"/> <listEntry value="org.eclipse.debug.ui.launchGroup.debug"/> </listAttribute> +<listAttribute key="org.eclipse.jdt.launching.CLASSPATH"> +<listEntry value="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <runtimeClasspathEntry containerPath="org.eclipse.jdt.launching.JRE_CONTAINER" javaProject="itmill-toolkit-examples" path="1" type="4"/> "/> +<listEntry value="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <runtimeClasspathEntry id="org.eclipse.jdt.launching.classpathentry.defaultClasspath"> <memento exportedEntriesOnly="false" project="itmill-toolkit-examples"/> </runtimeClasspathEntry> "/> +<listEntry value="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <runtimeClasspathEntry internalArchive="/itmill-toolkit-examples/WebContent/WEB-INF/src" path="3" type="2"/> "/> +</listAttribute> +<booleanAttribute key="org.eclipse.jdt.launching.DEFAULT_CLASSPATH" value="false"/> <stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="com.itmill.toolkit.launcher.ITMillToolkitWebMode"/> <stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="<eclipse-workspace-name></eclipse-workspace-name>"/> </launchConfiguration> diff --git a/build/package/eclipse-org.eclipse.core.resources.prefs b/build/package/eclipse-org.eclipse.core.resources.prefs new file mode 100644 index 0000000000..bedbb5be74 --- /dev/null +++ b/build/package/eclipse-org.eclipse.core.resources.prefs @@ -0,0 +1,3 @@ +#Mon Feb 09 04:14:03 EET 2009 +eclipse.preferences.version=1 +encoding/<project>=UTF-8 diff --git a/build/package/start.bat b/build/package/start.bat index 6bb33d5de1..004df31251 100644 --- a/build/package/start.bat +++ b/build/package/start.bat @@ -1 +1 @@ -@java -cp "WebContent\demo\lib\jetty\jetty-6.1.7.jar;WebContent\demo\lib\jetty\jetty-util-6.1.7.jar;WebContent\demo\lib\jetty\servlet-api-2.5-6.1.7.jar;WebContent\WEB-INF\classes" com.itmill.toolkit.launcher.ITMillToolkitDesktopMode
+@java -cp "WebContent\demo\lib\jetty\jetty-6.1.7.jar;WebContent\demo\lib\jetty\jetty-util-6.1.7.jar;WebContent\demo\lib\jetty\servlet-api-2.5-6.1.7.jar;WebContent\WEB-INF\classes;WebContent\WEB-INF\src" com.itmill.toolkit.launcher.ITMillToolkitDesktopMode
diff --git a/build/package/start.sh b/build/package/start.sh index 95b3d60bee..448d318415 100644 --- a/build/package/start.sh +++ b/build/package/start.sh @@ -4,4 +4,4 @@ if [ "$1" != "" ] ; then cd $1 fi -java -cp WebContent/demo/lib/jetty/jetty-6.1.7.jar:WebContent/demo/lib/jetty/jetty-util-6.1.7.jar:WebContent/demo/lib/jetty/servlet-api-2.5-6.1.7.jar:WebContent/WEB-INF/classes com.itmill.toolkit.launcher.ITMillToolkitDesktopMode +java -cp WebContent/demo/lib/jetty/jetty-6.1.7.jar:WebContent/demo/lib/jetty/jetty-util-6.1.7.jar:WebContent/demo/lib/jetty/servlet-api-2.5-6.1.7.jar:WebContent/WEB-INF/classes:WebContent/WEB-INF/src com.itmill.toolkit.launcher.ITMillToolkitDesktopMode |