mirror of
https://github.com/tachiyomiorg/extensions-lib.git
synced 2024-11-24 20:26:55 +01:00
Remove Bintray, bump dependencies
This commit is contained in:
parent
cb5e5d8697
commit
84bfb8d7ed
12
README.md
12
README.md
@ -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.
|
The extensions library used in Tachiyomi.
|
||||||
|
|
||||||
|
```
|
||||||
|
ext {
|
||||||
|
libVersion = '1.2'
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
compileOnly "com.github.tachiyomiorg:extensions-lib:$libVersion"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
@ -8,7 +8,6 @@ buildscript {
|
|||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle:2.2.3'
|
classpath 'com.android.tools.build:gradle:2.2.3'
|
||||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
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'
|
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
|
||||||
|
|
||||||
// NOTE: Do not place your application dependencies here; they belong
|
// NOTE: Do not place your application dependencies here; they belong
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
apply plugin: 'com.android.library'
|
apply plugin: 'com.android.library'
|
||||||
apply plugin: 'kotlin-android'
|
apply plugin: 'kotlin-android'
|
||||||
apply plugin: 'com.github.dcendents.android-maven'
|
apply plugin: 'com.github.dcendents.android-maven'
|
||||||
apply plugin: 'com.jfrog.bintray'
|
|
||||||
|
|
||||||
version = '1.2'
|
version = '1.2'
|
||||||
|
|
||||||
@ -25,8 +24,8 @@ android {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
provided "com.squareup.okhttp3:okhttp:3.8.1"
|
provided "com.squareup.okhttp3:okhttp:3.10.0"
|
||||||
provided "io.reactivex:rxjava:1.3.0"
|
provided "io.reactivex:rxjava:1.3.6"
|
||||||
provided "org.jsoup:jsoup:1.10.2"
|
provided "org.jsoup:jsoup:1.10.2"
|
||||||
provided "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
provided "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
||||||
}
|
}
|
||||||
@ -36,9 +35,6 @@ repositories {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ext {
|
ext {
|
||||||
bintrayRepo = 'tachiyomi'
|
|
||||||
bintrayName = 'extensions-library'
|
|
||||||
|
|
||||||
publishedGroupId = 'eu.kanade.tachiyomi'
|
publishedGroupId = 'eu.kanade.tachiyomi'
|
||||||
libraryName = 'tachiyomi-extensions-lib'
|
libraryName = 'tachiyomi-extensions-lib'
|
||||||
artifact = 'extensions-library'
|
artifact = 'extensions-library'
|
||||||
@ -51,7 +47,6 @@ ext {
|
|||||||
|
|
||||||
licenseName = 'The Apache Software License, Version 2.0'
|
licenseName = 'The Apache Software License, Version 2.0'
|
||||||
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
|
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
|
||||||
allLicenses = ["Apache-2.0"]
|
|
||||||
}
|
}
|
||||||
|
|
||||||
group = publishedGroupId
|
group = publishedGroupId
|
||||||
@ -84,7 +79,6 @@ install {
|
|||||||
connection gitUrl
|
connection gitUrl
|
||||||
developerConnection gitUrl
|
developerConnection gitUrl
|
||||||
url siteUrl
|
url siteUrl
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -103,33 +97,3 @@ artifacts {
|
|||||||
archives sourcesJar
|
archives sourcesJar
|
||||||
archives makeJar
|
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")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -1,7 +1,3 @@
|
|||||||
package android.content;
|
package android.content;
|
||||||
|
|
||||||
/**
|
|
||||||
* Created by Carlos on 5/9/2018.
|
|
||||||
*/
|
|
||||||
|
|
||||||
public class Context {}
|
public class Context {}
|
||||||
|
Loading…
Reference in New Issue
Block a user