Skip to content

Commit

Permalink
yml file
Browse files Browse the repository at this point in the history
  • Loading branch information
ajayvamsee24 committed Jun 8, 2023
1 parent 25c3c6a commit 29be245
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
4 changes: 4 additions & 0 deletions jitpack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
jdk:
-openjdk11
before_install:
- ./scripts/prepareJitpackEnvironment.sh
20 changes: 19 additions & 1 deletion uwb/build.gradle
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 @@ -41,4 +42,21 @@ dependencies {

implementation "androidx.core.uwb:uwb-rxjava3:1.0.0-alpha04"
implementation "androidx.core.uwb:uwb:1.0.0-alpha04"
}
}

afterEvaluate {
publishing {
publications {
// Creates a Maven publication called "release".
release(MavenPublication) {
// Applies the component for the release build variant.
from components.release

// You can then customize attributes of the publication as shown below.
groupId = 'com.ajay.uwb.library.wave-glide' //[ groupId= 'your company domain']
artifactId = 'uwb' // name of module or name of aar
version = '1.0'
}
}
}
}

0 comments on commit 29be245

Please sign in to comment.