forked from raamcosta/compose-destinations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
publish.gradle
37 lines (32 loc) · 1.16 KB
/
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
32
33
34
35
36
37
apply plugin: "com.vanniktech.maven.publish"
def tag = "git describe --tags --abbrev=0".execute().text.trim()
group = "io.github.raamcosta.compose-destinations"
version = tag
mavenPublishing {
publishToMavenCentral("S01")
signAllPublications()
pom {
description = "Annotation processing library for type-safe Jetpack Compose navigation with no boilerplate."
inceptionYear = "2021"
url = "https://github.com/raamcosta/compose-destinations"
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 = "raamcosta"
name = "Rafael Costa"
url = "https://github.com/raamcosta"
}
}
scm {
url = "https://github.com/raamcosta/compose-destinations.git"
connection = "scm:[email protected]:raamcosta/compose-destinations.git"
developerConnection = "scm:[email protected]:raamcosta/compose-destinations.git"
}
}
}