Release sshauthentication-api to bintray

This commit is contained in:
Dominik Schürmann
2017-11-27 14:22:28 +01:00
parent 0a72dda6fc
commit 4972a10fd6
3 changed files with 232 additions and 2 deletions

View File

@@ -1,4 +1,5 @@
apply plugin: 'com.android.library'
apply plugin: 'bintray-release' // must be applied after your artifact generating plugin (eg. java / com.android.library)
buildscript {
repositories {
@@ -6,7 +7,7 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.2'
// NOTE: Do not place application dependencies here
classpath 'com.novoda:bintray-release:0.2.7'
}
}
@@ -34,3 +35,12 @@ android {
abortOnError false
}
}
publish {
userOrg = 'sufficientlysecure'
groupId = 'org.sufficientlysecure'
artifactId = 'sshauthentication-api'
version = '1.0'
description = 'The SSH authentication API library provides an interface to using an external authentication provider, such as OpenKeychain, in the SSH authentication layer.'
website = 'https://github.com/open-keychain/open-keychain'
}