diff --git a/build.gradle b/build.gradle index f5f06cca82..c4883c13ca 100644 --- a/build.gradle +++ b/build.gradle @@ -23,7 +23,6 @@ buildscript { dependencies { classpath 'com.cinnober.gradle:semver-git:2.2.3' classpath 'net.ltgt.gradle:gradle-errorprone-plugin:0.0.14' - classpath 'com.github.jengelman.gradle.plugins:shadow:4.0.0' } } @@ -131,7 +130,6 @@ ext.deps = [ subprojects { apply plugin: 'java' apply plugin: 'net.ltgt.errorprone' - apply plugin: 'maven-publish' // Set the same version for all sub-projects to root project version version = rootProject.version @@ -203,30 +201,6 @@ subprojects { options.compilerArgs += ["-Werror"] } - /** - * Set up for publishing to maven local - */ - - task sourcesJar(type: Jar) { - classifier 'sources' - from sourceSets.main.allSource - } - - artifacts { - archives sourcesJar - } - - publishing { - publications { - mavenJava(MavenPublication) { - from components.java - artifact sourcesJar - - groupId "com.linkedin.azkaban" - } - } - } - /** * Print test execution summary when informational logging is enabled.*/