This is an automated email from the ASF dual-hosted git repository.
tballison pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tika.git
The following commit(s) were added to refs/heads/main by this push:
new c9f6585992 TIKA-4808 - revert aborted 4.0.0-rc1 release commits; fix
per-module javadoc jars
c9f6585992 is described below
commit c9f6585992b4dc686457015c6d9650f7d55623af
Author: tallison <[email protected]>
AuthorDate: Tue Aug 18 13:07:12 2026 -0400
TIKA-4808 - revert aborted 4.0.0-rc1 release commits; fix per-module
javadoc jars
---
tika-metadata-schema/pom.xml | 6 ++++--
tika-parent/pom.xml | 15 +++++++++++++--
2 files changed, 17 insertions(+), 4 deletions(-)
diff --git a/tika-metadata-schema/pom.xml b/tika-metadata-schema/pom.xml
index 4c52ca519f..1c7a3b27f4 100644
--- a/tika-metadata-schema/pom.xml
+++ b/tika-metadata-schema/pom.xml
@@ -15,7 +15,9 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
-<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
http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<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
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.tika</groupId>
@@ -111,7 +113,7 @@
<classpathScope>test</classpathScope>
<arguments>
<argument>-cp</argument>
- <classpath />
+ <classpath/>
<argument>org.apache.tika.metadata.schema.SchemaGenerator</argument>
<argument>${project.basedir}/src/main/resources/org/apache/tika/metadata/metadata-keys.json</argument>
<argument>${project.basedir}/src/main/resources/org/apache/tika/metadata/metadata-open-namespaces.json</argument>
diff --git a/tika-parent/pom.xml b/tika-parent/pom.xml
index 5eb202eb1a..7b5458e7bd 100644
--- a/tika-parent/pom.xml
+++ b/tika-parent/pom.xml
@@ -281,14 +281,14 @@
</contributors>
<properties>
- <revision>4.0.1-SNAPSHOT</revision>
+ <revision>4.0.0-SNAPSHOT</revision>
<javaVersion>17</javaVersion>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.release>17</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>${project.build.sourceEncoding}</project.reporting.outputEncoding>
-
<project.build.outputTimestamp>2026-08-18T16:33:03Z</project.build.outputTimestamp>
+
<project.build.outputTimestamp>2026-06-29T15:00:41Z</project.build.outputTimestamp>
<!-- plugin versions -->
<!-- updates may not be detected by the maven versions plugin:
https://github.com/mojohaus/versions/issues/1070 -->
@@ -1727,6 +1727,17 @@
<sourcepath>tika-annotation-processor/src/main/java;tika-app/src/main/java;tika-bundles/tika-bundle-standard/src/main/java;tika-core/src/main/java;tika-detectors/tika-detector-magika/src/main/java;tika-detectors/tika-detector-siegfried/src/main/java;tika-encoding-detectors/tika-encoding-detector-html/src/main/java;tika-encoding-detectors/tika-encoding-detector-icu4j/src/main/java;tika-encoding-detectors/tika-encoding-detector-mojibuster/src/main/java;tika-encoding-detectors
[...]
<subpackages>org.apache.tika</subpackages>
</configuration>
+ <executions>
+ <!-- The aggregate sourcepath above is root-relative, so it
resolves to nothing in a
+ per-module javadoc:jar. Override it for the apache-release
parent's
+ attach-javadocs execution, which documents one module from
its own basedir. -->
+ <execution>
+ <id>attach-javadocs</id>
+ <configuration>
+ <sourcepath>src/main/java</sourcepath>
+ </configuration>
+ </execution>
+ </executions>
</plugin>
</plugins>
</build>