Skip to content

Commit 838be81

Browse files
authored
Merge pull request #11607 from QualitativeDataRepository/FTFix
Fix for flac, tab full-text indexing fails
2 parents 6cf560a + eea4e9b commit 838be81

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

modules/dataverse-parent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@
160160
<commons.io.version>2.19.0</commons.io.version>
161161
<commons.logging.version>1.2</commons.logging.version>
162162
<commons.lang3.version>3.18.0</commons.lang3.version>
163-
<commons.compress.version>1.26.0</commons.compress.version>
163+
<commons.compress.version>1.28.0</commons.compress.version>
164164
<apache.httpcomponents.client.version>4.5.13</apache.httpcomponents.client.version>
165165
<apache.httpcomponents.core.version>4.4.14</apache.httpcomponents.core.version>
166166

pom.xml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<auto-service.version>1.1.1</auto-service.version>
3232
<jhove.version>1.20.1</jhove.version>
3333
<poi.version>5.4.0</poi.version>
34-
<tika.version>2.9.2</tika.version>
34+
<tika.version>3.2.2</tika.version>
3535
<netcdf.version>5.5.3</netcdf.version>
3636

3737
<openapi.infoTitle>Dataverse API</openapi.infoTitle>
@@ -61,6 +61,10 @@
6161
<groupId>org.apache.james</groupId>
6262
<artifactId>apache-mime4j-core</artifactId>
6363
</exclusion>
64+
<exclusion>
65+
<groupId>xerces</groupId>
66+
<artifactId>xercesImpl</artifactId>
67+
</exclusion>
6468
</exclusions>
6569
</dependency>
6670
<dependency>
@@ -102,6 +106,11 @@
102106
<artifactId>apache-mime4j-dom</artifactId>
103107
<version>0.8.7</version>
104108
</dependency>
109+
<dependency>
110+
<groupId>xerces</groupId>
111+
<artifactId>xercesImpl</artifactId>
112+
<version>2.12.2</version>
113+
</dependency>
105114
</dependencies>
106115
</dependencyManagement>
107116
<!-- Declare any DIRECT dependencies here.
@@ -506,7 +515,7 @@
506515
<dependency>
507516
<groupId>org.apache.commons</groupId>
508517
<artifactId>commons-csv</artifactId>
509-
<version>1.2</version>
518+
<version>1.14.0</version>
510519
</dependency>
511520
<!-- OAuth2 authentication. -->
512521
<dependency>

0 commit comments

Comments
 (0)