From cefd45f3ce0df455c0b26620138bba757dcf4fbd Mon Sep 17 00:00:00 2001 From: Andrew Bagshaw Date: Fri, 6 Dec 2019 12:01:56 -0800 Subject: [PATCH] Remove gradle publish to maven local (#2398) --- build.gradle | 26 -------------------------- 1 file changed, 26 deletions(-) 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.*/