Files
coco 723ce1af5c a
2026-07-03 15:12:48 +08:00

17 lines
421 B
Groovy

apply plugin: "maven-publish"
afterEvaluate {
publishing {
publications {
release(MavenPublication){
from components.release
// You can then customize attributes of the publication as shown below.
groupId = 'com.github.Rafsanjani'
artifactId = 'datepickertimeline'
version = '0.4.0'
}
}
}
}