Skip to content

Commit

Permalink
Merge pull request #23 from truzzt/feat/edc-worker
Browse files Browse the repository at this point in the history
Logging House EDC Worker
  • Loading branch information
jannotti-glaucio committed Jul 3, 2024
2 parents c0215f3 + 029eecb commit 5239c00
Show file tree
Hide file tree
Showing 42 changed files with 1,448 additions and 254 deletions.
5 changes: 5 additions & 0 deletions logging-house-client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ val jsonVersion: String by project
dependencies {
implementation("${edcGroup}:control-plane-core:${edcVersion}")
implementation("${edcGroup}:http-spi:${edcVersion}")
implementation("${edcGroup}:sql-core:${edcVersion}")
implementation("${edcGroup}:transaction-datasource-spi:${edcVersion}")

implementation("com.squareup.okhttp3:okhttp:${okHttpVersion}")
implementation("org.json:json:${jsonVersion}")
Expand All @@ -22,6 +24,9 @@ dependencies {
implementation("de.fraunhofer.iais.eis.ids.infomodel:infomodel-java:1.0.2-basecamp")
implementation("de.fraunhofer.iais.eis.ids.infomodel:infomodel-util:1.0.2-basecamp")

implementation("org.postgresql:postgresql:42.4.5")
implementation("org.flywaydb:flyway-core:9.0.1")

testImplementation("org.assertj:assertj-core:${assertj}")
testImplementation("org.junit.jupiter:junit-jupiter-api:${jupiterVersion}")
testImplementation("org.mockito:mockito-core:${mockitoVersion}")
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
/*
* Copyright (c) 2024 truzzt GmbH
*
* This program and the accompanying materials are made available under the
* terms of the Apache License, Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
*
* Contributors:
* truzzt GmbH - Initial implementation
*
*/

package com.truzzt.extension.logginghouse.client;

public class ConfigConstants {

static final String LOGGINGHOUSE_ENABLED = "edc.logginghouse.client.enabled";

static final String LOGGINGHOUSE_SERVER_URL_SETTING = "edc.logginghouse.client.server.url";

static final String LOGGINGHOUSE_FLYWAY_REPAIR_SETTING = "edc.logginghouse.client.flyway.repair";

static final String LOGGINGHOUSE_FLYWAY_CLEAN_SETTING = "edc.logginghouse.client.flyway.clean";

static final String LOGGINGHOUSE_EXTENSION_MAX_WORKERS = "edc.logginghouse.client.workers.max";

static final String LOGGINGHOUSE_EXTENSION_WORKERS_DELAY = "edc.logginghouse.client.workers.delay";

static final String LOGGINGHOUSE_EXTENSION_WORKERS_PERIOD = "edc.logginghouse.client.workers.period";
}

This file was deleted.

Loading

0 comments on commit 5239c00

Please sign in to comment.