forked from eclipse-edc/Connector
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: extract base controllers for all DSP apis (eclipse-edc#4666)
- Loading branch information
Showing
33 changed files
with
1,303 additions
and
1,050 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
data-protocols/dsp/dsp-catalog/lib/dsp-catalog-http-api-lib/build.gradle.kts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/* | ||
* Copyright (c) 2024 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) | ||
* | ||
* 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: | ||
* Bayerische Motoren Werke Aktiengesellschaft (BMW AG) - initial API and implementation | ||
* | ||
*/ | ||
|
||
plugins { | ||
`java-library` | ||
`java-test-fixtures` | ||
} | ||
|
||
dependencies { | ||
api(project(":data-protocols:dsp:dsp-spi")) | ||
api(project(":data-protocols:dsp:dsp-http-spi")) | ||
api(project(":spi:common:json-ld-spi")) | ||
|
||
testImplementation(project(":core:common:lib:transform-lib")) | ||
testImplementation(project(":data-protocols:dsp:dsp-catalog:dsp-catalog-transform")) | ||
testImplementation(testFixtures(project(":extensions:common:http:jersey-core"))) | ||
testImplementation(libs.restAssured) | ||
|
||
testFixturesApi(project(":core:common:junit")) | ||
testFixturesImplementation(testFixtures(project(":extensions:common:http:jersey-core"))) | ||
testFixturesImplementation(libs.restAssured) | ||
testFixturesImplementation(libs.assertj) | ||
testFixturesImplementation(libs.mockito.core) | ||
} |
File renamed without changes.
Oops, something went wrong.