|
1 | 1 | apply plugin: 'com.android.library' |
2 | 2 | apply plugin: 'com.github.dcendents.android-maven' |
3 | | -apply plugin: 'com.jfrog.bintray' |
4 | 3 |
|
5 | 4 | android { |
6 | 5 | compileSdkVersion 26 |
@@ -30,7 +29,7 @@ dependencies { |
30 | 29 | //implementation('eu.chainfire:librootjava:1.3.1-SNAPSHOT') { changing = true } |
31 | 30 |
|
32 | 31 | /* Use bintray/jcenter version */ |
33 | | - implementation 'eu.chainfire:librootjava:1.3.1' |
| 32 | + implementation 'eu.chainfire:librootjava:1.3.2' |
34 | 33 | } |
35 | 34 |
|
36 | 35 | task sourcesJar(type: Jar) { |
|
64 | 63 | gitUrl = 'https://github.com/Chainfire/librootjava.git' |
65 | 64 | issueTrackerUrl = 'https://github.com/Chainfire/librootjava/issues' |
66 | 65 |
|
67 | | - libraryVersion = '1.3.1' |
| 66 | + libraryVersion = '1.3.2' |
68 | 67 |
|
69 | 68 | developerId = 'Chainfire' |
70 | 69 | developerName = 'Jorrit Jongma' |
@@ -94,35 +93,6 @@ task installMavenLocal(type: Upload) { |
94 | 93 | version = libraryVersion |
95 | 94 | group = publishedGroupId |
96 | 95 |
|
97 | | -bintray { |
98 | | - Properties properties = new Properties() |
99 | | - if (project.rootProject.file('local.properties').exists()) { |
100 | | - properties.load(project.rootProject.file('local.properties').newDataInputStream()) |
101 | | - } |
102 | | - user = properties.getProperty('bintray.user') |
103 | | - key = properties.getProperty('bintray.apikey') |
104 | | - |
105 | | - configurations = ['archives'] |
106 | | - dryRun = false |
107 | | - publish = true |
108 | | - pkg { |
109 | | - repo = bintrayRepo |
110 | | - name = libraryName |
111 | | - desc = libraryDescription |
112 | | - websiteUrl = siteUrl |
113 | | - issueTrackerUrl = issueTrackerUrl // doesn't actually work? |
114 | | - vcsUrl = gitUrl |
115 | | - //githubRepo = gitUrl // some more bintray weirdness here, breaks upload |
116 | | - //githubReleaseNotesFile = 'README.md' |
117 | | - licenses = allLicenses |
118 | | - publicDownloadNumbers = true |
119 | | - version { |
120 | | - name = libraryVersion |
121 | | - released = new Date() |
122 | | - } |
123 | | - } |
124 | | -} |
125 | | - |
126 | 96 | install { |
127 | 97 | repositories.mavenInstaller { |
128 | 98 | pom.project { |
@@ -153,5 +123,3 @@ install { |
153 | 123 | } |
154 | 124 | } |
155 | 125 | } |
156 | | - |
157 | | -bintrayUpload.dependsOn install |
0 commit comments