This is an automated email from the ASF dual-hosted git repository.
psxjoy pushed a commit to branch dev-word-branch
in repository https://gitbox.apache.org/repos/asf/fesod.git
The following commit(s) were added to refs/heads/dev-word-branch by this push:
new 5ec209f7 feat: add FesodDoc classes with initial structure (#936)
5ec209f7 is described below
commit 5ec209f7f99d263528b4f620099efc3a30950983
Author: Shuxin Pan <[email protected]>
AuthorDate: Wed Jul 1 10:19:57 2026 +0800
feat: add FesodDoc classes with initial structure (#936)
* feat: add FesodDoc classes with initial structure
* feat: add FesodDoc classes with initial structure
* feat: add FesodDoc classes with initial structure
---
fesod-bom/pom.xml | 5 ++
fesod-doc/pom.xml | 62 ++++++++++++++++++++++
.../main/java/org/apache/fesod/word/DocReader.java | 22 ++++++++
.../main/java/org/apache/fesod/word/DocWriter.java | 22 ++++++++
.../main/java/org/apache/fesod/word/FesodDoc.java | 22 ++++++++
pom.xml | 1 +
6 files changed, 134 insertions(+)
diff --git a/fesod-bom/pom.xml b/fesod-bom/pom.xml
index 87190f32..3238fdb2 100644
--- a/fesod-bom/pom.xml
+++ b/fesod-bom/pom.xml
@@ -40,6 +40,11 @@
<artifactId>fesod-common</artifactId>
<version>${project.version}</version>
</dependency>
+ <dependency>
+ <groupId>org.apache.fesod</groupId>
+ <artifactId>fesod-doc</artifactId>
+ <version>${project.version}</version>
+ </dependency>
<dependency>
<groupId>org.apache.fesod</groupId>
<artifactId>fesod-sheet</artifactId>
diff --git a/fesod-doc/pom.xml b/fesod-doc/pom.xml
new file mode 100644
index 00000000..b867654e
--- /dev/null
+++ b/fesod-doc/pom.xml
@@ -0,0 +1,62 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements. See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership. The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied. 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">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.apache.fesod</groupId>
+ <artifactId>fesod-parent</artifactId>
+ <version>${revision}</version>
+ </parent>
+
+ <artifactId>fesod-doc</artifactId>
+ <packaging>jar</packaging>
+ <name>Fesod Document</name>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.fesod</groupId>
+ <artifactId>fesod-common</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.fesod</groupId>
+ <artifactId>fesod-shaded</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.poi</groupId>
+ <artifactId>poi</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.poi</groupId>
+ <artifactId>poi-ooxml</artifactId>
+ <exclusions>
+ <exclusion>
+ <artifactId>commons-codec</artifactId>
+ <groupId>commons-codec</groupId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ </dependencies>
+</project>
diff --git a/fesod-doc/src/main/java/org/apache/fesod/word/DocReader.java
b/fesod-doc/src/main/java/org/apache/fesod/word/DocReader.java
new file mode 100644
index 00000000..028d1fdf
--- /dev/null
+++ b/fesod-doc/src/main/java/org/apache/fesod/word/DocReader.java
@@ -0,0 +1,22 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.fesod.word;
+
+public class DocReader {}
diff --git a/fesod-doc/src/main/java/org/apache/fesod/word/DocWriter.java
b/fesod-doc/src/main/java/org/apache/fesod/word/DocWriter.java
new file mode 100644
index 00000000..6d13c4bd
--- /dev/null
+++ b/fesod-doc/src/main/java/org/apache/fesod/word/DocWriter.java
@@ -0,0 +1,22 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.fesod.word;
+
+public class DocWriter {}
diff --git a/fesod-doc/src/main/java/org/apache/fesod/word/FesodDoc.java
b/fesod-doc/src/main/java/org/apache/fesod/word/FesodDoc.java
new file mode 100644
index 00000000..d1360645
--- /dev/null
+++ b/fesod-doc/src/main/java/org/apache/fesod/word/FesodDoc.java
@@ -0,0 +1,22 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.fesod.word;
+
+public class FesodDoc {}
diff --git a/pom.xml b/pom.xml
index 9dd81161..267750c2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -77,6 +77,7 @@
<module>fesod-common</module>
<module>fesod-shaded</module>
<module>fesod-examples</module>
+ <module>fesod-doc</module>
<module>fesod-sheet</module>
</modules>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]