Results 1 to 8 of 8

Thread: When will M3 be released ?

  1. #1

    Default When will M3 be released ?

    HI,
    Thanks for the nice work. When will M3 be released ?

    I'm using M2 and I see some strange things like the SiteSwitcherHandlerInterceptor which has a static method taking as last argument a StandardSitePreferenceHandler parameter but which is not present in the M2 release and I see it's present in GIT.
    thx,
    Seb

  2. #2
    Join Date
    Aug 2004
    Location
    Melbourne, FL
    Posts
    2,794

    Default

    Good point. There one or minor things I'd like to add based on feedback, then I see no reason why we can't simply cut a M3 release next week. Have you tried upgrading to a nightly build in the meantime?

    Keith
    Keith Donald
    Core Spring Development Team

  3. #3

    Default

    Hi Keith,
    For the moment I don't want to rely on nightly builds because I retrieve the Spring Mobile Module from an "maven-based" dependency management mechanism. I'm building a Grails (which is also a SpringSource product) plugin which encapsulates your features. But I'm patient, I will wait for M3 and maybe join your GIT community, I've also pretty lot of experience in the Mobile Web area (I give a few talks about this topic in Groovy/Grails conferences) and maybe I can contribute if you want(offline caching, localStorage etc..).
    Cheers,
    Seb

  4. #4
    Join Date
    Aug 2004
    Location
    Melbourne, FL
    Posts
    2,794

    Default

    Hi Seb,
    You can of course grab the latest nightly snapshot from our maven.springframework.org/snapshots repository with the version 1.0.0.BUILD-SNAPSHOT. In any case though, we'll get M3 out next week for you.

    Keith
    Keith Donald
    Core Spring Development Team

  5. #5

    Default

    Thanks Keith !
    I will wait for M3, I just try the snapshots repo but I was unable to retrieve anything ...
    I stay tuned.

  6. #6
    Join Date
    Aug 2004
    Location
    Melbourne, FL
    Posts
    2,794

    Default

    Whoops, I got the snapshot URL repo wrong, it's:
    Code:
    <!-- For testing against latest Spring snapshots -->
    <repository>
        <id>org.springframework.maven.snapshot</id>
        <name>Spring Maven Snapshot Repository</name>
        <url>http://maven.springframework.org/snapshot</url>
        <releases><enabled>false</enabled></releases>			
        <snapshots><enabled>true</enabled></snapshots>
    </repository>
    Then to get the latest:

    Code:
    <dependency>
        <groupId>org.springframework.mobile</groupId>
        <artifactId>spring-mobile-device</artifactId>
        <version>1.0.0.BUILD-SNAPSHOT</version>
    </dependency>
    I should know better than to trust my memory
    Keith Donald
    Core Spring Development Team

  7. #7

    Default

    Well,
    it seems that grails has some issues retrieving snapshots version from maven repo ... So, I will wait for M3 but maybe I will release a first version that just cover the device resolver feature (what I think is the core feature of this module, no ?).
    Seb

  8. #8
    Join Date
    Aug 2004
    Location
    Melbourne, FL
    Posts
    2,794

    Default

    M3 is out now :-)
    Keith Donald
    Core Spring Development Team

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •