Skip to content

Commit

Permalink
Add jitpack changes
Browse files Browse the repository at this point in the history
  • Loading branch information
weliem committed Nov 8, 2021
1 parent 07cfc95 commit 10aee3b
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions blessed/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'maven-publish'

android {
compileSdkVersion 31
Expand Down Expand Up @@ -40,4 +41,18 @@ dependencies {
testImplementation "org.robolectric:robolectric:4.5.1"
testImplementation "org.mockito:mockito-core:3.8.0"
testImplementation 'androidx.test:core:1.4.0'
}

afterEvaluate {
publishing {
publications {
// Creates a Maven publication called "release".
release(MavenPublication) {
from components.release
groupId = 'com.github.weliem'
artifactId = 'blessed-android-coroutines'
version = '1.0'
}
}
}
}

0 comments on commit 10aee3b

Please sign in to comment.