File tree Expand file tree Collapse file tree 4 files changed +10
-5
lines changed Expand file tree Collapse file tree 4 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 1+ # Enable auto-env through the sdkman_auto_env config
2+ # Add key=value pairs of SDKs to use below
3+ java=17.0.12-tem
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ description = "A Scala wrapper / extension to the bson library"
1818archivesBaseName = ' mongo-scala-bson'
1919
2020dependencies {
21- implementation project(path : ' :bson' , configuration : ' default' )
21+ api project(path : ' :bson' , configuration : ' default' )
2222}
2323
2424sourceSets {
Original file line number Diff line number Diff line change @@ -108,15 +108,16 @@ configure(javaProjects) {
108108
109109configure(scalaProjects) {
110110 apply plugin : ' scala'
111+ apply plugin : ' java-library'
111112 apply plugin : ' idea'
112113 apply plugin : " com.adtran.scala-multiversion-plugin"
113114 apply plugin : " com.diffplug.spotless"
114115
115116 group = ' org.mongodb.scala'
116117
117118 dependencies {
118- implementation (' org.scala-lang:scala-library:%scala-version%' )
119- implementation (' org.scala-lang:scala-reflect:%scala-version%' )
119+ api (' org.scala-lang:scala-library:%scala-version%' )
120+ api (' org.scala-lang:scala-reflect:%scala-version%' )
120121
121122 testImplementation(platform(" org.junit:junit-bom:$junitBomVersion " ))
122123 testImplementation(" org.junit.vintage:junit-vintage-engine" )
Original file line number Diff line number Diff line change @@ -19,8 +19,9 @@ archivesBaseName = 'mongo-scala-driver'
1919
2020
2121dependencies {
22- implementation project(path : ' :bson-scala' , configuration : ' default' )
23- implementation project(path : ' :driver-reactive-streams' , configuration : ' default' )
22+ api project(path : ' :bson-scala' , configuration : ' default' )
23+ api project(path : ' :driver-reactive-streams' , configuration : ' default' )
24+ compileOnly ' com.google.code.findbugs:jsr305:1.3.9'
2425
2526 testImplementation project(' :driver-sync' )
2627 testImplementation project(' :bson' ). sourceSets. test. output
You can’t perform that action at this time.
0 commit comments