You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: bom/build.gradle
+29-4Lines changed: 29 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -3,28 +3,53 @@ plugins {
3
3
id("maven-publish")
4
4
}
5
5
6
-
description ="BouncyCastle Bill of Materials (BOM)"
7
6
8
7
dependencies {
9
8
constraints {
10
-
api(project(":core"))
9
+
api(project(":prov"))
11
10
api(project(":util"))
12
-
api(project(":pg"))
13
11
api(project(":pkix"))
14
-
api(project(":prov"))
12
+
api(project(":pg"))
15
13
api(project(":tls"))
16
14
api(project(":mls"))
17
15
api(project(":mail"))
18
16
api(project(":jmail"))
19
17
}
20
18
}
21
19
20
+
22
21
publishing {
23
22
publications {
24
23
mavenJava(MavenPublication) {
25
24
groupId ='org.bouncycastle'
26
25
artifactId ="bc-$vmrange-bom"
27
26
from components.javaPlatform
27
+
pom {
28
+
name ="Bouncy Castle Java 8+ 1.82 (Bill of Materials)"
29
+
description ="This Bill of Materials POM can be used to ease dependency management when referencing multiple Bouncy Castle artifacts using Gradle or Maven."
0 commit comments