217
|
1 |
<!--
|
|
2 |
============================================================================
|
|
3 |
Name : ivysettings.xml
|
|
4 |
Part of : Helium
|
|
5 |
|
|
6 |
Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
7 |
All rights reserved.
|
|
8 |
This component and the accompanying materials are made available
|
|
9 |
under the terms of the License "Eclipse Public License v1.0"
|
|
10 |
which accompanies this distribution, and is available
|
|
11 |
at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
12 |
|
|
13 |
Initial Contributors:
|
|
14 |
Nokia Corporation - initial contribution.
|
|
15 |
|
|
16 |
Contributors:
|
|
17 |
|
|
18 |
Description:
|
|
19 |
|
|
20 |
============================================================================
|
|
21 |
-->
|
|
22 |
<ivysettings>
|
|
23 |
<caches useOrigin="true" defaultCacheDir="${build.temp.dir}/ivy"/>
|
|
24 |
<property name="ivy.default.ivy.user.dir" value="${build.temp.dir}/ivy"/>
|
|
25 |
<settings defaultResolver="helium-sf-build"/>
|
|
26 |
<include url="${ivy.default.settings.dir}/ivysettings-public.xml"/>
|
|
27 |
<include url="${ivy.default.settings.dir}/ivysettings-shared.xml"/>
|
|
28 |
<include url="${ivy.default.settings.dir}/ivysettings-local.xml"/>
|
|
29 |
<include url="${ivy.default.settings.dir}/ivysettings-main-chain.xml"/>
|
|
30 |
<include url="${ivy.default.settings.dir}/ivysettings-default-chain.xml"/>
|
|
31 |
|
|
32 |
<resolvers>
|
|
33 |
<chain name="helium-sf-build" returnFirst="true">
|
|
34 |
<filesystem name="sf-deps">
|
|
35 |
<ivy pattern="${sf.source.root.dir}/deps/[organisation]/[module]/[revision]/ivy.xml" />
|
|
36 |
<artifact pattern="${sf.source.root.dir}/deps/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]" />
|
|
37 |
</filesystem>
|
|
38 |
<filesystem>
|
|
39 |
<artifact pattern="${module.bin.dir}/[artifact].[ext]" />
|
|
40 |
</filesystem>
|
|
41 |
<resolver ref="local"/>
|
|
42 |
</chain>
|
|
43 |
</resolvers>
|
|
44 |
|
|
45 |
</ivysettings>
|
|
46 |
|