forked from cwensel/cascading
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathivy.xml
71 lines (55 loc) · 2.65 KB
/
ivy.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!--
~ Copyright (c) 2007-2010 Concurrent, Inc. All Rights Reserved.
~
~ Project and contact information: http://www.cascading.org/
~
~ This file is part of the Cascading project.
~
~ Cascading is free software: you can redistribute it and/or modify
~ it under the terms of the GNU General Public License as published by
~ the Free Software Foundation, either version 3 of the License, or
~ (at your option) any later version.
~
~ Cascading is distributed in the hope that it will be useful,
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ GNU General Public License for more details.
~
~ You should have received a copy of the GNU General Public License
~ along with Cascading. If not, see <http://www.gnu.org/licenses/>.
-->
<ivy-module version="2.0">
<info organisation="cascading" module="cascading-core" revision="${cascading.release.full}">
<license name="GNU General Public License version 3" url="http://www.gnu.org/licenses/"/>
<ivyauthor name="Concurrent, Inc." url="http://concurrentinc.com/"/>
<repository name="conjars" url="http://conjars.org/repo/" artifacts="true"/>
<description homepage="http://cascading.org"/>
</info>
<configurations>
<conf name="core"/>
<conf name="xml"/>
<conf name="default" extends="core,xml"/>
<conf name="test"/>
<conf name="default.provided"/>
<conf name="test.provided"/>
</configurations>
<publications>
<artifact conf="core" name="cascading-core" type="jar" ext="jar"/>
<artifact conf="core" name="cascading-core" type="pom" ext="pom"/>
<artifact conf="xml" name="cascading-xml" type="jar" ext="jar"/>
<artifact conf="xml" name="cascading-xml" type="pom" ext="pom"/>
<artifact conf="test" name="cascading-test" type="jar" ext="jar"/>
<artifact conf="test" name="cascading-test" type="pom" ext="pom"/>
</publications>
<dependencies>
<dependency org="org.apache.hadoop" name="hadoop-core" rev="0.20.2" conf="default.provided->default">
<exclude org="ant"/>
</dependency>
<dependency org="org.apache.hadoop" name="hadoop-test" rev="0.20.2" conf="test.provided->default"/>
<dependency org="thirdparty" name="jgrapht-jdk1.6" rev="0.8.1" conf="core->default"/>
<dependency org="riffle" name="riffle" rev="0.1-dev" conf="core->default"/>
<dependency org="org.codehaus.janino" name="janino" rev="2.5.16" conf="core->default"/>
<dependency org="org.ccil.cowan.tagsoup" name="tagsoup" rev="1.2" conf="xml->default"/>
<dependency org="junit" name="junit" rev="4.4" conf="test->default"/>
</dependencies>
</ivy-module>