You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tika.apache.org by ta...@apache.org on 2018/09/06 17:02:03 UTC

[tika] branch branch_1x updated: TIKA-2719 -- add automatic module names

This is an automated email from the ASF dual-hosted git repository.

tallison pushed a commit to branch branch_1x
in repository https://gitbox.apache.org/repos/asf/tika.git


The following commit(s) were added to refs/heads/branch_1x by this push:
     new 92e488b  TIKA-2719 -- add automatic module names
92e488b is described below

commit 92e488bb58472b94e5cff8e9153825128f0eb462
Author: TALLISON <ta...@apache.org>
AuthorDate: Thu Sep 6 13:01:03 2018 -0400

    TIKA-2719 -- add automatic module names
---
 tika-app/pom.xml           |  7 +++++++
 tika-batch/pom.xml         |  7 +++++++
 tika-core/pom.xml          |  7 +++++++
 tika-dl/pom.xml            | 12 ++++++++++++
 tika-eval/pom.xml          |  7 +++++++
 tika-langdetect/pom.xml    |  7 +++++++
 tika-parsers/pom.xml       |  7 +++++++
 tika-serialization/pom.xml |  7 +++++++
 tika-server/pom.xml        |  7 +++++++
 tika-translate/pom.xml     |  7 +++++++
 tika-xmp/pom.xml           |  7 +++++++
 11 files changed, 82 insertions(+)

diff --git a/tika-app/pom.xml b/tika-app/pom.xml
index 6eef33b..f40ecb4 100644
--- a/tika-app/pom.xml
+++ b/tika-app/pom.xml
@@ -164,6 +164,13 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-jar-plugin</artifactId>
+        <configuration>
+          <archive>
+            <manifestEntries>
+              <Automatic-Module-Name>org.apache.tika.app</Automatic-Module-Name>
+            </manifestEntries>
+          </archive>
+        </configuration>
         <executions>
           <execution>
             <goals>
diff --git a/tika-batch/pom.xml b/tika-batch/pom.xml
index a010a3d..48c09ca 100644
--- a/tika-batch/pom.xml
+++ b/tika-batch/pom.xml
@@ -148,6 +148,13 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-jar-plugin</artifactId>
+        <configuration>
+          <archive>
+            <manifestEntries>
+              <Automatic-Module-Name>org.apache.tika.batch</Automatic-Module-Name>
+            </manifestEntries>
+          </archive>
+        </configuration>
         <executions>
           <execution>
             <goals>
diff --git a/tika-core/pom.xml b/tika-core/pom.xml
index df168c1..0d6a22b 100644
--- a/tika-core/pom.xml
+++ b/tika-core/pom.xml
@@ -94,6 +94,13 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-jar-plugin</artifactId>
+        <configuration>
+          <archive>
+            <manifestEntries>
+              <Automatic-Module-Name>org.apache.tika.core</Automatic-Module-Name>
+            </manifestEntries>
+          </archive>
+        </configuration>
         <executions>
           <execution>
             <goals>
diff --git a/tika-dl/pom.xml b/tika-dl/pom.xml
index 278852e..37d4966 100644
--- a/tika-dl/pom.xml
+++ b/tika-dl/pom.xml
@@ -338,6 +338,18 @@
         </executions>
       </plugin>
       <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <configuration>
+          <archive>
+            <manifestEntries>
+              <Automatic-Module-Name>org.apache.tika.dl</Automatic-Module-Name>
+            </manifestEntries>
+          </archive>
+        </configuration>
+      </plugin>
+
+      <plugin>
         <groupId>org.apache.rat</groupId>
         <artifactId>apache-rat-plugin</artifactId>
         <configuration>
diff --git a/tika-eval/pom.xml b/tika-eval/pom.xml
index 9289116..10c1470 100644
--- a/tika-eval/pom.xml
+++ b/tika-eval/pom.xml
@@ -224,6 +224,13 @@
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-jar-plugin</artifactId>
+                    <configuration>
+                        <archive>
+                            <manifestEntries>
+                                <Automatic-Module-Name>org.apache.tika.eval</Automatic-Module-Name>
+                            </manifestEntries>
+                        </archive>
+                    </configuration>
                     <executions>
                         <execution>
                             <goals>
diff --git a/tika-langdetect/pom.xml b/tika-langdetect/pom.xml
index b879a7b..5f270cf 100644
--- a/tika-langdetect/pom.xml
+++ b/tika-langdetect/pom.xml
@@ -139,6 +139,13 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-jar-plugin</artifactId>
+        <configuration>
+          <archive>
+            <manifestEntries>
+              <Automatic-Module-Name>org.apache.tika.langdetect</Automatic-Module-Name>
+            </manifestEntries>
+          </archive>
+        </configuration>
         <executions>
           <execution>
             <goals>
diff --git a/tika-parsers/pom.xml b/tika-parsers/pom.xml
index 18cfba5..f62a395 100644
--- a/tika-parsers/pom.xml
+++ b/tika-parsers/pom.xml
@@ -846,6 +846,13 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-jar-plugin</artifactId>
+        <configuration>
+          <archive>
+            <manifestEntries>
+              <Automatic-Module-Name>org.apache.tika.parsers</Automatic-Module-Name>
+            </manifestEntries>
+          </archive>
+        </configuration>
         <executions>
           <execution>
             <goals>
diff --git a/tika-serialization/pom.xml b/tika-serialization/pom.xml
index a04627f..fa81291 100644
--- a/tika-serialization/pom.xml
+++ b/tika-serialization/pom.xml
@@ -68,6 +68,13 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-jar-plugin</artifactId>
+        <configuration>
+          <archive>
+            <manifestEntries>
+              <Automatic-Module-Name>org.apache.tika.serialization</Automatic-Module-Name>
+            </manifestEntries>
+          </archive>
+        </configuration>
         <executions>
           <execution>
             <goals>
diff --git a/tika-server/pom.xml b/tika-server/pom.xml
index 323ec6a..e0b35fe 100644
--- a/tika-server/pom.xml
+++ b/tika-server/pom.xml
@@ -277,6 +277,13 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-jar-plugin</artifactId>
+        <configuration>
+          <archive>
+            <manifestEntries>
+              <Automatic-Module-Name>org.apache.tika.server</Automatic-Module-Name>
+            </manifestEntries>
+          </archive>
+        </configuration>
         <executions>
           <execution>
             <goals>
diff --git a/tika-translate/pom.xml b/tika-translate/pom.xml
index 0709ab7..704d5d9 100644
--- a/tika-translate/pom.xml
+++ b/tika-translate/pom.xml
@@ -135,6 +135,13 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-jar-plugin</artifactId>
+        <configuration>
+          <archive>
+            <manifestEntries>
+              <Automatic-Module-Name>org.apache.tika.translate</Automatic-Module-Name>
+            </manifestEntries>
+          </archive>
+        </configuration>
         <executions>
           <execution>
             <goals>
diff --git a/tika-xmp/pom.xml b/tika-xmp/pom.xml
index 46f3345..11358a5 100644
--- a/tika-xmp/pom.xml
+++ b/tika-xmp/pom.xml
@@ -59,6 +59,13 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-jar-plugin</artifactId>
+        <configuration>
+          <archive>
+            <manifestEntries>
+              <Automatic-Module-Name>org.apache.tika.xmp</Automatic-Module-Name>
+            </manifestEntries>
+          </archive>
+        </configuration>
         <executions>
           <execution>
             <goals>