Skip to content

Commit a978f2a

Browse files
committed
bump tika.jar to 2.5
1 parent 88663cd commit a978f2a

File tree

6 files changed

+19
-16
lines changed

6 files changed

+19
-16
lines changed

CHANGELOG.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
Changelog eztika 1.15 to xxx (unreleased)
2-
----------------------------------------
1+
Changelog eztika 1.15 to 2.0
2+
----------------------------
3+
4+
- upgraded bundled tika.jar to 2.5.0
35

46
- added testing of the extension via GitHub Actions
57

bin/eztika

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ JAVA=${JAVA:-/usr/bin/java}
44
TIKA_JAR=${TIKA_JAR:-./extension/eztika/bin/tika.jar}
55
TIKA_LOG4J=${TIKA_LOG4J:-./extension/eztika/bin/log4j.properties}
66

7-
"$JAVA" -Dlog4j.configuration="file:$TIKA_LOG4J" -jar "$TIKA_JAR" --text --encoding=utf8 "$1" 2>>./var/log/eztika.log
7+
"$JAVA" -Dlog4j.configurationFile="$TIKA_LOG4J" -jar "$TIKA_JAR" --text --encoding=utf8 "$1" 2>>./var/log/eztika.log

bin/log4j.properties

+10-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
# almost the same as the default log4j config file from eztika, but adds timestamps to log lines
22

3-
# info,debug, error,fatal ...
4-
log4j.rootLogger=info,stderr
3+
# info,debug,error,fatal ...
4+
rootLogger.level = info
5+
rootLogger.appenderRefs = console
6+
rootLogger.appenderRef.console.ref = STDERR
57

6-
# console
7-
log4j.appender.stderr=org.apache.log4j.ConsoleAppender
8-
log4j.appender.stderr.layout=org.apache.log4j.PatternLayout
9-
log4j.appender.stderr.Target=System.err
10-
11-
# was: log4j.appender.stderr.layout.ConversionPattern= %-5p %m%n
12-
log4j.appender.stderr.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %-5p %m%n
8+
# console (stderr)
9+
appender.stderr.type = Console
10+
appender.stderr.name = STDERR
11+
appender.stderr.target = SYSTEM_ERR
12+
appender.stderr.layout.type = PatternLayout
13+
appender.stderr.layout.pattern = %d{yyyy-MM-dd HH:mm:ss} %-5p %m%n

bin/tika.jar

-25.4 MB
Binary file not shown.

extension.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<software>
33
<metadata>
44
<name>eZ Tika</name>
5-
<version>1.15.0</version>
5+
<version>2.0.0</version>
66
<copyright>Copyright © 2008-2022 Paul Borgermans</copyright>
77
<license>GNU General Public License v2.0</license>
88
<info_url>https://github.com/xrowgmbh/eztika</info_url>
@@ -12,7 +12,7 @@
1212
<name>Tika</name>
1313
<license>Apache License, Version 2.0</license>
1414
<info_url>https://tika.apache.org/</info_url>
15-
<version>1.28.5</version>
15+
<version>2.5.0</version>
1616
</uses>
1717
</software>
1818
</metadata>

ezinfo.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ static function info()
3333
{
3434
return array(
3535
'Name' => "eZ Tika",
36-
'Version' => "1.15.0",
36+
'Version' => "2.0.0",
3737
'Copyright' => "Copyright 2008-2022 Paul Borgermans",
3838
'Info_url' => "https://github.com/xrowgmbh/eztika",
3939
'License' => "GNU General Public License v2.0",
4040
'3rdparty_software' =>
4141
array ( 'name' => 'Tika',
42-
'Version' => '1.28.5',
42+
'Version' => '2.5.0',
4343
'copyright' => 'The Apache Software Foundation.',
4444
'license' => 'Apache License, Version 2.0',
4545
'info_url' => 'https://tika.apache.org/' ) );

0 commit comments

Comments
 (0)