Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sanao1006 committed Apr 14, 2024
1 parent 7dde8b3 commit 7a464a9
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions mlbapi/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ plugins {
}

val GROUP_ID = "com.github.sanao1006"
val ARTIFACT_ID = "mlb-api-kt"
val VERSION = "0.0.1"
val ARTIFACT_ID = "mlbapikkt"
val VERSION = "0.0.11"

android {
namespace = "app.sanao1006.mlbkt"
Expand All @@ -32,16 +32,16 @@ android {
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
publishing {
singleVariant("release") {
withSourcesJar()
}
}
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = JavaVersion.VERSION_17.toString()
}
}

Expand All @@ -63,8 +63,8 @@ dependencies {

publishing {
publications {
register<MavenPublication>("") {}
create<MavenPublication>("release") {

register<MavenPublication>("release") {
groupId = GROUP_ID
artifactId = ARTIFACT_ID
version = VERSION
Expand Down

0 comments on commit 7a464a9

Please sign in to comment.