-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathivysettings.xml
44 lines (34 loc) · 1.53 KB
/
ivysettings.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?xml version="1.0"?>
<ivysettings
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="../../java/ivy-file-2.1.xsd">
<property name="ivy.cache.dir" value="${user.home}/.ivy2/cache"/>
<properties file="local.properties" override="true"/>
<settings defaultResolver="chain"/>
<caches defaultCacheDir="${ivy.cache.dir}"/>
<resolvers>
<chain name="chain" returnFirst="true">
<ibiblio name="ibiblio" m2compatible="true" usepoms="true"/>
<packager name="ivyroundup"
buildRoot="${user.home}/.ivy2/packager/build"
resourceCache="${user.home}/.ivy2/packager/cache">
<ivy pattern="http://ivyroundup.googlecode.com/svn/trunk/repo/modules/[organisation]/[module]/[revision]/ivy.xml"/>
<artifact pattern="http://ivyroundup.googlecode.com/svn/trunk/repo/modules/[organisation]/[module]/[revision]/packager.xml"/>
</packager>
<url name="download.java.net" m2compatible="true">
<artifact pattern="http://download.java.net/maven/2/[organization]/[module]/[revision]/[artifact]-[revision].[ext]"/>
</url>
<!-- This one is a failsafe for Eclipse Link stuff since most of the other
repos do not carry them. -->
<url name="eclipse-link">
<artifact pattern="http://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/rt/eclipselink/maven.repo/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]"/>
</url>
</chain>
</resolvers>
<modules>
<module
organisation="org.eclipse.persistence"
name=".*"
resolver="eclipse-link"/>
</modules>
</ivysettings>