| 1. |
How Do I Add A New External Dependency? |
|
Answer» SAY I want to add oozie-core-4.2.0.jar as a dependency to the gobblin-scheduler subproject. I would first open the FILE build.gradle and add the following entry to the ext.externalDependency ARRAY: "oozieCore": "org.apache.oozie:oozie-core:4.2.0". Then in the gobblin-scheduler/build.gradle file I would add the following line to the dependency block: compile externalDependency.oozieCore. Say I want to add oozie-core-4.2.0.jar as a dependency to the gobblin-scheduler subproject. I would first open the file build.gradle and add the following entry to the ext.externalDependency array: "oozieCore": "org.apache.oozie:oozie-core:4.2.0". Then in the gobblin-scheduler/build.gradle file I would add the following line to the dependency block: compile externalDependency.oozieCore. |
|