-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: explicitely add dependencies to fix docker compose build
- Loading branch information
1 parent
ade237d
commit 5e5c584
Showing
1 changed file
with
18 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<!-- | ||
SPDX-FileCopyrightText: 2022 - 2023 Ewan Cahen (Netherlands eScience Center) <[email protected]> | ||
SPDX-FileCopyrightText: 2022 - 2023 Netherlands eScience Center | ||
SPDX-FileCopyrightText: 2022 - 2024 Christian Meeßen (GFZ) <[email protected]> | ||
SPDX-FileCopyrightText: 2022 - 2024 Ewan Cahen (Netherlands eScience Center) <[email protected]> | ||
SPDX-FileCopyrightText: 2022 - 2024 Helmholtz Centre Potsdam - GFZ German Research Centre for Geosciences | ||
SPDX-FileCopyrightText: 2022 - 2024 Netherlands eScience Center | ||
SPDX-FileCopyrightText: 2022 Matthias Rüster (GFZ) <[email protected]> | ||
SPDX-FileCopyrightText: 2024 Jason Maassen (Netherlands eScience Center) <[email protected]> | ||
|
@@ -159,13 +159,27 @@ SPDX-License-Identifier: Apache-2.0 | |
<scope>test</scope> | ||
</dependency> | ||
|
||
<!-- --> | ||
<!-- https://mvnrepository.com/artifact/org.wiremock/wiremock --> | ||
<dependency> | ||
<groupId>org.wiremock</groupId> | ||
<artifactId>wiremock</artifactId> | ||
<version>3.3.1</version> | ||
<version>3.4.1</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind --> | ||
<dependency> | ||
<groupId>com.fasterxml.jackson.core</groupId> | ||
<artifactId>jackson-databind</artifactId> | ||
<version>2.16.1</version> | ||
</dependency> | ||
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml --> | ||
<dependency> | ||
<groupId>com.fasterxml.jackson.dataformat</groupId> | ||
<artifactId>jackson-dataformat-yaml</artifactId> | ||
<version>2.16.1</version> | ||
</dependency> | ||
|
||
|
||
|
||
</dependencies> | ||
</project> |