Skip to content

Commit 0e6e189

Browse files
refactor(feature-flagging): Create unique module names (#10412)
1 parent a0832db commit 0e6e189

File tree

49 files changed

+13
-13
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+13
-13
lines changed

dd-java-agent/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ includeSubprojShadowJar(project(':dd-java-agent:agent-ci-visibility'), 'ci-visib
223223
includeSubprojShadowJar(project(':dd-java-agent:agent-llmobs'), 'llm-obs', includedJarFileTree)
224224
includeSubprojShadowJar(project(':dd-java-agent:agent-logs-intake'), 'logs-intake', includedJarFileTree)
225225
includeSubprojShadowJar(project(':dd-java-agent:cws-tls'), 'cws-tls', includedJarFileTree)
226-
includeSubprojShadowJar(project(':products:feature-flagging:agent'), 'feature-flagging', includedJarFileTree)
226+
includeSubprojShadowJar(project(':products:feature-flagging:feature-flagging-agent'), 'feature-flagging', includedJarFileTree)
227227

228228
def sharedShadowJar = tasks.register('sharedShadowJar', ShadowJar) {
229229
it.configurations = [project.configurations.sharedShadowInclude]
@@ -355,7 +355,7 @@ dependencies {
355355
shadowInclude project(path: ':dd-java-agent:agent-bootstrap')
356356
shadowInclude project(path: ':dd-java-agent:agent-debugger:debugger-bootstrap')
357357
shadowInclude project(path: ':dd-java-agent:agent-otel:otel-bootstrap', configuration: 'shadow')
358-
shadowInclude project(path: ':products:feature-flagging:bootstrap')
358+
shadowInclude project(path: ':products:feature-flagging:feature-flagging-bootstrap')
359359

360360
// Includes for the shared internal shadow jar
361361
sharedShadowInclude deps.shared

dd-smoke-tests/openfeature/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ tasks.named("compileJava", JavaCompile) {
1919
}
2020

2121
dependencies {
22-
implementation project(':products:feature-flagging:api')
22+
implementation project(':products:feature-flagging:feature-flagging-api')
2323
implementation 'org.springframework.boot:spring-boot-starter-web'
2424

2525
testImplementation project(':dd-smoke-tests')
26-
testImplementation project(':products:feature-flagging:lib')
26+
testImplementation project(':products:feature-flagging:feature-flagging-lib')
2727
}
2828

2929
tasks.withType(Test).configureEach {

gradle/dependencies.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ final class CachedData {
1919
exclude(project(':components:context'))
2020
exclude(project(':components:environment'))
2121
exclude(project(':components:json'))
22-
exclude(project(':products:feature-flagging:bootstrap'))
22+
exclude(project(':products:feature-flagging:feature-flagging-bootstrap'))
2323
exclude(project(':remote-config:remote-config-api'))
2424
exclude(project(':remote-config:remote-config-core'))
2525
exclude(project(':telemetry'))

products/feature-flagging/agent/build.gradle.kts renamed to products/feature-flagging/feature-flagging-agent/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ description = "Feature flagging agent system"
1313

1414
dependencies {
1515
api(libs.slf4j)
16-
api(project(":products:feature-flagging:lib"))
16+
api(project(":products:feature-flagging:feature-flagging-lib"))
1717
api(project(":internal-api"))
1818

1919
testImplementation(project(":utils:test-utils"))

products/feature-flagging/agent/gradle.lockfile renamed to products/feature-flagging/feature-flagging-agent/gradle.lockfile

File renamed without changes.

products/feature-flagging/agent/src/main/java/com/datadog/featureflag/FeatureFlaggingSystem.java renamed to products/feature-flagging/feature-flagging-agent/src/main/java/com/datadog/featureflag/FeatureFlaggingSystem.java

File renamed without changes.

products/feature-flagging/agent/src/test/groovy/com/datadog/featureflag/FeatureFlaggingSystemTest.groovy renamed to products/feature-flagging/feature-flagging-agent/src/test/groovy/com/datadog/featureflag/FeatureFlaggingSystemTest.groovy

File renamed without changes.

products/feature-flagging/api/build.gradle.kts renamed to products/feature-flagging/feature-flagging-api/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ java {
4343
dependencies {
4444
api("dev.openfeature:sdk:1.20.1")
4545

46-
compileOnly(project(":products:feature-flagging:bootstrap"))
46+
compileOnly(project(":products:feature-flagging:feature-flagging-bootstrap"))
4747

48-
testImplementation(project(":products:feature-flagging:bootstrap"))
48+
testImplementation(project(":products:feature-flagging:feature-flagging-bootstrap"))
4949
testImplementation(libs.bundles.junit5)
5050
testImplementation(libs.bundles.mockito)
5151
testImplementation(libs.moshi)

products/feature-flagging/api/gradle.lockfile renamed to products/feature-flagging/feature-flagging-api/gradle.lockfile

File renamed without changes.

products/feature-flagging/api/src/main/java/datadog/trace/api/openfeature/DDEvaluator.java renamed to products/feature-flagging/feature-flagging-api/src/main/java/datadog/trace/api/openfeature/DDEvaluator.java

File renamed without changes.

0 commit comments

Comments
 (0)