Skip to content
Merged
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
69 changes: 33 additions & 36 deletions bintray.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,45 +17,42 @@
if (project.hasProperty('bintrayUser') && project.hasProperty('bintrayKey') &&
project.hasProperty('sonatypeUsername') && project.hasProperty('sonatypePassword')) {

bintray {
user = project.property('bintrayUser')
key = project.property('bintrayKey')

publish = true

pkg {
repo = 'RSocket'
name = 'rsocket-java'
licenses = ['Apache-2.0']

issueTrackerUrl = 'https://github.com/rsocket/rsocket-java/issues'
websiteUrl = 'https://github.com/rsocket/rsocket-java'
vcsUrl = 'https://github.com/rsocket/rsocket-java.git'

githubRepo = 'rsocket/rsocket-java' //Optional Github repository
githubReleaseNotesFile = 'README.md' //Optional Github readme file

version {
name = project.version
released = new Date()
vcsTag = project.version

gpg {
sign = true
}

mavenCentralSync {
user = project.property('sonatypeUsername')
password = project.property('sonatypePassword')
}
}
}
}

subprojects {
plugins.withId('com.jfrog.bintray') {
bintray {
publications('maven')
user = project.property('bintrayUser')
key = project.property('bintrayKey')

publications = ['maven']
publish = true

pkg {
repo = 'RSocket'
name = 'rsocket-java'
licenses = ['Apache-2.0']

issueTrackerUrl = 'https://github.com/rsocket/rsocket-java/issues'
websiteUrl = 'https://github.com/rsocket/rsocket-java'
vcsUrl = 'https://github.com/rsocket/rsocket-java.git'

githubRepo = 'rsocket/rsocket-java' //Optional Github repository
githubReleaseNotesFile = 'README.md' //Optional Github readme file

version {
name = project.version
released = new Date()
vcsTag = project.version

gpg {
sign = true
}

mavenCentralSync {
user = project.property('sonatypeUsername')
password = project.property('sonatypePassword')
}
}
}
}
}
}
Expand Down
18 changes: 18 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,24 @@ subprojects {
}
}

developers {
developer {
id 'robertroeser'
name 'Robert Roeser'
email 'robert@netifi.com'
}
developer {
id 'rdegnan'
name 'Ryland Degnan'
email 'ryland@netifi.com'
}
developer {
id 'yschimke'
name 'Yuri Schimke'
email 'yuri@schimke.ee'
}
}

scm {
connection 'scm:git:https://github.com/rsocket/rsocket-java.git'
developerConnection 'scm:git:https://github.com/rsocket/rsocket-java.git'
Expand Down