You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a WIP is deemed stable and ready for production use, it will be published as a `x.y.z` release.
43
+
44
+
## Using with Maven/Ivy
45
+
46
+
It is strongly recommended developers pull Cascading from our Maven compatible jar repository
47
+
[Conjars.org](http://conjars.org).
48
+
49
+
You can find the latest public and wip (work in progress) releases here:
50
+
51
+
*http://conjars.org/cascading/cascading-core
52
+
*http://conjars.org/cascading/cascading-local
53
+
*http://conjars.org/cascading/cascading-hadoop
54
+
*http://conjars.org/cascading/cascading-xml
55
+
56
+
When creating tests, make sure to add any of the relevant above dependencies to your "test" scope or equivalent
57
+
configuration along with the `cascading-platform` dependency.
58
+
59
+
*http://conjars.org/cascading/cascading-platform
60
+
61
+
Note the `cascading-plaform` compile dependency has no classes, you must pull the tests dependency with the
62
+
"tests" classifier.
63
+
64
+
See [http://www.cascading.org/downloads/#maven](http://www.cascading.org/downloads/#maven) for example Maven pom
65
+
dependency settings.
66
+
67
+
Source and Javadoc artifacts (using the appropriate classifier) are also available through Conjars.
68
+
69
+
Note that `cascading-hadoop` has a "provided" dependency on the Hadoop jars so that it won't get sucked into any
70
+
application packaging as a dependency, typically.
25
71
26
72
## Building:
27
73
@@ -57,4 +103,5 @@ For example, your job jar would look like this (via: `jar -t your.jar`)
57
103
/lib/<cascading third-party jar files>
58
104
```
59
105
60
-
Hadoop will unpack the jar locally and remotely (in the cluster) and add any libraries in `lib` to the classpath. This is a feature specific to Hadoop.
106
+
Hadoop will unpack the jar locally and remotely (in the cluster) and add any libraries in `lib` to the classpath. This
0 commit comments