forked from rsocket/rsocket-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpublications.gradle
More file actions
66 lines (65 loc) · 2.74 KB
/
publications.gradle
File metadata and controls
66 lines (65 loc) · 2.74 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
apply from: "${rootDir}/gradle/artifactory.gradle"
apply from: "${rootDir}/gradle/bintray.gradle"
subprojects {
plugins.withType(MavenPublishPlugin) {
publishing {
publications {
maven(MavenPublication) {
pom {
name = project.name
groupId = 'io.rsocket'
description = project.description
url = 'http://rsocket.io'
licenses {
license {
name = "The Apache Software License, Version 2.0"
url = "https://www.apache.org/licenses/LICENSE-2.0.txt"
distribution = "repo"
}
}
developers {
developer {
id = 'robertroeser'
name = 'Robert Roeser'
email = '[email protected]'
}
developer {
id = 'rdegnan'
name = 'Ryland Degnan'
email = '[email protected]'
}
developer {
id = 'yschimke'
name = 'Yuri Schimke'
email = '[email protected]'
}
developer {
id = 'OlegDokuka'
name = 'Oleh Dokuka'
email = '[email protected]'
}
developer {
id = 'mostroverkhov'
name = 'Maksym Ostroverkhov'
email = '[email protected]'
}
}
scm {
connection = 'scm:git:https://github.com/rsocket/rsocket-java.git'
developerConnection = 'scm:git:https://github.com/rsocket/rsocket-java.git'
url = 'https://github.com/rsocket/rsocket-java'
}
versionMapping {
usage('java-api') {
fromResolutionResult()
}
usage('java-runtime') {
fromResolutionResult()
}
}
}
}
}
}
}
}