spring-build was previously included via an svn:external. Adding directly to the source tree under Git to avoid the need for a git submodule. In order to build from any earlier commit, it is recommended to export spring-build or symlink an existing copy into the root of the spring-framework project and then build normally. $ svn export https://src.springsource.org/svn/spring-build/tags/project-build-2.2.3 spring-build
34 lines
1.4 KiB
XML
34 lines
1.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<ivysettings>
|
|
<include file="${spring.build.dir}/common/ivysettings.xml"/>
|
|
|
|
<settings defaultResolver="extended-external-lookup" defaultLatestStrategy="latest-lexico"/>
|
|
|
|
<resolvers>
|
|
<chain name="extended-external-lookup">
|
|
<resolver ref="external-lookup"/>
|
|
<!-- Maven central -->
|
|
<ibiblio name="maven2" m2compatible="true"/>
|
|
<!-- Mojarra 2.x -->
|
|
<ibiblio name="java-net"
|
|
m2compatible="true"
|
|
usepoms="true"
|
|
pattern="[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]"
|
|
root="http://download.java.net/maven/2"/>
|
|
<!-- PrimeFaces -->
|
|
<ibiblio name="primefaces"
|
|
m2compatible="true"
|
|
usepoms="true"
|
|
pattern="[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]"
|
|
root="http://repository.primefaces.org"/>
|
|
<!-- MyFaces Core 2.0.1-SNAPSHOT -->
|
|
<ibiblio name="apache-maven2-snapshot"
|
|
m2compatible="true"
|
|
usepoms="true"
|
|
pattern="[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]"
|
|
root="http://people.apache.org/repo/m2-snapshot-repository"/>
|
|
</chain>
|
|
</resolvers>
|
|
|
|
</ivysettings>
|