Skip to content

Commit

Permalink
Fix #2: Maven publish configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
josmilan committed Mar 27, 2024
1 parent 88be792 commit 9ed2cab
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions eudi-wallet-oidc-android/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
plugins {
id("com.android.library")
id("org.jetbrains.kotlin.android")
id("maven-publish")
}

android {
Expand Down Expand Up @@ -58,4 +59,15 @@ dependencies {
implementation("com.github.decentralised-dataexchange:presentation-exchange-sdk-android:2024.3.1")

implementation("com.google.crypto.tink:tink-android:1.7.0")
}

publishing {
publications {
create<MavenPublication>("Maven") {
groupId = "com.github.decentraliseddataexchange"
artifactId = "eudi-wallet-oidc-android"
version = "2024.3.1"
artifact("$buildDir/outputs/aar/eudi-wallet-oidc-android-release.aar")
}
}
}

0 comments on commit 9ed2cab

Please sign in to comment.