Remove Bintray, bump dependencies

This commit is contained in:
arkon 2020-05-09 11:48:55 -04:00
parent cb5e5d8697
commit 84bfb8d7ed
5 changed files with 13 additions and 46 deletions

View File

@ -1,3 +1,11 @@
[ ![latest version](https://api.bintray.com/packages/inorichi/tachiyomi/extensions-library/images/download.svg) ](https://bintray.com/inorichi/tachiyomi/extensions-library/_latestVersion)
The extensions library used in Tachiyomi.
```
ext {
libVersion = '1.2'
}
dependencies {
compileOnly "com.github.tachiyomiorg:extensions-lib:$libVersion"
}
```

View File

@ -8,7 +8,6 @@ buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.1'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
// NOTE: Do not place your application dependencies here; they belong

View File

@ -1,7 +1,6 @@
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'com.jfrog.bintray'
version = '1.2'
@ -25,8 +24,8 @@ android {
}
dependencies {
provided "com.squareup.okhttp3:okhttp:3.8.1"
provided "io.reactivex:rxjava:1.3.0"
provided "com.squareup.okhttp3:okhttp:3.10.0"
provided "io.reactivex:rxjava:1.3.6"
provided "org.jsoup:jsoup:1.10.2"
provided "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
}
@ -36,9 +35,6 @@ repositories {
}
ext {
bintrayRepo = 'tachiyomi'
bintrayName = 'extensions-library'
publishedGroupId = 'eu.kanade.tachiyomi'
libraryName = 'tachiyomi-extensions-lib'
artifact = 'extensions-library'
@ -51,7 +47,6 @@ ext {
licenseName = 'The Apache Software License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
allLicenses = ["Apache-2.0"]
}
group = publishedGroupId
@ -84,7 +79,6 @@ install {
connection gitUrl
developerConnection gitUrl
url siteUrl
}
}
}
@ -103,33 +97,3 @@ artifacts {
archives sourcesJar
archives makeJar
}
// Bintray
Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())
bintray {
user = properties.getProperty("bintray.user")
key = properties.getProperty("bintray.apikey")
configurations = ['archives']
pkg {
repo = bintrayRepo
name = bintrayName
desc = libraryDescription
websiteUrl = siteUrl
issueTrackerUrl = siteUrl+'/issues'
vcsUrl = gitUrl
licenses = allLicenses
githubRepo = githubRepository
publish = true
publicDownloadNumbers = true
version {
desc = libraryDescription
gpg {
sign = true
passphrase = properties.getProperty("bintray.gpg.password")
}
}
}
}

View File

@ -1,7 +1,3 @@
package android.content;
/**
* Created by Carlos on 5/9/2018.
*/
public class Context {}

View File

@ -4,6 +4,6 @@ interface ConfigurableSource {
fun setupPreferenceScreen(screen: android.support.v7.preference.PreferenceScreen)
fun setupPreferenceScreen(screen: androidx.preference.PreferenceScreen )
fun setupPreferenceScreen(screen: androidx.preference.PreferenceScreen)
}