Results 1 to 10 of 10

Thread: Spring Test MVC release date?

  1. #1
    Join Date
    Jan 2012
    Posts
    1

    Default Spring Test MVC release date?

    Is there a timeline for releasing the spring-test-mvc project [1]? Have there been any plans on doing a beta release?

    [1] https://github.com/SpringSource/spring-test-mvc

  2. #2
    Join Date
    Aug 2006
    Location
    Brooklyn
    Posts
    556

    Default

    We'll make a milestone release available soon so you can lock into a specific version vs relying on the nightly snapshot. The code will eventually be added to Spring 3.2.

  3. #3

    Default

    The code will eventually be added to Spring 3.2.
    Spring 3.2 seems like a long ways out. Spring-test-mvc is very useful, but milestone releases are a tough sell in a lot of enterprise projects. Is there any chance this will get versioned and released stand-alone before 3.2?

  4. #4
    Join Date
    Aug 2006
    Location
    Brooklyn
    Posts
    556

    Default

    We'll see what we can do ... if it gets to a point where we can call it a 1.0 release before Spring 3.2 is out.

  5. #5
    Join Date
    Feb 2012
    Posts
    2

    Default

    many thanks for the project, coming from places like rails, it is so nice to be able to test your controllers end to end in spring as well.

    i, however, had to pull it out from our project for the time being and remove all the tests, since we cannot release with a SNAPSHOT dependency.

    so yes, waiting anxiously for a release.

  6. #6
    Join Date
    Aug 2006
    Location
    Brooklyn
    Posts
    556

    Default

    you're welcome and thanks for the feedback!

  7. #7
    Join Date
    May 2008
    Location
    UK
    Posts
    24

    Default

    Upvote for this too. We are interested in spring-test-mvc for testing our application - but can not go with a SNAPSHOT dependency.

    See also:

    https://jira.springsource.org/browse/SPR-9211

  8. #8
    Join Date
    Feb 2011
    Posts
    9

    Default

    Hi Rossen,

    has there been any updates regarding the issue SPR-9211 ?

    Thanks,

  9. #9
    Join Date
    Jun 2011
    Posts
    8

    Default

    The Spring Framework 3.2 M1 milestone was released today. Regrettably, spring-test-mvc does not seem to be included in that release. I tried to add the following lines to my pom:

    Code:
    <repositories>
        <repository>
            <id>repository.springframework.milestone</id>
            <name>Spring Framework Maven Milestone Repository</name>
            <url>http://maven.springframework.org/milestone</url>
        </repository>
    </repositories>
    
    <!-- more xml -->
    
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-test-mvc</artifactId>
        <version>3.2.0.M1</version>
        <scope>test</scope>
    </dependency>
    Maven successfully downloaded and installed other Spring 3.2.0.M1 artifacts, but failed to resolve the spring-test-mvc dependency.
    Last edited by matsev; May 29th, 2012 at 01:46 PM.

  10. #10
    Join Date
    Aug 2012
    Posts
    1

    Default

    Quote Originally Posted by matsev View Post
    The Spring Framework 3.2 M1 milestone was released today. Regrettably, spring-test-mvc does not seem to be included in that release. I tried to add the following lines to my pom:

    Code:
    <repositories>
        <repository>
            <id>repository.springframework.milestone</id>
            <name>Spring Framework Maven Milestone Repository</name>
            <url>http://maven.springframework.org/milestone</url>
        </repository>
    </repositories>
    
    <!-- more xml -->
    
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-test-mvc</artifactId>
        <version>3.2.0.M1</version>
        <scope>test</scope>
    </dependency>
    Maven successfully downloaded and installed other Spring 3.2.0.M1 artifacts, but failed to resolve the spring-test-mvc dependency.
    The current version is 1.0.0.M1 as specified here

    Check the Repository for yourself: http://maven.springframework.org/mil...ring-test-mvc/

Tags for this Thread

Posting Permissions

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