Skip to content

Commit bdad123

Browse files
committed
Merge branch 'hotfix-0.8.1-update-dependencies' into main
2 parents fb2b483 + 163d5ca commit bdad123

File tree

2 files changed

+14
-21
lines changed

2 files changed

+14
-21
lines changed

pom.xml

Lines changed: 13 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>de.gwdg.metadataqa</groupId>
66
<artifactId>metadata-qa-api</artifactId>
77
<packaging>jar</packaging>
8-
<version>0.9.1-SNAPSHOT</version>
8+
<version>0.8.1</version>
99
<name>Metadata Quality Assurance Framework API</name>
1010
<description>
1111
A metadata quality assurance framework. It checks some metrics of
@@ -81,7 +81,7 @@
8181
<dependency>
8282
<groupId>com.jayway.jsonpath</groupId>
8383
<artifactId>json-path</artifactId>
84-
<version>2.4.0</version>
84+
<version>2.7.0</version>
8585
</dependency>
8686
<dependency>
8787
<groupId>org.apache.commons</groupId>
@@ -91,7 +91,7 @@
9191
<dependency>
9292
<groupId>commons-io</groupId>
9393
<artifactId>commons-io</artifactId>
94-
<version>2.8.0</version>
94+
<version>2.11.0</version>
9595
</dependency>
9696
<dependency>
9797
<groupId>commons-httpclient</groupId>
@@ -101,18 +101,18 @@
101101
<dependency>
102102
<groupId>org.slf4j</groupId>
103103
<artifactId>slf4j-simple</artifactId>
104-
<version>1.7.25</version>
104+
<version>1.7.36</version>
105105
</dependency>
106106
<dependency>
107107
<groupId>org.slf4j</groupId>
108108
<artifactId>slf4j-api</artifactId>
109-
<version>1.7.25</version>
109+
<version>1.7.36</version>
110110
</dependency>
111111
<!-- CSV reader. Docs: http://opencsv.sourceforge.net -->
112112
<dependency>
113113
<groupId>com.opencsv</groupId>
114114
<artifactId>opencsv</artifactId>
115-
<version>5.4</version>
115+
<version>5.6</version>
116116
</dependency>
117117
<!--
118118
http://commons.apache.org/proper/commons-text/
@@ -123,7 +123,6 @@
123123
<artifactId>commons-text</artifactId>
124124
<version>1.9</version>
125125
</dependency>
126-
127126
<!--
128127
Hierarchical context runner for jUnit
129128
https://github.com/bechte/junit-hierarchicalcontextrunner/wiki
@@ -145,37 +144,31 @@
145144
<dependency>
146145
<groupId>org.yaml</groupId>
147146
<artifactId>snakeyaml</artifactId>
148-
<version>1.28</version>
149-
</dependency>
150-
<dependency>
151-
<groupId>com.fasterxml.jackson.core</groupId>
152-
<artifactId>jackson-databind</artifactId>
153-
<version>2.12.2</version>
147+
<version>1.30</version>
154148
</dependency>
155149
<!-- command line interface -->
156150
<dependency>
157151
<groupId>commons-cli</groupId>
158152
<artifactId>commons-cli</artifactId>
159-
<version>1.4</version>
153+
<version>1.5.0</version>
160154
</dependency>
161-
162155
<!-- language detection -->
163156
<dependency>
164157
<groupId>com.github.pemistahl</groupId>
165158
<artifactId>lingua</artifactId>
166-
<version>1.1.0</version>
159+
<version>1.1.1</version>
167160
</dependency>
168-
161+
<!-- Solr client -->
169162
<dependency>
170163
<artifactId>solr-solrj</artifactId>
171164
<groupId>org.apache.solr</groupId>
172-
<version>6.6.0</version>
165+
<version>8.11.1</version>
173166
</dependency>
174-
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
167+
<!-- XML handling https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
175168
<dependency>
176169
<groupId>com.fasterxml.jackson.core</groupId>
177170
<artifactId>jackson-databind</artifactId>
178-
<version>2.13.0</version>
171+
<version>2.13.2</version>
179172
</dependency>
180173
</dependencies>
181174

src/test/java/de/gwdg/metadataqa/api/schema/MarcJsonTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public void testAbsolutePath() {
7070
fragment = cache.read("$.datafield[?(@.tag == '935')]", null);
7171
assertEquals(2, ((JSONArray) fragment).size());
7272

73-
path = "$..datafield[?(@.tag == '935')].size()";
73+
path = "$.datafield[?(@.tag == '935')].size()";
7474
value = (Integer) cache.get(path, Integer.class);
7575
assertEquals(4, value);
7676

0 commit comments

Comments
 (0)