Skip to content
This repository was archived by the owner on Feb 11, 2022. It is now read-only.

Commit 7d68737

Browse files
committed
USes the bintray plugin to publish to bintray!
1 parent ec9002c commit 7d68737

2 files changed

Lines changed: 25 additions & 5 deletions

File tree

core/build.gradle

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
buildscript {
2+
repositories {
3+
jcenter()
4+
}
5+
dependencies {
6+
classpath 'com.android.tools.build:gradle:0.13.2'
7+
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:0.6'
8+
}
9+
}
10+
111
apply plugin: 'com.android.library'
212

313
android {
@@ -10,8 +20,4 @@ android {
1020
}
1121
}
1222

13-
buildscript {
14-
dependencies {
15-
classpath 'com.android.tools.build:gradle:0.13.0'
16-
}
17-
}
23+
apply from: '../team-props/publish.gradle'

team-props/publish.gradle

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
ext {
2+
PUBLISH_GROUP_ID = 'com.novoda'
3+
PUBLISH_ARTIFACT_ID = 'sqliteprovider-core'
4+
PUBLISH_VERSION = '1.0.3'
5+
6+
UPLOAD_NAME = PUBLISH_ARTIFACT_ID
7+
UPLOAD_DESCRIPTION = 'Extended SQLite functionality for Android'
8+
UPLOAD_WEBSITE = 'https://github.com/novoda/SQLiteProvider'
9+
UPLOAD_ISSUE_TRACKER = 'https://github.com/novoda/SQLiteProvider/issues'
10+
UPLOAD_REPOSITORY = 'https://github.com/novoda/SQLiteProvider.git'
11+
UPLOAD_VERSION = PUBLISH_VERSION
12+
}
13+
14+
apply from: 'https://gist.githubusercontent.com/hal9002/0772dffbd8a6a81bc176/raw' // bintray upload helper

0 commit comments

Comments
 (0)