-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
publish-setup.gradle
41 lines (35 loc) · 1.43 KB
/
publish-setup.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
38
39
40
41
allprojects {
plugins.withId("com.vanniktech.maven.publish.base") {
project.group = "io.github.centrifugal"
project.version = "0.4.2"
mavenPublishing {
publishToMavenCentral()
// Signing will be applied to non-snapshot builds.
// Uses credentials as described above, supports both regular and in memory signing.
signAllPublications()
pom {
name = 'Centrifuge Java'
description = 'Android and General Java client for Centrifugo server and Centrifuge library'
url = 'https://github.com/centrifugal/centrifuge-java'
licenses {
license {
name = 'MIT License'
url = 'http://www.opensource.org/licenses/mit-license.php'
}
}
developers {
developer {
id = 'FZambia'
name = 'Alexander Emelin'
email = '[email protected]'
}
}
scm {
connection = 'scm:git:git://github.com/centrifugal/centrifuge-java.git'
developerConnection = 'scm:git:ssh://github.com:centrifugal/centrifuge-java.git'
url = 'http://github.com/centrifugal/centrifuge-java'
}
}
}
}
}