mirror of
https://github.com/jellyfin/jellyfin-sdk-kotlin.git
synced 2024-11-27 08:00:42 +00:00
Change naming
This commit is contained in:
parent
cde82f9e4a
commit
3667dc45c8
@ -38,7 +38,7 @@ dependencies {
|
||||
// Because of limitations in the android plugin
|
||||
// the publishing definition should be inside the "afterEvaluate" block
|
||||
afterEvaluate {
|
||||
publishing.publications.create<MavenPublication>("maven") {
|
||||
publishing.publications.create<MavenPublication>("default") {
|
||||
// Should be the same as the build type
|
||||
from(components["release"])
|
||||
}
|
||||
|
@ -29,7 +29,8 @@ allprojects {
|
||||
}
|
||||
|
||||
publishing.repositories.maven {
|
||||
url = uri("https://api.bintray.com/maven/nielsvanvelzen/jellyfin-apiclient-java/jellyfin-apiclient-java/;publish=0")
|
||||
name = "bintray"
|
||||
url = uri("https://api.bintray.com/maven/nielsvanvelzen/jellyfin-apiclient-java/jellyfin-apiclient-java;publish=0;override=1")
|
||||
|
||||
credentials {
|
||||
username = getProperty("bintray.user") as String?
|
||||
|
@ -17,7 +17,7 @@ val sourcesJar by tasks.creating(Jar::class) {
|
||||
from(sourceSets.getByName("main").allSource)
|
||||
}
|
||||
|
||||
publishing.publications.create<MavenPublication>("maven") {
|
||||
publishing.publications.create<MavenPublication>("default") {
|
||||
from(components["java"])
|
||||
|
||||
artifact(sourcesJar)
|
||||
|
@ -9,7 +9,7 @@ val sourcesJar by tasks.creating(Jar::class) {
|
||||
from(sourceSets.getByName("main").allSource)
|
||||
}
|
||||
|
||||
publishing.publications.create<MavenPublication>("maven") {
|
||||
publishing.publications.create<MavenPublication>("default") {
|
||||
from(components["java"])
|
||||
|
||||
artifact(sourcesJar)
|
||||
|
Loading…
Reference in New Issue
Block a user