push-jitpack
1
在 library build.gradle 添加
id 'maven-publish'
afterEvaluate {
publishing {
publications {
release(MavenPublication) {
from components.release
groupId = 'com.github.moriafly'
artifactId = 'regret'
version = '1.0.0-alpha01'
}
}
}
}