File tree Expand file tree Collapse file tree 2 files changed +46
-0
lines changed
Expand file tree Collapse file tree 2 files changed +46
-0
lines changed Original file line number Diff line number Diff line change 1+ plugins {
2+ id(" io.github.gradlebom.generator-plugin" ) version " 1.0.0.Final"
3+ id(" net.kyori.indra" )
4+ id(" net.kyori.indra.publishing" )
5+ signing
6+ }
7+
8+ group = " net.onelitefeather.microtus"
9+
10+ bomGenerator {
11+ val version = rootProject.version as String
12+ includeDependency(" net.onelitefeather.microtus" , " Microtus" , version)
13+ includeDependency(" net.onelitefeather.microtus.testing" , " testing" , version)
14+ }
15+
16+ indra {
17+ javaVersions {
18+ target(21 )
19+ testWith(21 )
20+ }
21+
22+ github(" OneLiteFeatherNET" , " Microtus" ) {
23+ ci(true )
24+ publishing(false )
25+ }
26+ mitLicense()
27+ signWithKeyFromPrefixedProperties(" onelitefeather" )
28+ description = " Bill of materials for Microtus projects."
29+ configurePublications {
30+ pom {
31+ developers {
32+ developer {
33+ id.set(" themeinerlp" )
34+ name.set(" Phillipp Glanz" )
35+ email.set(" p.glanz@madfix.me" )
36+ }
37+ developer {
38+ id.set(" theEvilReaper" )
39+ name.set(" Steffen Wonning" )
40+ email.set(" steffenwx@gmail.com" )
41+ }
42+ }
43+ }
44+ }
45+ }
Original file line number Diff line number Diff line change @@ -151,3 +151,4 @@ include("jmh-benchmarks")
151151include(" jcstress-tests" )
152152include(" demo" )
153153include(" testing" )
154+ include(" bom" )
You can’t perform that action at this time.
0 commit comments