Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle/buildscript.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ dependencies {
classpath 'gradle.plugin.nl.javadude.gradle.plugins:license-gradle-plugin:0.14.0'
classpath 'com.linkedin.pegasus:gradle-plugins:29.2.3'
// TODO Remove this dependency
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
// classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
classpath "org.jfrog.buildinfo:build-info-extractor-gradle:4.21.0"
}
38 changes: 19 additions & 19 deletions gradle/maven.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ allprojects {

subprojects {
apply plugin: 'maven-publish'
apply plugin: 'com.jfrog.bintray'
// apply plugin: 'com.jfrog.bintray'
apply plugin: 'com.jfrog.artifactory'
apply plugin: 'pegasus'

Expand Down Expand Up @@ -189,22 +189,22 @@ subprojects {
}
}

bintray {
user = System.getenv('BINTRAY_USER')
key = System.getenv('BINTRAY_KEY')
publications = allPublications
pkg {
repo = 'maven'
name = 'brooklin'
userOrg = 'linkedin'
licenses = ['BSD 2-Clause']
vcsUrl = 'https://www.github.com/linkedin/brooklin'
publicDownloadNumbers = true
version {
name = project.version
}
publish = false
override = false
}
}
// bintray {
// user = System.getenv('BINTRAY_USER')
// key = System.getenv('BINTRAY_KEY')
// publications = allPublications
// pkg {
// repo = 'maven'
// name = 'brooklin'
// userOrg = 'linkedin'
// licenses = ['BSD 2-Clause']
// vcsUrl = 'https://www.github.com/linkedin/brooklin'
// publicDownloadNumbers = true
// version {
// name = project.version
// }
// publish = false
// override = false
// }
// }
}