Vaadin version > 6.0.1 not rendering

Hi,

I’m starting with vaadin and glassfish v3. My app runs perfectly on vaadin version 6.0.1. I’ve tried to upgrade the vaadin version, see the problems below:

. version 6.1.2 - Nothing is being rendered and no errors.
. version 6.1.3 - Nothing is being rendered and no errors.
. version 6.2-dev - Nothing is being rendered and no errors.

I’ve tried to run on jetty 6.1 and same problem, i can’t see anything in my app, the page renders and nothing.

I developed a HelloWorld application, within:

/**
 * Init is invoked on application load (when a user accesses the application
 * for the first time).
 */
@Override
public void init() {
	System.out.println("initializing...");

    // Main window is the primary browser window
    final Window main = new Window("Hello window");
    setMainWindow(main);

    // "Hello world" text is added to window as a Label component
    main.addComponent(new Label("Hello World!"));
}

I can see the output on my console but (guess what) nothing is being rendered.

I don’t have a clue about this problem so I hope somebody can help me.

I’m using maven to build up my project:

	<dependency>
		<groupId>com.vaadin</groupId>
		<artifactId>vaadin</artifactId>
		<version>6.1.3</version>
		<scope>compile</scope>
	</dependency>

This is the only dependency (for tests purpose), I’ve installed the version 6.1.3 manually (couldn’t find in any maven repository).

My Environment:

Mac OS X Snow Leopard
Java™ SE Runtime Environment (build 1.6.0_15-b03-219)
Java HotSpot™ 64-Bit Server VM (build 14.1-b02-90, mixed mode)
Eclipse Galileu cocoa 64bits
GlassFish v3.0-b69 (build 69)
Vaadin 6.1.3 / 6.2.0-dev

Thanks in advance.

Problem Solved!!!

I realize that the old version (6.0.1) didn’t need to have the gwt dependency declared and the new versions does.

So i changed my pom to:



		<dependency>
			<groupId>com.vaadin</groupId>
			<artifactId>vaadin</artifactId>
			<version>6.2.0-SNAPSHOT</version>
			<scope>compile</scope>
		</dependency>
		<dependency>
			<groupId>com.google</groupId>
			<artifactId>gwt-user</artifactId>
			<version>1.7.1</version>
			<scope>compile</scope>
		</dependency>
		<dependency>
			<groupId>com.google</groupId>
			<artifactId>gwt-dev</artifactId>
			<version>1.7.1</version>
			<scope>runtime</scope>
			<classifier>mac</classifier>
		</dependency>

You just have to install each dependency manually.

Thanks.