forked from briandilley/jsonrpc4j
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pom.gradle
47 lines (47 loc) · 2.01 KB
/
pom.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
42
43
44
45
46
47
allprojects { project ->
publishing {
publications {
jsonrpc4j {
pom {
name = rootProject.name.capitalize() + (project.parent ? " ($shortName)" : '')
description = project.description
url = 'https://github.com/briandilley/jsonrpc4j'
issueManagement {
system = 'GitHub'
url = 'https://github.com/briandilley/jsonrpc4j/issues'
}
ciManagement {
system = 'Github Actions'
url = 'https://github.com/briandilley/jsonrpc4j/actions'
}
inceptionYear = '2013'
developers {
developer {
id = 'briandilley'
name = 'Brian Dilley'
email = '[email protected]'
url = 'https://github.com/briandilley'
timezone = 'America/Los_Angeles'
}
}
licenses {
license {
name = 'The MIT License (MIT)'
url = 'https://github.com/briandilley/jsonrpc4j/blob/develop/LICENSE'
distribution = 'repo'
comments = 'A business-friendly OSS license'
}
}
scm {
connection = 'scm:git:https://github.com/briandilley/jsonrpc4j.git'
developerConnection = '[email protected]:briandilley/jsonrpc4j.git'
url = 'https://github.com/briandilley/jsonrpc4j'
}
distributionManagement {
downloadUrl = 'https://github.com/briandilley/jsonrpc4j/releases'
}
}
}
}
}
}