Skip to content

Commit 5c40a18

Browse files
authored
Merge pull request #6 from Sarquella/v0.1.0
v0.1.0
2 parents 23ce1bd + bd23426 commit 5c40a18

3 files changed

Lines changed: 28 additions & 4 deletions

File tree

build.gradle

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,10 @@ buildscript {
88

99
}
1010
dependencies {
11-
classpath 'com.android.tools.build:gradle:3.6.2'
11+
classpath 'com.android.tools.build:gradle:3.6.3'
1212
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
13-
14-
// NOTE: Do not place your application dependencies here; they belong
15-
// in the individual module build.gradle files
13+
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
14+
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.5'
1615
}
1716
}
1817

mutabledatasource/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ android {
2626
}
2727

2828
apply from: "dependencies.gradle"
29+
apply from: "publish.gradle"
2930

3031
dependencies {
3132
implementation fileTree(dir: 'libs', include: ['*.jar'])

mutabledatasource/publish.gradle

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
ext {
2+
bintrayRepo = 'MutableDataSource'
3+
bintrayName = 'dev.sarquella.mutabledatasource'
4+
5+
publishedGroupId = 'dev.sarquella.mutabledatasource'
6+
artifact = 'mutabledatasource'
7+
8+
libraryVersion = '0.1.0'
9+
10+
libraryDescription = 'A wrapper around Android Paging Library\'s DataSources to ' +
11+
'allow the free mutation of their resulting items.'
12+
13+
gitUrl = 'https://github.com/Sarquella/MutableDataSource'
14+
15+
developerId = 'sarquella'
16+
developerName = 'Adrià Sarquella Farrés'
17+
developerEmail = 'adria@sarquella.dev'
18+
19+
licenseId = 'Apache-2.0'
20+
licenseName = 'The Apache Software License, Version 2.0'
21+
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
22+
}
23+
24+
apply from: 'https://raw.githubusercontent.com/Sarquella/JCenter-Uploader/master/jcenter_uploader.gradle'

0 commit comments

Comments
 (0)