File tree 4 files changed +10
-5
lines changed
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"
18
18
archivesBaseName = ' mongo-scala-bson'
19
19
20
20
dependencies {
21
- implementation project(path : ' :bson' , configuration : ' default' )
21
+ api project(path : ' :bson' , configuration : ' default' )
22
22
}
23
23
24
24
sourceSets {
Original file line number Diff line number Diff line change @@ -108,15 +108,16 @@ configure(javaProjects) {
108
108
109
109
configure(scalaProjects) {
110
110
apply plugin : ' scala'
111
+ apply plugin : ' java-library'
111
112
apply plugin : ' idea'
112
113
apply plugin : " com.adtran.scala-multiversion-plugin"
113
114
apply plugin : " com.diffplug.spotless"
114
115
115
116
group = ' org.mongodb.scala'
116
117
117
118
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%' )
120
121
121
122
testImplementation(platform(" org.junit:junit-bom:$junitBomVersion " ))
122
123
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'
19
19
20
20
21
21
dependencies {
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'
24
25
25
26
testImplementation project(' :driver-sync' )
26
27
testImplementation project(' :bson' ). sourceSets. test. output
You can’t perform that action at this time.
0 commit comments