Results 1 to 6 of 6

Thread: Spring Integration 2.0.0.RELEASE

  1. #1
    Join Date
    Aug 2010
    Posts
    5

    Default Spring Integration 2.0.0.RELEASE

    Hi,
    I'm desperately looking for the spring integration 2.0.0 release in the EBR repository. I try to fix my maven configuration, but I'm not able to do that.

    Can someone help me, pointing me to a god explanation?

    Thanks mArkus

  2. #2
    Join Date
    Jan 2008
    Location
    Mohnton, PA USA (that's near Philadelphia)
    Posts
    2,148

    Default

    Its coming, but you can get it from here:

    Code:
    <repository>
    			<id>repository.springframework.maven.release</id>
    			<name>Spring Framework Maven Release Repository</name>
    			<url>http://maven.springframework.org/release</url>
    </repository>

  3. #3
    Join Date
    Nov 2010
    Posts
    7

    Default

    I am missing maven repository too. There is no key release at http://maven.springframework.org/

  4. #4
    Join Date
    Jan 2008
    Location
    Mohnton, PA USA (that's near Philadelphia)
    Posts
    2,148

    Default

    Have you actually tried it?
    When i say tried it I am not asking you to enter the above url in the browser, but actually configuring Maven repository in your pom.
    Our entire samples repo that has been around for quite a while is actually dependent on that. So i know for a fact that it works. In fact here is the repository configuration form oneof the sample projects:
    Code:
    </build>
    		<repositories>
    		<repository>
    			<id>repository.springframework.maven.release</id>
    			<name>Spring Framework Maven Release Repository</name>
    			<url>http://maven.springframework.org/release</url>
    		</repository>
    		<repository>
    			<id>repository.springframework.maven.milestone</id>
    			<name>Spring Framework Maven Milestone Repository</name>
    			<url>http://maven.springframework.org/milestone</url>
    		</repository>
    		<repository>
    			<id>repository.springframework.maven.snapshot</id>
    			<name>Spring Framework Maven Snapshot Repository</name>
    			<url>http://maven.springframework.org/snapshot</url>
    		</repository>
    </repositories>

  5. #5
    Join Date
    Nov 2010
    Posts
    7

    Default

    Of course I tried it. But it did not work. I was curios why so I opened it in the browser.

    You are right, http://maven.springframework.org/rel....0.RELEASE.pom is working.

    I guess we have to investigate our proxy settings of Nexus.

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

    Default

    The JARs are now available in Maven central as well.

Posting Permissions

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