spring-attic/scripts

Could not build https://github.com/spring-cloud/spring-cloud-cloudfoundry

Closed this issue · 5 comments

Following dep is not available on http://mvnrepository.com/

<dependency>
                        <groupId>org.cloudfoundry</groupId>
                        <artifactId>spring-boot-cf-service-broker</artifactId>
                      <version>2.3.2</version>
                        <optional>true</optional>
                </dependency>

requires:

        <repositories>
         <repository>
            <id>spring-milestones</id>
            <url>http://repo.springsource.org/libs-milestone/</url>
          </repository>
    </repositories>

By the way: version 2.3.3 is available

@boostrack how are you building? build.sh uses mvn --settings config/.settings.xml clean install "$@" where config/.settings.xml has the milestone repo.

@spencergibb Well I executed the build.sh on the start, but had several test failures, and even compile error in some project .. so decided to do it with raw :

mvn clean package -DskipTests

please verify that mvn --settings config/.settings.xml clean package -DskipTests fixes this issue.

👍 yes .. worked like a charm.. My bad that had not a look inside of the build script.. was not expecting a global settings.xml magic .

Cool! Already built all with a clean checkout. and works perfectly. Sorry again for this confusion

git submodule init
git submodule update
mvn --settings config/.settings.xml clean package -DskipTests