Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add logging-house-client #732

Merged
merged 14 commits into from
Apr 5, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,15 @@ please see [changelog_updates.md](docs/dev/changelog_updates.md).
#### Major Changes

#### Minor Changes
- Logginghouse-Client: Add logging-house-client extension 0.1.0

#### Patch Changes
- Docs: Enhanced starting a Http-Pull over the EDC-Ui documentation

### Deployment Migration Notes
- new logging-house-client env for mds:
- ```CLEARINGHOUSE_CLIENT_EXTENSION_ENABLED:``` "true"
- ```EDC_CLEARINGHOUSE_LOG_URL:``` https://example.com
schoenenberg marked this conversation as resolved.
Show resolved Hide resolved

#### Compatible Versions

Expand Down
7 changes: 7 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,13 @@ allprojects {
maven {
url = uri("https://oss.sonatype.org/content/repositories/snapshots/")
}
maven {
url = uri("https://maven.pkg.github.com/truzzt/mds-ap3")
credentials {
username = project.findProperty("gpr.user") as String? ?: System.getenv("USERNAME")
password = project.findProperty("gpr.key") as String? ?: System.getenv("TOKEN")
}
}
}
}

Expand Down
1 change: 1 addition & 0 deletions launchers/common/base-mds/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ dependencies {

// Currently there are no mds-specific EDC extensions
tmberthold marked this conversation as resolved.
Show resolved Hide resolved
// The MDS broker and MDS clearing house extensions are in the process of being migrated to the DSP protocol
implementation("logging-house:logging-house-client:0.1.0")
}

val sovityEdcGroup: String by project
Expand Down
Loading