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

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


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

commit b99086ef54ada9fff2ca54c46528a204d6c36fc1
Author: TALLISON <[email protected]>
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 f262e40..482bf28 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 922418d..6a36e84 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 39b16e4..960e9a1 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 fb92250..62c03b6 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 8428bb7..592660d 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 39600b3..8095c5e 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 5560406..93b507c 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 77b690c..b99e238 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 ad72bea..ff20122 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 33f4695..6dfe618 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 12f5320..dde2fdc 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>

Reply via email to