File tree Expand file tree Collapse file tree 6 files changed +6
-18
lines changed Expand file tree Collapse file tree 6 files changed +6
-18
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ sourceSets {
31
31
32
32
dependencies {
33
33
api project(' :driver-sync' )
34
- api project(' :mongocrypt ' )
34
+ api project(' :mongodb-crypt ' )
35
35
implementation " ch.qos.logback:logback-classic:$logbackVersion "
36
36
}
37
37
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ dependencies {
45
45
implementation project(path : ' :bson-record-codec' , configuration : ' default' )
46
46
implementation project(path : ' :bson-kotlin' , configuration : ' default' ), optional
47
47
implementation project(path : ' :bson-kotlinx' , configuration : ' default' ), optional
48
- mongoCryptSupportImplementation project(path : ' :mongocrypt ' , configuration : ' default' )
48
+ implementation project(path : ' :mongodb-crypt ' , configuration : ' default' ), optional
49
49
50
50
implementation " com.github.jnr:jnr-unixsocket:$jnrUnixsocketVersion " , optional
51
51
api platform(" io.netty:netty-bom:$nettyVersion " )
Original file line number Diff line number Diff line change 17
17
description = " A Reactive Streams implementation of the MongoDB Java driver"
18
18
archivesBaseName = ' mongodb-driver-reactivestreams'
19
19
20
- java {
21
- registerFeature(" mongoCryptSupport" ) {
22
- usingSourceSet(sourceSets[" main" ])
23
- }
24
- }
25
-
26
20
dependencies {
27
21
api project(path : ' :bson' , configuration : ' default' )
28
22
api project(path : ' :driver-core' , configuration : ' default' )
29
- mongoCryptSupportImplementation project(path : ' :mongocrypt' , configuration : ' default' )
30
23
31
24
api ' org.reactivestreams:reactive-streams:1.0.4'
32
25
implementation platform(" io.projectreactor:reactor-bom:$projectReactorVersion " )
Original file line number Diff line number Diff line change 20
20
pomName = ' MongoDB Driver'
21
21
}
22
22
23
- java {
24
- registerFeature(" mongoCryptSupport" ) {
25
- usingSourceSet(sourceSets[" main" ])
26
- }
27
- }
28
-
29
23
dependencies {
30
24
api project(path : ' :bson' , configuration : ' default' )
31
25
api project(path : ' :driver-core' , configuration : ' default' )
32
- mongoCryptSupportImplementation project(path : ' :mongocrypt' , configuration : ' default' )
33
26
34
27
testImplementation project(' :bson' ). sourceSets. test. output
35
28
testImplementation project(' :driver-core' ). sourceSets. test. output
Original file line number Diff line number Diff line change @@ -82,8 +82,8 @@ dependencies {
82
82
implementation project(path :' :driver-sync' , configuration :' archives' )
83
83
implementation project(path :' :driver-reactive-streams' , configuration :' archives' )
84
84
implementation project(path :' :driver-legacy' , configuration :' archives' )
85
- implementation project(path : ' :mongocrypt ' , configuration : ' archives' )
86
- implementation project(path : ' :mongocrypt ' , configuration : ' runtimeElements' )
85
+ implementation project(path : ' :mongodb-crypt ' , configuration : ' archives' )
86
+ implementation project(path : ' :mongodb-crypt ' , configuration : ' runtimeElements' )
87
87
// note that as a result of these `sourceSets` dependencies, `driver-sync/src/test/resources/logback-test.xml` is used
88
88
implementation project(' :driver-core' ). sourceSets. test. output
89
89
implementation project(' :driver-sync' ). sourceSets. test. output
Original file line number Diff line number Diff line change @@ -30,6 +30,8 @@ include ':driver-kotlin-coroutine'
30
30
include ' :bson-scala'
31
31
include ' :driver-scala'
32
32
include ' :mongocrypt'
33
+ // Project name is different from the folder name because "optional plugin" needs project name to match the artifactId.
34
+ project(" :mongocrypt" ). name = " mongodb-crypt"
33
35
include ' util:spock'
34
36
include ' util:taglets'
35
37
include ' :graalvm-native-image-app'
You can’t perform that action at this time.
0 commit comments