File tree 3 files changed +34
-3
lines changed
3 files changed +34
-3
lines changed Original file line number Diff line number Diff line change
1
+ plugins {
2
+ id(" java-platform" )
3
+ id(" maven-publish" )
4
+ }
5
+
6
+ description = " BouncyCastle Bill of Materials (BOM)"
7
+
8
+ dependencies {
9
+ constraints {
10
+ api(project(" :core" ))
11
+ api(project(" :util" ))
12
+ api(project(" :pg" ))
13
+ api(project(" :pkix" ))
14
+ api(project(" :prov" ))
15
+ api(project(" :tls" ))
16
+ api(project(" :test" ))
17
+ api(project(" :mls" ))
18
+ api(project(" :mail" ))
19
+ api(project(" :jmail" ))
20
+ }
21
+ }
22
+
23
+ publishing {
24
+ publications {
25
+ mavenJava(MavenPublication ) {
26
+ groupId = ' org.bouncycastle'
27
+ artifactId = " bc-bom-$vmrange "
28
+ from components. javaPlatform
29
+ }
30
+ }
31
+ }
Original file line number Diff line number Diff line change 53
53
// this needs to go here, otherwise it can't find config
54
54
apply plugin : ' io.spring.nohttp'
55
55
56
- allprojects {
56
+ configure( allprojects. findAll {it . name != ' bom ' }) {
57
57
apply plugin : ' java'
58
58
apply plugin : ' idea'
59
59
apply plugin : ' checkstyle'
@@ -183,8 +183,7 @@ ext {
183
183
184
184
}
185
185
186
-
187
- subprojects {
186
+ configure(subprojects. findAll {it. name != ' bom' }) {
188
187
apply plugin : ' eclipse'
189
188
apply plugin : ' maven-publish'
190
189
Original file line number Diff line number Diff line change
1
+ include " bom"
1
2
include " core"
2
3
include " util"
3
4
include " pg"
You can’t perform that action at this time.
0 commit comments