Skip to content

Commit 75f0d94

Browse files
committed
Set Maven artifact name and description for each provider
Signed-off-by: Bence Hornák <[email protected]>
1 parent eee3f2d commit 75f0d94

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

buildSrc/src/main/kotlin/dev.openfeature.provider-conventions.gradle.kts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,6 @@ mavenPublishing {
3838
version = findProperty("version").toString()
3939
)
4040
pom {
41-
name.set("OpenFeature Kotlin SDK")
42-
description.set(
43-
"This is the Kotlin implementation of OpenFeature, a vendor-agnostic abstraction library for evaluating feature flags."
44-
)
4541
url.set("https://openfeature.dev")
4642
licenses {
4743
license {

providers/env-var/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Environment Variables Kotlin Provider
22

3-
Environment Variables provider allows you to read feature flags from the [process's environment](https://en.wikipedia.org/wiki/Environment_variable).
3+
The Environment Variables provider allows you to read feature flags from the [process's environment](https://en.wikipedia.org/wiki/Environment_variable).
44

55
## Supported platforms
66

providers/env-var/build.gradle.kts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,15 @@ kotlin {
3535
}
3636
}
3737

38+
mavenPublishing {
39+
pom {
40+
name.set("OpenFeature Environment Variables Kotlin Provider")
41+
description.set(
42+
"The Environment Variables provider allows you to read feature flags from the process's environment."
43+
)
44+
}
45+
}
46+
3847
// Set test environment variable for tests
3948
// Used in ./commonTest/kotlin/dev/openfeature/kotlin/contrib/providers/envvar/PlatformSpecificEnvironmentGatewayTest.kt
4049
val testEnvironmentVariable = "TEST_ENVIRONMENT_VARIABLE" to "foo"

0 commit comments

Comments
 (0)