mirrored from https://www.bouncycastle.org/repositories/bc-java
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathbuild.gradle
More file actions
55 lines (51 loc) · 1.7 KB
/
Copy pathbuild.gradle
File metadata and controls
55 lines (51 loc) · 1.7 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
plugins {
id("java-platform")
id("maven-publish")
}
dependencies {
constraints {
api(project(":prov"))
api(project(":util"))
api(project(":pkix"))
api(project(":pg"))
api(project(":tls"))
api(project(":mls"))
api(project(":mail"))
api(project(":jmail"))
}
}
publishing {
publications {
mavenJava(MavenPublication) {
groupId = 'org.bouncycastle'
artifactId = "bc-$vmrange-bom"
from components.javaPlatform
pom {
name = "Bouncy Castle Java 8+ ${version} (Bill of Materials)"
description = "This Bill of Materials POM can be used to ease dependency management when referencing multiple Bouncy Castle artifacts using Gradle or Maven."
url = 'https://www.bouncycastle.org/download/bouncy-castle-java/'
licenses {
license {
name = 'Bouncy Castle Licence'
url = 'https://www.bouncycastle.org/licence.html'
distribution = 'repo'
}
}
scm {
url = 'https://github.com/bcgit/bc-java'
}
issueManagement {
system = 'GitHub'
url = 'https://github.com/bcgit/bc-java/issues'
}
developers {
developer {
id = 'feedback-crypto'
name = 'The Legion of the Bouncy Castle Inc.'
email = 'feedback-crypto@bouncycastle.org'
}
}
}
}
}
}