forked from gmarabout-zz/cascading.jruby
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathivy.xml
More file actions
25 lines (23 loc) · 2.45 KB
/
ivy.xml
File metadata and controls
25 lines (23 loc) · 2.45 KB
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
<?xml version="1.0" encoding="ISO-8859-1"?>
<ivy-module version="2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://ant.apache.org/ivy/schemas/ivy.xsd">
<info organisation="com.etsy" module="cascading.jruby" status="integration" />
<configurations>
<conf name="default" visibility="public" description="runtime dependencies and master artifact can be used with this conf" extends="runtime,master" />
<conf name="master" visibility="public" description="contains only the artifact published by this module itself, with no transitive dependencies" />
<conf name="compile" visibility="public" description="this is the default scope, used if none is specified. Compile dependencies are available in all classpaths." />
<conf name="provided" visibility="public" description="this is much like compile, but indicates you expect the JDK or a container to provide it. It is only available on the compilation classpath, and is not transitive." />
<conf name="runtime" visibility="public" description="this scope indicates that the dependency is not required for compilation, but is for execution. It is in the runtime and test classpaths, but not the compile classpath." extends="compile" />
<conf name="test" visibility="private" description="this scope indicates that the dependency is not required for normal use of the application, and is only available for the test compilation and execution phases." extends="runtime" />
<conf name="system" visibility="public" description="this scope is similar to provided except that you have to provide the JAR which contains it explicitly. The artifact is always available and is not looked up in a repository." />
<conf name="sources" visibility="public" description="this configuration contains the source artifact of this module, if any." />
<conf name="javadoc" visibility="public" description="this configuration contains the javadoc artifact of this module, if any." />
<conf name="optional" visibility="public" description="contains all optional dependencies" />
</configurations>
<dependencies>
<dependency org="cascading" name="cascading-core" rev="2.0.0" conf="default" />
<dependency org="cascading" name="cascading-local" rev="2.0.0" conf="default" />
<dependency org="cascading" name="cascading-hadoop" rev="2.0.0" conf="default" />
<dependency org="org.jruby" name="jruby" rev="1.6.5" conf="default" />
</dependencies>
</ivy-module>