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 811c340 commit 69981deCopy full SHA for 69981de
1 file changed
library/build.gradle
@@ -1,4 +1,5 @@
1
apply plugin: 'com.android.library'
2
+apply plugin: 'maven-publish'
3
4
android {
5
compileSdkVersion 28
@@ -65,4 +66,19 @@ tasks.register('javadocJar', Jar) {
65
66
artifacts {
67
archives javadocJar
68
archives sourcesJar
69
+}
70
+
71
+// Jitpack 构建配置
72
+publishing {
73
+ publications {
74
+ release(MavenPublication) {
75
+ groupId = 'com.github.getActivity'
76
+ artifactId = 'ShapeView'
77
+ version = '9.5'
78
79
+ afterEvaluate {
80
+ from components.release
81
+ }
82
83
84
}
0 commit comments