Skip to content

Commit

Permalink
sync to jitpack
Browse files Browse the repository at this point in the history
  • Loading branch information
skhanbeiki committed Nov 30, 2024
1 parent d73125b commit 3fffb53
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions hamrahads/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ plugins {
alias(libs.plugins.kotlin.parcelize)
alias(libs.plugins.kotlin.kapt.plugin)
alias(libs.plugins.kotlin.serialization.plugin)
id("maven-publish")
}

android {
Expand All @@ -27,11 +28,23 @@ android {
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "11"
}
}
afterEvaluate {
publishing {
publications {
create<MavenPublication>("release") {
from(components["release"])
groupId = "com.github.ayantech"
artifactId = "AyanAds"
version = "0.1.5"
}
}
}
}

Expand Down

0 comments on commit 3fffb53

Please sign in to comment.