Skip to content

Commit dc571dd

Browse files
committed
TIKA-3396 -- rename parser modules
1 parent c0331e3 commit dc571dd

File tree

1,590 files changed

+144
-159
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,590 files changed

+144
-159
lines changed

.gitattributes

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
* text=auto eol=lf
2-
tika-parsers/tika-parsers-classic/tika-parsers-classic-package/src/test/resources/test-documents/testEMLX.emlx eol=lf
3-
tika-parsers/tika-parsers-classic/tika-parsers-classic-package/src/test/resources/test-documents/testTXT.txt eol=lf
4-
tika-parsers/tika-parsers-classic/tika-parsers-classic-modules/tika-parser-html-module/src/test/resources/test-documents/testHTML.html eol=lf
5-
tika-parsers/tika-parsers-classic/tika-parsers-classic-modules/tika-parser-pkg-module/src/test/resources/test-documents/testARofText.ar eol=lf
6-
tika-parsers/tika-parsers-classic/tika-parsers-classic-modules/tika-parser-text-module/src/test/resources/test-documents/testVCalendar.vcs eol=lf
2+
tika-parsers/tika-parsers-standard/tika-parsers-standard-package/src/test/resources/test-documents/testEMLX.emlx eol=lf
3+
tika-parsers/tika-parsers-standard/tika-parsers-standard-package/src/test/resources/test-documents/testTXT.txt eol=lf
4+
tika-parsers/tika-parsers-standard/tika-parsers-standard-modules/tika-parser-html-module/src/test/resources/test-documents/testHTML.html eol=lf
5+
tika-parsers/tika-parsers-standard/tika-parsers-standard-modules/tika-parser-pkg-module/src/test/resources/test-documents/testARofText.ar eol=lf
6+
tika-parsers/tika-parsers-standard/tika-parsers-standard-modules/tika-parser-text-module/src/test/resources/test-documents/testVCalendar.vcs eol=lf

CHANGES.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Release 2.0.0-ALPHA - 01/13/2021
2222

2323
* tika-parsers
2424
* The parser modules have been broken into three main modules:
25-
tika-parsers-classic, tika-parsers-extended and tika-parsers-advanced.
25+
tika-parsers-standard, tika-parsers-extended and tika-parsers-ml.
2626
Users may now need to add tika-parsers-extended to tika-app and
2727
tika-server to include parsers that used to be included by default
2828
(for example: envi, gdal, grib, isatab, netcdf).
@@ -40,7 +40,7 @@ Release 2.0.0-ALPHA - 01/13/2021
4040
receive connections for brief periods. The less robust, legacy behavior
4141
of not forking a process is available with "-noFork"
4242

43-
* tika-server's /metadata endpoint requires tika-server-classic to write XMP/rdf output.
43+
* tika-server's /metadata endpoint requires tika-server-standard to write XMP/rdf output.
4444
This output is not available in tika-server-core.
4545

4646

overview.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ <h1>Parsers</h1>
2525
<ol>
2626
<li>tike-parser-modules: basic parsers -- java only, no native code, no parsers that require rest calls</li>
2727
<li>tike-parsers-extended: extended parsers -- allowed: native code and parsers that require rest calls, heavy dependencies</li>
28-
<li>tika-parsers-advanced: parsers/recognizers that rely on machine learning and/or natural language processing</li>
28+
<li>tika-parsers-ml: parsers/recognizers that rely on machine learning and/or natural language processing</li>
2929
</ol>
3030
<p>
3131
The <i>tika-parser-modules</i> modules are packaged as one in <i>tika-parsers</i>. The tika-app and tika-server jars
32-
depend on <i>tika-parsers</i>. If you need an extended-parser or an advanced parser, you're responsible for adding
32+
depend on <i>tika-parsers</i>. If you need an extended-parser or an ml parser, you're responsible for adding
3333
those jars to your classpath.
3434
</p>
3535
</body>

pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -108,11 +108,11 @@
108108
name="tika-parsers/tika-parsers-extended/tika-parser-sqlite3-module/target/tika-parser-sqlite3-module-${project.version}.jar*"/>
109109
<include name="tika-app/target/tika-app-${project.version}.jar*"/>
110110
<include
111-
name="tika-server/tika-server-classic/target/tika-server-classic-${project.version}.jar*"/>
111+
name="tika-server/tika-server-standard/target/tika-server-standard-${project.version}.jar*"/>
112112
<include
113-
name="tika-server/tika-server-classic/target/tika-server-classic-${project.version}-bin.tgz*"/>
113+
name="tika-server/tika-server-standard/target/tika-server-standard-${project.version}-bin.tgz*"/>
114114
<include
115-
name="tika-server/tika-server-classic/target/tika-server-classic-${project.version}-bin.zip*"/>
115+
name="tika-server/tika-server-standard/target/tika-server-standard-${project.version}-bin.zip*"/>
116116
<include name="tika-eval/tika-eval-app/target/tika-eval-app-${project.version}.jar*"/>
117117
</fileset>
118118
</copy>

tika-app/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
<dependencies>
4242
<dependency>
4343
<groupId>${project.groupId}</groupId>
44-
<artifactId>tika-parsers-classic-package</artifactId>
44+
<artifactId>tika-parsers-standard-package</artifactId>
4545
<version>${project.version}</version>
4646
</dependency>
4747
<dependency>
@@ -124,7 +124,7 @@
124124
</createDependencyReducedPom>
125125
<artifactSet>
126126
<excludes>
127-
<exclude>org.apache.tika:tika-parsers-classic-package:jar:</exclude>
127+
<exclude>org.apache.tika:tika-parsers-standard-package:jar:</exclude>
128128
</excludes>
129129
</artifactSet>
130130
<filters>

tika-bundles/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<packaging>pom</packaging>
3434

3535
<modules>
36-
<module>tika-bundle-classic</module>
36+
<module>tika-bundle-standard</module>
3737
</modules>
3838

3939
</project>

tika-bundles/tika-bundle-classic/pom.xml renamed to tika-bundles/tika-bundle-standard/pom.xml

+5-5
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@
2929
<relativePath>../pom.xml</relativePath>
3030
</parent>
3131

32-
<artifactId>tika-bundle-classic</artifactId>
32+
<artifactId>tika-bundle-standard</artifactId>
3333
<version>2.0.0-SNAPSHOT</version>
3434
<packaging>bundle</packaging>
35-
<name>Apache Tika OSGi classic bundle</name>
35+
<name>Apache Tika OSGi standard bundle</name>
3636

3737
<description>
38-
OSGi bundle that contains the tika-parsers-classic component and all its
38+
OSGi bundle that contains the tika-parsers-standard component and all its
3939
upstream dependencies that aren't OSGI bundles by themselves. This
4040
bundle exports no packages, only the Parser and Detector services
4141
from the tika-parsers component.
@@ -56,7 +56,7 @@
5656
</dependency>
5757
<dependency>
5858
<groupId>${project.groupId}</groupId>
59-
<artifactId>tika-parsers-classic-package</artifactId>
59+
<artifactId>tika-parsers-standard-package</artifactId>
6060
<version>${project.version}</version>
6161
</dependency>
6262

@@ -196,7 +196,7 @@
196196
<Bundle-Activator>
197197
org.apache.tika.parser.internal.Activator
198198
</Bundle-Activator>
199-
<Embed-Dependency>*;scope=compile;artifactId=tika-parsers-classic-package|
199+
<Embed-Dependency>*;scope=compile;artifactId=tika-parsers-standard-package|
200200
javax.activation|
201201
xerces|
202202
xercesImpl|

tika-bundles/tika-bundle-classic/src/test/java/org/apache/tika/bundle/BundleIT.java renamed to tika-bundles/tika-bundle-standard/src/test/java/org/apache/tika/bundle/BundleIT.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public Option[] configuration() throws IOException, URISyntaxException, ClassNot
101101
mavenBundle("org.ops4j.pax.logging", "pax-logging-api", "1.8.5"),
102102
mavenBundle("org.ops4j.pax.logging", "pax-logging-service", "1.8.5"),
103103
junitBundles(),
104-
bundle(new File(base, "tika-bundle-classic.jar").toURI().toURL().toString())
104+
bundle(new File(base, "tika-bundle-standard.jar").toURI().toURL().toString())
105105
);
106106
}
107107

