This repository was archived by the owner on May 30, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -108,6 +108,7 @@ ext.versions = [
108108// Jackson in "libraries.optional" because we need to generate OSGi optional import
109109// headers for it.
110110libraries. internal = [
111+ " com.launchdarkly:launchdarkly-java-sdk-common:${ versions.launchdarklyJavaSdkCommon} " ,
111112 " commons-codec:commons-codec:${ versions.commonsCodec} " ,
112113 " com.google.code.gson:gson:${ versions.gson} " ,
113114 " com.google.guava:guava:${ versions.guava} " ,
@@ -116,10 +117,6 @@ libraries.internal = [
116117 " org.yaml:snakeyaml:${ versions.snakeyaml} " ,
117118]
118119
119- libraries. common = [
120- " com.launchdarkly:launchdarkly-java-sdk-common:${ versions.launchdarklyJavaSdkCommon} " ,
121- ]
122-
123120// Add dependencies to "libraries.external" that are exposed in our public API, or that have
124121// global state that must be shared between the SDK and the caller. Putting dependencies
125122// here has the following effects:
@@ -179,7 +176,7 @@ configurations {
179176
180177dependencies {
181178 implementation libraries. internal
182- api libraries. external, libraries . common
179+ api libraries. external
183180 testImplementation libraries. test, libraries. internal, libraries. external
184181 optional libraries. optional
185182
Original file line number Diff line number Diff line change @@ -24,7 +24,8 @@ ext.versions = [
2424 " gson" : " 2.7" ,
2525 " logback" : " 1.1.3" ,
2626 " okhttp" : " 4.5.0" ,
27- " testHelpers" : " 1.1.0"
27+ " testHelpers" : " 1.1.0" ,
28+ " launchdarklyJavaSdkCommon" : project(" :sdk" ). versions[" launchdarklyJavaSdkCommon" ]
2829]
2930
3031configurations {
@@ -33,6 +34,7 @@ configurations {
3334
3435dependencies {
3536 implementation project(" :sdk" )
37+ implementation " com.launchdarkly:launchdarkly-java-sdk-common:${ versions.launchdarklyJavaSdkCommon} "
3638 implementation " ch.qos.logback:logback-classic:${ versions.logback} "
3739 implementation " com.google.code.gson:gson:${ versions.gson} "
3840 implementation " com.squareup.okhttp3:okhttp:${ versions.okhttp} "
You can’t perform that action at this time.
0 commit comments