Skip to content

Commit

Permalink
Correct groupId for use with Jitpack
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Harwood committed Feb 10, 2023
1 parent b839cfe commit 047784b
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions guru-android-sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ plugins {
id 'maven-publish'
}

group = 'com.github.Formguru'
version = '1.0.0'

android {
namespace 'ai.getguru.androidsdk'
compileSdk 30
Expand Down Expand Up @@ -43,15 +46,14 @@ dependencies {
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
}

publishing {
publications {
release(MavenPublication) {
groupId = 'ai.getguru'
artifactId = 'guru-android-sdk'
version = '1.0.0'

afterEvaluate {
afterEvaluate {
publishing {
publications {
release(MavenPublication) {
from components.release
groupId = 'com.github.Formguru'
artifactId = 'guru-android-sdk'
version = '1.0.0'
}
}
}
Expand Down

0 comments on commit 047784b

Please sign in to comment.