Trying to use jsonpath library

This commit is contained in:
Luca Frosini 2024-05-09 17:46:08 +02:00
parent 764a3b5b0e
commit 2b3506ba1f
2 changed files with 11 additions and 3 deletions

View File

@ -2,7 +2,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
# Changelog for Catalogue Core Library # Changelog for Catalogue Core Library
## [v1.0.0] ## [v1.0.0-SNAPSHOT]
- First Version - First Version

12
pom.xml
View File

@ -7,7 +7,7 @@
</parent> </parent>
<groupId>org.gcube.data-catalogue</groupId> <groupId>org.gcube.data-catalogue</groupId>
<artifactId>catalogue-core</artifactId> <artifactId>catalogue-core</artifactId>
<version>1.0.0</version> <version>1.0.0-SNAPSHOT</version>
<name>Catalogue Core Library</name> <name>Catalogue Core Library</name>
<properties> <properties>
@ -169,7 +169,7 @@
<version>[3.3.0-SNAPSHOT,4.0.0-SNAPSHOT)</version> <version>[3.3.0-SNAPSHOT,4.0.0-SNAPSHOT)</version>
</dependency> </dependency>
<!-- Used to detect Resource MimeTypes --> <!-- Used to detect Resource MimeTypes -->
<dependency> <dependency>
<groupId>org.apache.tika</groupId> <groupId>org.apache.tika</groupId>
<artifactId>tika-core</artifactId> <artifactId>tika-core</artifactId>
@ -205,6 +205,14 @@
<artifactId>gcube-jackson-databind</artifactId> <artifactId>gcube-jackson-databind</artifactId>
</dependency> </dependency>
<!-- To find metadata in extras -->
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
<version>2.9.0</version>
</dependency>
<!-- Test libraries --> <!-- Test libraries -->
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>