Skip to content

Commit

Permalink
build: explicitely add dependencies to fix docker compose build
Browse files Browse the repository at this point in the history
  • Loading branch information
ewan-escience committed Feb 22, 2024
1 parent ade237d commit 5e5c584
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions scrapers/pom.xml
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]>
Expand Down Expand Up @@ -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>

0 comments on commit 5e5c584

Please sign in to comment.