Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions tika-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,6 @@
<artifactId>tika-langdetect-optimaize</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>tika-serialization</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>tika-xmp</artifactId>
Expand Down
5 changes: 0 additions & 5 deletions tika-eval/tika-eval-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,6 @@
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>tika-serialization</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>tika-langdetect-opennlp</artifactId>
Expand Down
5 changes: 0 additions & 5 deletions tika-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,6 @@
<artifactId>tika-app</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.tika</groupId>
<artifactId>tika-serialization</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.tika</groupId>
<artifactId>tika-translate</artifactId>
Expand Down
6 changes: 0 additions & 6 deletions tika-fuzzing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,6 @@
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>tika-serialization</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
Expand Down
12 changes: 0 additions & 12 deletions tika-integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,18 +41,6 @@
</modules>

<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>tika-core</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>tika-serialization</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<!-- after we migrate everything to junit5, we can get rid of this -->
<dependency>
<groupId>org.junit.vintage</groupId>
Expand Down
6 changes: 0 additions & 6 deletions tika-pipes/tika-async-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,6 @@
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>tika-serialization</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
Expand Down
7 changes: 0 additions & 7 deletions tika-pipes/tika-emitters/tika-emitter-az-blob/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,6 @@


<dependencies>
<!-- should serialization be provided or bundled? -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>tika-serialization</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>tika-pipes-core</artifactId>
Expand Down
7 changes: 0 additions & 7 deletions tika-pipes/tika-emitters/tika-emitter-gcs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,6 @@


<dependencies>
<!-- should serialization be provided or bundled? -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>tika-serialization</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>tika-pipes-core</artifactId>
Expand Down
5 changes: 0 additions & 5 deletions tika-pipes/tika-emitters/tika-emitter-opensearch/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,6 @@
<artifactId>tika-httpclient-commons</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.tika</groupId>
<artifactId>tika-serialization</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
Expand Down
6 changes: 0 additions & 6 deletions tika-pipes/tika-fetchers/tika-fetcher-az-blob/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,6 @@
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>tika-serialization</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down
18 changes: 15 additions & 3 deletions tika-pipes/tika-pipes-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,19 @@
<scope>test</scope>
</dependency>
</dependencies>
<scm>
<tag>3.0.0-rc1</tag>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>org.apache.tika.pipes.core</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,6 @@
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>tika-serialization</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,6 @@
<url>https://tika.apache.org/</url>

<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>tika-pipes-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>tika-pipes-core</artifactId>
Expand All @@ -51,24 +46,6 @@
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
</dependency>

<!-- logging -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j2-impl</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>tika-serialization</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
Expand Down
5 changes: 0 additions & 5 deletions tika-server/tika-server-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,6 @@
<artifactId>tika-pipes-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>tika-serialization</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>tika-httpclient-commons</artifactId>
Expand Down
5 changes: 0 additions & 5 deletions tika-server/tika-server-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,6 @@
<artifactId>tika-langdetect-optimaize</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>tika-serialization</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>tika-handler-boilerpipe</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion tika-server/tika-server-eval/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
<!-- there has to be a better way -->
<exclude>org.apache.tika:tika-server-core:jar:</exclude>
<exclude>org.apache.tika:tika-core:jar:</exclude>
<exclude>org.apache.tika:tika-serialization:jar:</exclude>
<exclude>org.apache.tika:tika-pipes-core:jar:</exclude>
<exclude>org.apache.tika:tika-langdetect-opennlp:jar:</exclude>
<exclude>commons-io:commons-io:jar:</exclude>
<exclude>commons-codec:commons-codec:jar:</exclude>
Expand Down
2 changes: 1 addition & 1 deletion tika-server/tika-server-standard/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
<exclude>org.apache.tika:tika-core:jar:</exclude>
<exclude>org.apache.tika:tika-translate:jar:</exclude>
<exclude>org.apache.tika:tika-parsers-standard-package:jar:</exclude>
<exclude>org.apache.tika:tika-serialization:jar:</exclude>
<exclude>org.apache.tika:tika-pipes-core:jar:</exclude>
<exclude>org.apache.tika:tika-langdetect-optimaize:jar:</exclude>
<exclude>org.apache.tika:tika-handler-boilerpipe:jar:</exclude>
<exclude>org.apache.tika:tika-parser-digest-commons:jar:</exclude>
Expand Down