Skip to content

Commit 9e756ed

Browse files
committed
Fixed up readme and naming of projects
1 parent 1530ab4 commit 9e756ed

File tree

37 files changed

+37
-22
lines changed

37 files changed

+37
-22
lines changed

README.md

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,25 @@ numbers.
1616

1717
All libraries are available on maven central.
1818

19-
| Library | Purpose | Version |
20-
|-------------|---------------|-----------------------------------------------------------------------------------------------|
21-
| smr | Core Library | ![State Machine Redux](https://img.shields.io/maven-central/v/com.codeheadsystems/smr) |
22-
| smr-metrics | Metrics addon | ![State Machine Redux](https://img.shields.io/maven-central/v/com.codeheadsystems/smr-metrics) |
23-
| smr-yml | YAML support | ![State Machine Redux](https://img.shields.io/maven-central/v/com.codeheadsystems/smr-yml) |
19+
| Library | Purpose | Version |
20+
|---------------------|-------------------------------------|------------------------------------------------------------------------------------------------|
21+
| smr | Core Library | ![State Machine Redux](https://img.shields.io/maven-central/v/com.codeheadsystems/smr) |
22+
| smr-metrics | Metrics addon | ![State Machine Redux](https://img.shields.io/maven-central/v/com.codeheadsystems/smr-metrics) |
23+
| smr-yml | YAML support | ![State Machine Redux](https://img.shields.io/maven-central/v/com.codeheadsystems/smr-yml) |
24+
| codehead-test | Testing libraries | ![CodeHead Test](https://img.shields.io/maven-central/v/com.codeheadsystems/codehead-test) |
25+
| database-test | Database testing libraries | ![Database Test](https://img.shields.io/maven-central/v/com.codeheadsystems/database-test) |
26+
| feature-flag | Feature Flag | ![Feature Flag](https://img.shields.io/maven-central/v/com.codeheadsystems/feature-flag) |
27+
| feature-flag-ddb | Feature Flag DDB Support | ![Feature Flag](https://img.shields.io/maven-central/v/com.codeheadsystems/feature-flag-ddb) |
28+
| feature-flag-etcd | Feature Flag etcd Support | ![Feature Flag](https://img.shields.io/maven-central/v/com.codeheadsystems/feature-flag-etcd) |
29+
| feature-flag-metrics | Feature Flag metrics support | ![Feature Flag](https://img.shields.io/maven-central/v/com.codeheadsystems/feature-flag-metrics) |
30+
| feature-flag-sql | Feature Flag SQL support | ![Feature Flag](https://img.shields.io/maven-central/v/com.codeheadsystems/feature-flag-sql) |
31+
| metrics | Metrics | ![Metrics](https://img.shields.io/maven-central/v/com.codeheadsystems/metrics) |
32+
| metrics-declarative | Metrics declaritive style | ![Metrics](https://img.shields.io/maven-central/v/com.codeheadsystems/metrics-declarative) |
33+
| metrics-micrometer | Metrics with micrometer support | ![Metrics](https://img.shields.io/maven-central/v/com.codeheadsystems/metrics-micrometer) |
34+
| metrics-test | Metrics test code | ![Metrics](https://img.shields.io/maven-central/v/com.codeheadsystems/metrics-test) |
35+
| oop-mock | Out of process mocking | ![Oop Mock](https://img.shields.io/maven-central/v/com.codeheadsystems/oop-mock) |
36+
| oop-mock-client | Out of process mocking | ![Oop Mock](https://img.shields.io/maven-central/v/com.codeheadsystems/oop-mock-client) |
37+
| oop-mock-dynamodb | Out of process mocking | ![Oop Mock](https://img.shields.io/maven-central/v/com.codeheadsystems/oop-mock-dynamodb) |
38+
| oop-mock-tests | Out of process mocking | ![Oop Mock](https://img.shields.io/maven-central/v/com.codeheadsystems/oop-mock-tests) |
2439

2540

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ dependencies {
77

88
// This dependency is exported to consumers, that is to say found on their compile classpath.
99
//api(libs.commons.math3)
10-
api(project(":ff"))
11-
api(project(":ff-ddb"))
10+
api(project(":feature-flag"))
11+
api(project(":feature-flag-ddb"))
1212

1313
// This dependency is used internally, and not exposed to consumers on their own compile classpath.
1414
implementation(libs.slf4j.api)
@@ -18,7 +18,7 @@ dependencies {
1818
compileOnly(libs.immutables.annotations)
1919
annotationProcessor(libs.immutables.value)
2020

21-
testImplementation(project(":ff-test"))
21+
testImplementation(project(":feature-flag-test"))
2222
testImplementation(libs.bundles.logback)
2323
testImplementation(libs.bundles.testing)
2424
testImplementation(project(":database-test"))
File renamed without changes.

ff-ddb-test/src/test/java/org/codeheadsystems/featureflag/manager/impl/DdbFeatureLookupManagerIntegTest.java renamed to feature-flag-ddb-test/src/test/java/org/codeheadsystems/featureflag/manager/impl/DdbFeatureLookupManagerIntegTest.java

File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66

77
dependencies {
88

9-
api(project(":ff"))
9+
api(project(":feature-flag"))
1010

1111
// This dependency is used internally, and not exposed to consumers on their own compile classpath.
1212
implementation(libs.slf4j.api)

ff-ddb/src/main/java/org/codeheadsystems/featureflag/manager/impl/DdbControlPlane.java renamed to feature-flag-ddb/src/main/java/org/codeheadsystems/featureflag/manager/impl/DdbControlPlane.java

File renamed without changes.

ff-ddb/src/main/java/org/codeheadsystems/featureflag/manager/impl/DdbFeatureLookupManager.java renamed to feature-flag-ddb/src/main/java/org/codeheadsystems/featureflag/manager/impl/DdbFeatureLookupManager.java

File renamed without changes.

ff-ddb/src/main/java/org/codeheadsystems/featureflag/manager/impl/DynamoDbConfiguration.java renamed to feature-flag-ddb/src/main/java/org/codeheadsystems/featureflag/manager/impl/DynamoDbConfiguration.java

File renamed without changes.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ dependencies {
88

99
// This dependency is exported to consumers, that is to say found on their compile classpath.
1010
//api(libs.commons.math3)
11-
api(project(":ff"))
11+
api(project(":feature-flag"))
1212

1313
// This dependency is used internally, and not exposed to consumers on their own compile classpath.
1414
implementation(libs.slf4j.api)
1515
implementation(libs.jetcd)
1616

17-
testImplementation(project(":ff-test"))
17+
testImplementation(project(":feature-flag-test"))
1818
testImplementation(libs.bundles.logback)
1919
testImplementation(libs.bundles.testing)
2020
testImplementation(libs.jetcd.test)

ff-etcd/src/main/java/org/codeheadsystems/featureflag/manager/impl/EtcdFeatureLookupManager.java renamed to feature-flag-etcd/src/main/java/org/codeheadsystems/featureflag/manager/impl/EtcdFeatureLookupManager.java

File renamed without changes.

0 commit comments

Comments
 (0)