com.linkedin.gradle.hadoop.HadoopPlugin
Owner: Alex Bain
LinkedIn Gradle Plugin and DSL for the Apache Hadoop Ecosystem
https://github.com/linkedin/linkedin-gradle-plugin-for-apache-hadoop
Sources: https://github.com/linkedin/linkedin-gradle-plugin-for-apache-hadoop
Version 0.13.3 (latest)
0.13.3
Created 30 June 2017.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
LinkedIn Gradle Plugin and DSL for the Apache Hadoop Ecosystem
Using the plugins DSL:
plugins {
id("com.linkedin.gradle.hadoop.HadoopPlugin") version "0.13.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.linkedin.hadoop-plugin:hadoop-plugin:0.13.3")
}
}
apply(plugin = "com.linkedin.gradle.hadoop.HadoopPlugin")
Using the plugins DSL:
plugins {
id "com.linkedin.gradle.hadoop.HadoopPlugin" version "0.13.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.linkedin.hadoop-plugin:hadoop-plugin:0.13.3"
}
}
apply plugin: "com.linkedin.gradle.hadoop.HadoopPlugin"