-
Notifications
You must be signed in to change notification settings - Fork 8
/
publish.gradle
32 lines (29 loc) · 947 Bytes
/
publish.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
apply plugin: "com.vanniktech.maven.publish"
group = "io.github.rroohit"
version = "3.0.1"
mavenPublishing {
pom {
description = "Jetpack Compose Image Crop View."
inceptionYear = "2022"
url = "https://github.com/rroohit/ImageCropView"
licenses {
license {
name = "The Apache Software License, Version 2.0"
url = "http://www.apache.org/licenses/LICENSE-2.0.txt"
distribution = "repo"
}
}
developers {
developer {
id = "rroohit"
name = "Rohit Chavan"
url = "https://github.com/rroohit/"
}
}
scm {
url = "https://github.com/rroohit/ImageCropView.git"
connection = "scm:git:github.com/rroohit/ImageCropView.git"
developerConnection = "scm:git:github.com/rroohit/ImageCropView.git"
}
}
}