2 Star 13 Fork 2

毛小蒙/DocHelper

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 3.67 KB
一键复制 编辑 原始数据 按行查看 历史
毛小蒙 提交于 2023-06-15 11:02 . :package:补充pom 信息
<?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">
<modelVersion>4.0.0</modelVersion>
<groupId>top.healthylife</groupId>
<artifactId>doc-helper</artifactId>
<version>1.0-SNAPSHOT</version>
<description>
业务文档生成器,妈妈再也不用担心我的详设啦! :)
项目地址:
https://gitee.com/gaozexi/doc-helper
如果对您有帮助,请您给一个友好的★star★
</description>
<url>https://gitee.com/gaozexi/doc-helper</url>
<scm>
<url>https://gitee.com/gaozexi/doc-helper</url>
<connection>scm:git:https://gitee.com/gaozexi/doc-helper.git</connection>
<developerConnection>scm:git:https://gitee.com/gaozexi/doc-helper.git</developerConnection>
<tag>HEAD</tag>
</scm>
<developers>
<developer>
<id>maoxiaomeng</id>
<name>maoxiaomeng</name>
<email>120089493@qq.com</email>
<url>https://healthylife.top</url>
<timezone>+8</timezone>
</developer>
</developers>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.26</version>
</dependency>
<!-- 您暂时拉不到这个包,我还没上传到maven中央仓库 -->
<!-- 基于docx4j封装处理word -->
<dependency>
<groupId>life.gzx</groupId>
<artifactId>docx4j-helper</artifactId>
<version>1.0.1-SNAPSHOT</version>
</dependency>
<!-- thymeleaf -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
<version>2.0.5.RELEASE</version>
</dependency>
<!-- poi excel读取 -->
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>5.2.3</version>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.14.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>5.1.2.RELEASE</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/gaozexi/doc-helper.git
git@gitee.com:gaozexi/doc-helper.git
gaozexi
doc-helper
DocHelper
master

搜索帮助