File tree Expand file tree Collapse file tree 3 files changed +34
-3
lines changed
Expand file tree Collapse file tree 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 5353// this needs to go here, otherwise it can't find config
5454apply plugin : ' io.spring.nohttp'
5555
56- allprojects {
56+ configure( allprojects. findAll {it . name != ' bom ' }) {
5757 apply plugin : ' java'
5858 apply plugin : ' idea'
5959 apply plugin : ' checkstyle'
@@ -183,8 +183,7 @@ ext {
183183
184184}
185185
186-
187- subprojects {
186+ configure(subprojects. findAll {it. name != ' bom' }) {
188187 apply plugin : ' eclipse'
189188 apply plugin : ' maven-publish'
190189
Original file line number Diff line number Diff line change 1+ include " bom"
12include " core"
23include " util"
34include " pg"
You can’t perform that action at this time.
0 commit comments