-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpublishing.gradle
More file actions
31 lines (29 loc) · 978 Bytes
/
publishing.gradle
File metadata and controls
31 lines (29 loc) · 978 Bytes
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
group = "com.dajudge.kindcontainer"
mavenPublishing {
publishToMavenCentral()
signAllPublications()
coordinates("com.dajudge.kindcontainer", "kindcontainer", version)
pom {
name = "kindcontainer"
description = "Testcontainers that start Kubernetes in Docker."
url = "https://github.com/dajudge/kindcontainer"
licenses {
license {
name = "Apache-2.0"
url = "https://www.apache.org/licenses/LICENSE-2.0.txt"
}
}
scm {
url = "https://github.com/dajudge/kindcontainer"
connection = "scm:git:git://github.com/dajudge/kindcontainer.git"
developerConnection = "scm:git:ssh://git@github.com/dajudge/kindcontainer.git"
}
developers {
developer {
id = "dajudge"
name = "Alex Stockinger"
url = "https://github.com/dajudge"
}
}
}
}