From 85af821201ec2da71f39cf474995289c82118404 Mon Sep 17 00:00:00 2001
From: wzp <2040239371@qq.com>
Date: 星期四, 26 十二月 2024 14:27:42 +0800
Subject: [PATCH] feat:增加PAQ后台手动导入功能

---
 pom.xml |  109 +++++++++++++++++++++++++++++++++++++-----------------
 1 files changed, 74 insertions(+), 35 deletions(-)

diff --git a/pom.xml b/pom.xml
index 713da3e..7e50d7d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -85,6 +85,34 @@
             <optional>true</optional> <!-- 琛ㄧず渚濊禆涓嶄細浼犻�� -->
         </dependency>
 
+        <!--springboot鏀寔鍖咃紝閲岄潰鍖呮嫭浜嗚嚜鍔ㄩ厤缃被 -->
+        <dependency>
+            <groupId>org.jodconverter</groupId>
+            <artifactId>jodconverter-spring-boot-starter</artifactId>
+            <version>4.4.2</version>
+        </dependency>
+
+        <!--jodconverter 鏍稿績鍖� -->
+        <dependency>
+            <groupId>org.jodconverter</groupId>
+            <artifactId>jodconverter-core</artifactId>
+            <version>4.4.2</version>
+        </dependency>
+
+        <!--jodconverter 鏈湴鏀寔鍖� -->
+        <dependency>
+            <groupId>org.jodconverter</groupId>
+            <artifactId>jodconverter-local</artifactId>
+            <version>4.4.2</version>
+        </dependency>
+
+        <!--springboot鏀寔鍖咃紝閲岄潰鍖呮嫭浜嗚嚜鍔ㄩ厤缃被 -->
+        <dependency>
+            <groupId>org.libreoffice</groupId>
+            <artifactId>ridl</artifactId>
+            <version>7.2.0</version>
+        </dependency>
+
         <!-- Mysql椹卞姩鍖� -->
         <dependency>
             <groupId>mysql</groupId>
@@ -280,6 +308,12 @@
             <version>${poi.version}</version>
         </dependency>
 
+        <dependency>
+            <groupId>org.apache.poi</groupId>
+            <artifactId>ooxml-schemas</artifactId>
+            <version>1.4</version>
+        </dependency>
+
         <!-- 绯婃秱宸ュ叿 -->
         <dependency>
             <groupId>cn.hutool</groupId>
@@ -355,47 +389,52 @@
             <scope>compile</scope>
         </dependency>
 
-    </dependencies>
+        <dependency>
+            <groupId>dom4j</groupId>
+            <artifactId>dom4j</artifactId>
+            <version>1.6.1</version>
+        </dependency>
+        <dependency>
+            <groupId>jaxen</groupId>
+            <artifactId>jaxen</artifactId>
+            <version>1.1.6</version>
+        </dependency>
 
+        <!-- doc杞琾df -->
+        <dependency>
+            <groupId>com.aspose</groupId>
+            <artifactId>words</artifactId>
+            <version>23.4</version>
+        </dependency>
+
+
+
+
+    </dependencies>
     <build>
-        <finalName>${project.artifactId}</finalName>
         <plugins>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-compiler-plugin</artifactId>
-                <configuration>
-                    <source>1.8</source>
-                    <target>1.8</target>
-                    <encoding>utf-8</encoding>
-                </configuration>
+                <artifactId>maven-install-plugin</artifactId>
+                <version>2.5.2</version>
+                <executions>
+                    <execution>
+                        <id>install-external</id>
+                        <phase>clean</phase>
+                        <configuration>
+                            <file>${project.build.directory}/tai-ots-framework-1.0.jar</file>
+                            <repositoryLayout>default</repositoryLayout>
+                            <groupId>com.ots</groupId>
+                            <artifactId>tai-ots-framework</artifactId>
+                            <version>1.0</version>
+                            <generatePom>true</generatePom>
+                        </configuration>
+                        <goals>
+                            <goal>install-file</goal>
+                        </goals>
+                    </execution>
+                </executions>
             </plugin>
-
         </plugins>
     </build>
-
-    <repositories>
-        <repository>
-            <id>public</id>
-            <name>aliyun nexus</name>
-            <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
-            <releases>
-                <enabled>true</enabled>
-            </releases>
-        </repository>
-    </repositories>
-
-    <pluginRepositories>
-        <pluginRepository>
-            <id>public</id>
-            <name>aliyun nexus</name>
-            <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
-            <releases>
-                <enabled>true</enabled>
-            </releases>
-            <snapshots>
-                <enabled>false</enabled>
-            </snapshots>
-        </pluginRepository>
-    </pluginRepositories>
-
 </project>
\ No newline at end of file

--
Gitblit v1.9.1