Skip to content

Commit

Permalink
Remove gradle publish to maven local (azkaban#2398)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Bagshaw authored Dec 6, 2019
1 parent 23632c6 commit cefd45f
Showing 1 changed file with 0 additions and 26 deletions.
26 changes: 0 additions & 26 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
}

Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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.*/
Expand Down

0 comments on commit cefd45f

Please sign in to comment.