We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5ced838 + 9f1cb1f commit ceb86d1Copy full SHA for ceb86d1
core/build.gradle
@@ -1,6 +1,7 @@
1
plugins {
2
id 'com.android.library'
3
id 'kotlin-android'
4
+ id 'maven-publish'
5
}
6
7
android {
@@ -50,4 +51,14 @@ dependencies {
50
51
testImplementation 'junit:junit:4.+'
52
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
53
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
54
+}
55
+
56
+project.afterEvaluate {
57
+ publishing {
58
+ publications {
59
+ release(MavenPublication) {
60
+ from components.release
61
+ }
62
63
64
jitpack.yml
@@ -0,0 +1,4 @@
+jdk:
+ - openjdk11
+install:
+ - ./gradlew :core:build :core:publishToMavenLocal
0 commit comments