roses/kernel-d-office/office-api/pom.xml

31 lines
882 B
XML
Raw Normal View History

2020-12-11 10:18:48 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<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">
2022-03-07 08:25:46 +00:00
<modelVersion>4.0.0</modelVersion>
2020-12-11 10:18:48 +00:00
<parent>
<groupId>com.javaguns.roses</groupId>
2020-12-11 10:18:48 +00:00
<artifactId>kernel-d-office</artifactId>
2024-06-05 03:38:11 +00:00
<version>8.1.8</version>
2020-12-11 10:18:48 +00:00
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>office-api</artifactId>
<packaging>jar</packaging>
<dependencies>
<!-- servlet库 -->
<!-- 导出Excel需要用到 -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
</project>