File tree 3 files changed +6
-5
lines changed
3 files changed +6
-5
lines changed 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 @@ -109,15 +109,16 @@ configure(javaProjects) {
109
109
110
110
configure(scalaProjects) {
111
111
apply plugin : ' scala'
112
+ apply plugin : ' java-library'
112
113
apply plugin : ' idea'
113
114
apply plugin : " com.adtran.scala-multiversion-plugin"
114
115
apply plugin : " com.diffplug.spotless"
115
116
116
117
group = ' org.mongodb.scala'
117
118
118
119
dependencies {
119
- implementation (' org.scala-lang:scala-library:%scala-version%' )
120
- implementation (' org.scala-lang:scala-reflect:%scala-version%' )
120
+ api (' org.scala-lang:scala-library:%scala-version%' )
121
+ api (' org.scala-lang:scala-reflect:%scala-version%' )
121
122
122
123
testImplementation(platform(" org.junit:junit-bom:$junitBomVersion " ))
123
124
testImplementation(" org.junit.vintage:junit-vintage-engine" )
Original file line number Diff line number Diff line change @@ -19,8 +19,8 @@ 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
24
compileOnly ' com.google.code.findbugs:jsr305:1.3.9'
25
25
26
26
testImplementation project(' :driver-sync' )
You can’t perform that action at this time.
0 commit comments