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.
1 parent 268432b commit bbc3f84Copy full SHA for bbc3f84
MPChartLib/build.gradle
@@ -1,5 +1,6 @@
1
plugins {
2
id 'com.android.library'
3
+ id 'maven-publish'
4
}
5
6
android {
@@ -27,3 +28,13 @@ dependencies {
27
28
implementation 'androidx.annotation:annotation:1.2.0'
29
testImplementation 'junit:junit:4.13.2'
30
31
+
32
+project.afterEvaluate {
33
+ publishing {
34
+ publications {
35
+ release(MavenPublication) {
36
+ from components.release
37
+ }
38
39
40
+}
jitpack.yml
@@ -0,0 +1,5 @@
+jdk:
+ - openjdk11
+install:
+ - ./gradlew :MPChartLib:build :MPChartLib:publishToMavenLocal -x :MPChartLib:test
+ - find . -name "*.aar"
0 commit comments