Results 1 to 5 of 5

Thread: How to build the 2.0.0.M3 ?

  1. #1
    Join Date
    Jan 2009
    Posts
    2

    Default How to build the 2.0.0.M3 ?

    Hi, when I download the 2.0.0.M3 and go to sources to make install, maven failed to found the parent pom. It's not in the zip :


    Project ID: null:org.springframework.batch.infrastructure:jar: 2.0.0.M3

    Reason: Cannot find parent: org.springframework.batch:org.springframework.batc h for project: null:org.springframework.batch.infrastructure:jar: 2.0.0.M3 for project null:org.springframework.batch.infrastructure:jar: 2.0.0.M3


    What can I do ? I wish to install it on my local repository by making a maven clean install.

    Thanks in advance. YB

  2. #2
    Join Date
    Jun 2005
    Posts
    4,241

    Default

    The parent pom is in the .zip in the samples directory. You don't like the pre-built jar files?

  3. #3
    Join Date
    Jan 2009
    Posts
    2

    Default

    Thanks for your response but I don't see any zip in samples directory.

    I want to have all the jars in my local repository, that's why I want to make a clean install.

  4. #4
    Join Date
    Dec 2008
    Location
    Toulouse, France
    Posts
    22

    Default

    You should configure your settings.xml to add the SpringSource Repository :

    <repository>
    <id>spring-milestone</id>
    <name>Spring Milestone Repository</name>
    <url>http://repository.springsource.com/maven/bundles/milestone</url>
    <releases>
    <enabled>true</enabled>
    </releases>
    <snapshots>
    <enabled>false</enabled>
    </snapshots>
    </repository>

  5. #5
    Join Date
    Jun 2005
    Posts
    4,241

    Default

    Quote Originally Posted by yblazart View Post
    Thanks for your response but I don't see any zip in samples directory.

    I want to have all the jars in my local repository, that's why I want to make a clean install.
    There is no zip in the samples directory, there is a pom in the samples directory. Sorry for the confusion. If you downloaded the M3 zip distro you should have everything you need.

    But you don't need to build the jars, they are in the .zip distro, or in the Maven repo (as per above). I'm starting to think I misunderstood right from the beginning. Where did you get the source files from that you want to compile?

Posting Permissions

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