[NOTICE] for 3.0.1-SNAPSHOT : Qooxdoo 1.0 released

3 posts / 0 new
Last post
vvandens
Offline
Joined: 05/29/2008
[NOTICE] for 3.0.1-SNAPSHOT : Qooxdoo 1.0 released

Dear Jspresso SNAPSHOT users,

Qooxdoo 1.0 has been released today. Jspresso now uses this new stable version which is a big step for this fantastic UI framework.

The good news is that you don't have anything to do to benefit from it on your existing Jspresso projects. Just issue a mvn clean package (clean is important once to get rid of the Qooxdoo cache whose structure changes from version to version) and you should be done. Whenever Maven does not automatically download the new 3.0.1-SNAPSHOT artifacts, force it with -U.

 

Best regards,

Vincent

jjjasont
Offline
Joined: 01/08/2010
Hi Vincent,   How can I

Hi Vincent,

 

How can I confirm if I am using 3.0.1 snapshot?

 

Regards,

Jason

vvandens
Offline
Joined: 05/29/2008
Several ways to go

Hi Jason,

Welcome to Jspresso !

There are several ways to check that you are on the snapshot :

  1. Open [your project root]/pom.xml and check that you have the <parent> section referencing either jspresso-dependency or jspresso-root with 3.0.1-SNAPSHOT version, e.g. :
      <parent>
    <groupId>org.jspresso.framework</groupId>
    <artifactId>jspresso-dependencies</artifactId>
    <version>3.0.1-SNAPSHOT</version>
    </parent>
  2. Perform a mvn clean package on your project and check that you only have 3.0.1-SNAPSHOT jspresso jars in [your project root]/target/eclipse-war-lib
  3. Perform a mvn help:effective-pom. It's quite verbose, so redirect it to a file. Then check that the result only contains references to 3.0.1-SNAPSHOT jspresso jars (no 3.0.0).

 

HTH,

Vincent