Page 2 of 2 FirstFirst 12
Results 11 to 17 of 17

Thread: Spring Integration and Maven

  1. #11
    Join Date
    Oct 2005
    Location
    Boston, MA
    Posts
    2,840

    Default

    It's a very minor thing, but the version should have an uppercase M: <version>1.0.0.M5</version>

  2. #12
    Join Date
    Sep 2007
    Posts
    21

    Default

    apologies for the typo..
    had tried with
    Code:
    <version>1.0.0.M5</version>
    but gettting the same error.

  3. #13
    Join Date
    Aug 2008
    Posts
    15

    Default

    It works for me, except that org.springframework.integration.adapter does not seem to be present in the repository!

  4. #14
    Join Date
    Sep 2007
    Posts
    21

    Default

    could you please post in your repository? because i can browse ,find,download the integration.adapter jars and integration jars without problems using a normal web browser.
    It is only through maven i have the error.

  5. #15
    Join Date
    Oct 2005
    Location
    Boston, MA
    Posts
    2,840

    Default

    I just looked at your configuration again and noticed that the repository URL is incorrect. The "s3browse" URL is for browsing the repository only. For the maven repository configuration, try this instead:
    Code:
    <repository>
        <id>springsource-milestone</id>
        <url>http://repository.springsource.com/maven/bundles/milestone</url>
    </repository>

  6. #16
    Join Date
    Aug 2008
    Posts
    15

    Default

    It works! Thanks a lot.

  7. #17
    Join Date
    Sep 2007
    Posts
    21

    Default

    thanks a million.

Posting Permissions

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