17 lines
413 B
Groovy
17 lines
413 B
Groovy
apply plugin: 'maven-publish'
|
|
|
|
// https://developer.android.com/build/publish-library/upload-library?hl=zh-cn#create-pub
|
|
publishing {
|
|
publications {
|
|
release(MavenPublication) {
|
|
groupId = 'com.github.hzw1199'
|
|
artifactId = 'AwesomeWebView-Android'
|
|
version = '2.1.0'
|
|
|
|
afterEvaluate {
|
|
from components.release
|
|
}
|
|
}
|
|
}
|
|
}
|