Show ivyconf.xml syntax highlighted
<ivyconf>
<!--
see http://www.jayasoft.org/ivy/doc/configuration
-->
<!-- you can override this property to use mirrors
http://repo1.maven.org/maven2/
http://mirrors.dotsrc.org/maven2
http://ftp.ggi-project.org/pub/packages/maven2
http://mirrors.sunsite.dk/maven2
http://public.planetmirror.com/pub/maven2
http://ibiblio.lsu.edu/main/pub/packages/maven2
http://www.ibiblio.net/pub/packages/maven2
-->
<property name="ivy.ibiblio.root"
value="http://mirrors.sunsite.dk/maven2" override="false"/>
<property name="maven2.pattern"
value="[organisation]/[module]/[revision]/[module]-[revision]" />
<property name="maven2.pattern.ext"
value="${maven2.pattern}.[ext]" />
<!-- pull in the local repository -->
<include url="${ivy.default.conf.dir}/ivyconf-local.xml"/>
<conf defaultResolver="default"/>
<resolvers>
<!-- BUGBUG: not a real m2 repo structure
<filesystem name="team">
ivys="true" artifacts="true"
m2compatible="true" >
<artifact pattern="${root.dir}/antbuild/repository/${maven2.pattern.ext}"/>
<ivy pattern="${root.dir}/antbuild/repository/${maven2.pattern}.xml"/>
</filesystem>-->
<filesystem name="team">
ivys="true" artifacts="true"
m2compatible="true" >
<artifact pattern="${root.dir}/antbuild/repository/${maven2.pattern.ext}"/>
<ivy pattern="${root.dir}/antbuild/repository/${maven2.pattern}.xml"/>
</filesystem>
<filesystem name="team2">
artifacts="true"
usepom="true"
m2compatible="true" >
<artifact pattern="${root.dir}/antbuild/repository/${maven2.pattern.ext}"/>
</filesystem>
<ibiblio name="maven2"
root="${ivy.ibiblio.root}"
pattern="${maven2.pattern.ext}"
m2compatible="true"
/>
<chain name="default" dual="true">
<resolver ref="local"/>
<resolver ref="team2"/>
<resolver ref="maven2"/>
</chain>
<chain name="internal">
<resolver ref="local"/>
<resolver ref="team2"/>
</chain>
</resolvers>
<modules>
<module organisation="org.smartfrog" name=".*" resolver="internal"/>
<module organisation="org.ggf" name=".*" resolver="internal"/>
<!-- here so that Steve can build the antbook at the same time-->
<module organisation="org.antbook" name=".*" resolver="internal"/>
<!--artifacts that we have locally only-->
<module organisation="berkeleydb" name=".*" resolver="internal"/>
<module organisation="mom4j" name=".*" resolver="internal"/>
<module organisation="xindice" name=".*" resolver="internal"/>
<module organisation="xmldb" name=".*" resolver="internal"/>
<module organisation="javax.jms" name=".*" resolver="internal"/>
<module organisation="kizoom" name=".*" resolver="internal"/>
<module organisation="solid" name=".*" resolver="internal"/>
<!-- <module organisation="" name=".*" resolver="internal"/>
<module organisation="" name=".*" resolver="internal"/>
<module organisation="" name=".*" resolver="internal"/>
<module organisation="" name=".*" resolver="internal"/>
<module organisation="" name=".*" resolver="internal"/>
<module organisation="" name=".*" resolver="internal"/>-->
</modules>
</ivyconf>
See more files for this project here