@@ -113,7 +113,7 @@ public void testBundleLoaded() throws Exception {
113113
hasCore = true;
114114
assertEquals("Core not activated", Bundle.ACTIVE, b.getState());
115115
}
116-
if ("org.apache.tika.bundle-classic".equals(b.getSymbolicName())) {
116+
if ("org.apache.tika.bundle-standard".equals(b.getSymbolicName())) {
117117
hasBundle = true;
118118
assertEquals("Bundle not activated", Bundle.ACTIVE, b.getState());
119119
}
@@ -126,7 +126,7 @@ public void testBundleLoaded() throws Exception {
126126
public void testManifestNoJUnit() throws Exception {
127127
File TARGET = new File("target");
128128
File base = new File(TARGET, "test-bundles");
129-
File tikaBundle = new File(base, "tika-bundle-classic.jar");
129+
File tikaBundle = new File(base, "tika-bundle-standard.jar");
130130

131131
JarInputStream jarIs = new JarInputStream(new FileInputStream(tikaBundle));
132132
Manifest mf = jarIs.getManifest();

tika-bundles/tika-bundle-classic/test-bundles.xml renamed to tika-bundles/tika-bundle-standard/test-bundles.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<outputFileNameMapping>${artifact.artifactId}.jar</outputFileNameMapping>
2929
<includes>
3030
<include>org.apache.tika:tika-core</include>
31-
<include>org.apache.tika:tika-bundle-classic</include>
31+
<include>org.apache.tika:tika-bundle-standard</include>
3232
</includes>
3333
</dependencySet>
3434
<dependencySet>

tika-deployment/tika-snap-server/snapcraft.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ confinement: strict
3030
apps:
3131
run:
3232
command:
33-
java -jar $SNAP/jar/tika-server-classic-$SNAP_VERSION.jar
33+
java -jar $SNAP/jar/tika-server-standard-$SNAP_VERSION.jar
3434

3535
parts:
3636
compile-tika:

tika-java7/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
</dependency>
8585
<dependency>
8686
<groupId>${project.groupId}</groupId>
87-
<artifactId>tika-parsers-classic-package</artifactId>
87+
<artifactId>tika-parsers-standard-package</artifactId>
8888
<version>${project.version}</version>
8989
</dependency>
9090
<dependency>

tika-parsers/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@
3333
<packaging>pom</packaging>
3434
<modules>
3535
<!-- basic parsers - avoid network dependent parsers, native code -->
36-
<module>tika-parsers-classic</module>
36+
<module>tika-parsers-standard</module>
3737
<!-- allow network dependent parsers and native code -->
3838
<module>tika-parsers-extended</module>
3939
<!-- potentially massive dependencies (e.g. dl4j) -->
40-
<module>tika-parsers-advanced</module>
40+
<module>tika-parsers-ml</module>
4141
</modules>
4242

4343
<build>

tika-parsers/tika-parsers-extended/pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929

3030
<artifactId>tika-parsers-extended</artifactId>
3131
<packaging>pom</packaging>
32+
<name>Apache Tika extended parsers</name>
3233

3334
<dependencies>
3435
<dependency>

tika-parsers/tika-parsers-advanced/pom.xml renamed to tika-parsers/tika-parsers-ml/pom.xml

+3-1
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,11 @@
2828

2929
<modelVersion>4.0.0</modelVersion>
3030

31-
<artifactId>tika-parsers-advanced</artifactId>
31+
<artifactId>tika-parsers-ml</artifactId>
3232

3333
<packaging>pom</packaging>
34+
<name>Apache Tika machine learning (ml) parsers</name>
35+
3436
<modules>
3537
<module>tika-parser-nlp-module</module>
3638
<!-- needs to come after tika-parser-nlp-module because tika-parser-nlp-module

tika-parsers/tika-parsers-advanced/tika-age-recogniser/pom.xml renamed to tika-parsers/tika-parsers-ml/tika-age-recogniser/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<modelVersion>4.0.0</modelVersion>
2323
<parent>
2424
<groupId>org.apache.tika</groupId>
25-
<artifactId>tika-parsers-advanced</artifactId>
25+
<artifactId>tika-parsers-ml</artifactId>
2626
<version>2.0.0-SNAPSHOT</version>
2727
</parent>
2828

tika-parsers/tika-parsers-advanced/tika-dl/pom.xml renamed to tika-parsers/tika-parsers-ml/tika-dl/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<modelVersion>4.0.0</modelVersion>
2323
<parent>
2424
<groupId>org.apache.tika</groupId>
25-
<artifactId>tika-parsers-advanced</artifactId>
25+
<artifactId>tika-parsers-ml</artifactId>
2626
<version>2.0.0-SNAPSHOT</version>
2727
</parent>
2828

tika-parsers/tika-parsers-advanced/tika-parser-advancedmedia-module/pom.xml renamed to tika-parsers/tika-parsers-ml/tika-parser-advancedmedia-module/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
2121
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
2222
<parent>
23-
<artifactId>tika-parsers-advanced</artifactId>
23+
<artifactId>tika-parsers-ml</artifactId>
2424
<groupId>org.apache.tika</groupId>
2525
<version>2.0.0-SNAPSHOT</version>
2626
</parent>

tika-parsers/tika-parsers-advanced/tika-parser-nlp-module/pom.xml renamed to tika-parsers/tika-parsers-ml/tika-parser-nlp-module/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
-->
2020
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
2121
<parent>
22-
<artifactId>tika-parsers-advanced</artifactId>
22+
<artifactId>tika-parsers-ml</artifactId>
2323
<groupId>org.apache.tika</groupId>
2424
<version>2.0.0-SNAPSHOT</version>
2525
</parent>
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@ def agePrefixPath = "src/test/resources/org/apache/tika/parser/recognition/"
104104
// detecting proper path for test resources
105105
if (new File("tika-parsers").exists() && new File("tika-app").exists() ) {
106106
// running from parent maven project, but resources should go to sub-module
107-
prefixPath = "tika-parsers/tika-parsers-advanced/tika-parser-nlp-module/" + prefixPath
108-
agePrefixPath = "tika-parsers/tika-parsers-advanced/tika-age-recogniser/" + agePrefixPath
107+
prefixPath = "tika-parsers/tika-parsers-ml/tika-parser-nlp-module/" + prefixPath
108+
agePrefixPath = "tika-parsers/tika-parsers-ml/tika-age-recogniser/" + agePrefixPath
109109
}
110110

111111
def modelFiles = //filePath : url

tika-parsers/tika-parsers-classic/pom.xml renamed to tika-parsers/tika-parsers-standard/pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@
2828

2929
<modelVersion>4.0.0</modelVersion>
3030

31-
<artifactId>tika-parsers-classic</artifactId>
31+
<artifactId>tika-parsers-standard</artifactId>
3232
<packaging>pom</packaging>
33-
<name>Apache Tika classic parser modules and package</name>
33+
<name>Apache Tika standard parser modules and package</name>
3434

3535

3636
<modules>
37-
<module>tika-parsers-classic-modules</module>
38-
<module>tika-parsers-classic-package</module>
37+
<module>tika-parsers-standard-modules</module>
38+
<module>tika-parsers-standard-package</module>
3939
</modules>
4040
<build>
4141
<pluginManagement>

tika-parsers/tika-parsers-classic/tika-parsers-classic-modules/pom.xml renamed to tika-parsers/tika-parsers-standard/tika-parsers-standard-modules/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
2121
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
2222
<parent>
23-
<artifactId>tika-parsers-classic</artifactId>
23+
<artifactId>tika-parsers-standard</artifactId>
2424
<groupId>org.apache.tika</groupId>
2525
<version>2.0.0-SNAPSHOT</version>
2626
<relativePath>../pom.xml</relativePath>
@@ -29,9 +29,9 @@
2929

3030
<modelVersion>4.0.0</modelVersion>
3131

32-
<artifactId>tika-parsers-classic-modules</artifactId>
32+
<artifactId>tika-parsers-standard-modules</artifactId>
3333
<packaging>pom</packaging>
34-
<name>Apache Tika classic parser modules</name>
34+
<name>Apache Tika standard parser modules</name>
3535

3636
<url>https://tika.apache.org/</url>
3737

tika-parsers/tika-parsers-classic/tika-parsers-classic-modules/tika-parser-apple-module/pom.xml renamed to tika-parsers/tika-parsers-standard/tika-parsers-standard-modules/tika-parser-apple-module/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
2121
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
2222
<parent>
23-
<artifactId>tika-parsers-classic-modules</artifactId>
23+
<artifactId>tika-parsers-standard-modules</artifactId>
2424
<groupId>org.apache.tika</groupId>
2525
<version>2.0.0-SNAPSHOT</version>
2626
</parent>

tika-parsers/tika-parsers-classic/tika-parsers-classic-modules/tika-parser-audiovideo-module/pom.xml renamed to tika-parsers/tika-parsers-standard/tika-parsers-standard-modules/tika-parser-audiovideo-module/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
2121
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
2222
<parent>
23-
<artifactId>tika-parsers-classic-modules</artifactId>
23+
<artifactId>tika-parsers-standard-modules</artifactId>
2424
<groupId>org.apache.tika</groupId>
2525
<version>2.0.0-SNAPSHOT</version>
2626
<relativePath>../pom.xml</relativePath>

tika-parsers/tika-parsers-classic/tika-parsers-classic-modules/tika-parser-cad-module/pom.xml renamed to tika-parsers/tika-parsers-standard/tika-parsers-standard-modules/tika-parser-cad-module/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
2121
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
2222
<parent>
23-
<artifactId>tika-parsers-classic-modules</artifactId>
23+
<artifactId>tika-parsers-standard-modules</artifactId>
2424
<groupId>org.apache.tika</groupId>
2525
<version>2.0.0-SNAPSHOT</version>
2626
<relativePath>../pom.xml</relativePath>

tika-parsers/tika-parsers-classic/tika-parsers-classic-modules/tika-parser-code-module/pom.xml renamed to tika-parsers/tika-parsers-standard/tika-parsers-standard-modules/tika-parser-code-module/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
2121
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
2222
<parent>
23-
<artifactId>tika-parsers-classic-modules</artifactId>
23+
<artifactId>tika-parsers-standard-modules</artifactId>
2424
<groupId>org.apache.tika</groupId>
2525
<version>2.0.0-SNAPSHOT</version>
2626
<relativePath>../pom.xml</relativePath>

tika-parsers/tika-parsers-classic/tika-parsers-classic-modules/tika-parser-crypto-module/pom.xml renamed to tika-parsers/tika-parsers-standard/tika-parsers-standard-modules/tika-parser-crypto-module/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
2121
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
2222
<parent>
23-
<artifactId>tika-parsers-classic-modules</artifactId>
23+
<artifactId>tika-parsers-standard-modules</artifactId>
2424
<groupId>org.apache.tika</groupId>
2525
<version>2.0.0-SNAPSHOT</version>
2626
<relativePath>../pom.xml</relativePath>

tika-parsers/tika-parsers-classic/tika-parsers-classic-modules/tika-parser-digest-commons/pom.xml renamed to tika-parsers/tika-parsers-standard/tika-parsers-standard-modules/tika-parser-digest-commons/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
2121
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
2222
<parent>
23-
<artifactId>tika-parsers-classic-modules</artifactId>
23+
<artifactId>tika-parsers-standard-modules</artifactId>
2424
<groupId>org.apache.tika</groupId>
2525
<version>2.0.0-SNAPSHOT</version>
2626
<relativePath>../pom.xml</relativePath>

tika-parsers/tika-parsers-classic/tika-parsers-classic-modules/tika-parser-font-module/pom.xml renamed to tika-parsers/tika-parsers-standard/tika-parsers-standard-modules/tika-parser-font-module/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
2121
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
2222
<parent>
23-
<artifactId>tika-parsers-classic-modules</artifactId>
23+
<artifactId>tika-parsers-standard-modules</artifactId>
2424
<groupId>org.apache.tika</groupId>
2525
<version>2.0.0-SNAPSHOT</version>
2626
<relativePath>../pom.xml</relativePath>

tika-parsers/tika-parsers-classic/tika-parsers-classic-modules/tika-parser-html-commons/pom.xml renamed to tika-parsers/tika-parsers-standard/tika-parsers-standard-modules/tika-parser-html-commons/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
2121
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
2222
<parent>
23-
<artifactId>tika-parsers-classic-modules</artifactId>
23+
<artifactId>tika-parsers-standard-modules</artifactId>
2424
<groupId>org.apache.tika</groupId>
2525
<version>2.0.0-SNAPSHOT</version>
2626
</parent>

tika-parsers/tika-parsers-classic/tika-parsers-classic-modules/tika-parser-html-module/pom.xml renamed to tika-parsers/tika-parsers-standard/tika-parsers-standard-modules/tika-parser-html-module/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
2121
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
2222
<parent>
23-
<artifactId>tika-parsers-classic-modules</artifactId>
23+
<artifactId>tika-parsers-standard-modules</artifactId>
2424
<groupId>org.apache.tika</groupId>
2525
<version>2.0.0-SNAPSHOT</version>
2626
<relativePath>../pom.xml</relativePath>

0 commit comments

Comments
 (0)