File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -45,4 +45,10 @@ dependencies {
4545 testRuntimeOnly ' org.junit.vintage:junit-vintage-engine'
4646}
4747
48+ jar {
49+ manifest {
50+ attributes(" Automatic-Module-Name" : " rsocket.core" )
51+ }
52+ }
53+
4854description = " Core functionality for the RSocket library"
Original file line number Diff line number Diff line change @@ -37,4 +37,10 @@ dependencies {
3737 testRuntimeOnly ' org.junit.jupiter:junit-jupiter-engine'
3838}
3939
40+ jar {
41+ manifest {
42+ attributes(" Automatic-Module-Name" : " rsocket.micrometer" )
43+ }
44+ }
45+
4046description = ' Transparent Metrics exposure to Micrometer'
Original file line number Diff line number Diff line change @@ -34,4 +34,10 @@ dependencies {
3434 implementation ' junit:junit'
3535}
3636
37+ jar {
38+ manifest {
39+ attributes(" Automatic-Module-Name" : " rsocket.test" )
40+ }
41+ }
42+
3743description = ' Test utilities for RSocket projects'
Original file line number Diff line number Diff line change @@ -33,4 +33,10 @@ dependencies {
3333 testRuntimeOnly ' org.junit.jupiter:junit-jupiter-engine'
3434}
3535
36+ jar {
37+ manifest {
38+ attributes(" Automatic-Module-Name" : " rsocket.transport.local" )
39+ }
40+ }
41+
3642description = ' Local RSocket transport implementation'
Original file line number Diff line number Diff line change @@ -46,4 +46,10 @@ dependencies {
4646 testRuntimeOnly ' io.netty:netty-tcnative-boringssl-static' + os_suffix
4747}
4848
49+ jar {
50+ manifest {
51+ attributes(" Automatic-Module-Name" : " rsocket.transport.netty" )
52+ }
53+ }
54+
4955description = ' Reactor Netty RSocket transport implementations (TCP, Websocket)'
You can’t perform that action at this time.
0 commit comments