mirror of
https://github.com/KOHGYLW/kiftd-source.git
synced 2025-01-07 03:26:57 +08:00
232 lines
6.4 KiB
XML
232 lines
6.4 KiB
XML
<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>kohgylw</groupId>
|
|
<artifactId>kiftd</artifactId>
|
|
<version>1.2.3-SNAPSHOT</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>kiftd</name>
|
|
<url>https://kohgylw.gitee.io</url>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<!-- Spring Boot 版本组设置 -->
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.7.0</version>
|
|
</parent>
|
|
<!-- end SpringBoot版本组 -->
|
|
|
|
<!-- 外部资源 -->
|
|
<dependencies>
|
|
<!-- SpringBoot web启动器 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
<!-- end 启动器 -->
|
|
|
|
<!-- Gson json转化工具 -->
|
|
<dependency>
|
|
<groupId>com.google.code.gson</groupId>
|
|
<artifactId>gson</artifactId>
|
|
</dependency>
|
|
<!-- end Gson -->
|
|
|
|
<!-- file 操作资源 -->
|
|
<!--
|
|
https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload -->
|
|
<dependency>
|
|
<groupId>commons-fileupload</groupId>
|
|
<artifactId>commons-fileupload</artifactId>
|
|
<version>1.3.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>2.4</version>
|
|
</dependency>
|
|
<!-- end file -->
|
|
|
|
<!-- h2内嵌数据库 + spring + mybatis -->
|
|
<dependency>
|
|
<groupId>org.mybatis</groupId>
|
|
<artifactId>mybatis</artifactId>
|
|
<version>3.4.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mybatis</groupId>
|
|
<artifactId>mybatis-spring</artifactId>
|
|
<version>1.3.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.h2database</groupId>
|
|
<artifactId>h2</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-jdbc</artifactId>
|
|
</dependency>
|
|
<!-- end hsm整合 -->
|
|
|
|
<!-- MySQL 自定义连接数据库 -->
|
|
<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<version>8.0.16</version><!--$NO-MVN-MAN-VER$ -->
|
|
</dependency>
|
|
<!-- end MySQL -->
|
|
|
|
<!-- ZIP 压缩工具 -->
|
|
<!-- https://mvnrepository.com/artifact/org.zeroturnaround/zt-zip -->
|
|
<dependency>
|
|
<groupId>org.zeroturnaround</groupId>
|
|
<artifactId>zt-zip</artifactId>
|
|
<version>1.13</version>
|
|
</dependency>
|
|
<!-- end ZIP -->
|
|
|
|
<!-- Thumbnailator图片压缩工具 -->
|
|
<dependency>
|
|
<groupId>net.coobird</groupId>
|
|
<artifactId>thumbnailator</artifactId>
|
|
<version>0.4.8</version>
|
|
</dependency>
|
|
<!-- end Thumbnailator -->
|
|
|
|
<!-- 图片格式处理 -->
|
|
<!--
|
|
https://mvnrepository.com/artifact/com.twelvemonkeys.imageio/imageio-jpeg -->
|
|
<dependency>
|
|
<groupId>com.twelvemonkeys.imageio</groupId>
|
|
<artifactId>imageio-jpeg</artifactId>
|
|
<version>3.3.2</version>
|
|
</dependency>
|
|
<!--
|
|
https://mvnrepository.com/artifact/com.twelvemonkeys.imageio/imageio-tiff -->
|
|
<dependency>
|
|
<groupId>com.twelvemonkeys.imageio</groupId>
|
|
<artifactId>imageio-tiff</artifactId>
|
|
<version>3.3.2</version>
|
|
</dependency>
|
|
<!-- end 图片处理 -->
|
|
|
|
<!-- txt/word/ppt转PDF处理工具整合资源 -->
|
|
<!-- https://mvnrepository.com/artifact/org.freemarker/freemarker -->
|
|
<dependency>
|
|
<groupId>org.freemarker</groupId>
|
|
<artifactId>freemarker</artifactId>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/com.lowagie/itext -->
|
|
<dependency>
|
|
<groupId>com.lowagie</groupId>
|
|
<artifactId>itext</artifactId>
|
|
<version>2.1.7</version>
|
|
</dependency>
|
|
<!--
|
|
https://mvnrepository.com/artifact/fr.opensagres.xdocreport/org.apache.poi.xwpf.converter.pdf -->
|
|
<dependency>
|
|
<groupId>fr.opensagres.xdocreport</groupId>
|
|
<artifactId>org.apache.poi.xwpf.converter.pdf</artifactId>
|
|
<version>1.0.6</version>
|
|
</dependency>
|
|
<!--
|
|
https://mvnrepository.com/artifact/net.sourceforge.jchardet/jchardet -->
|
|
<dependency>
|
|
<groupId>net.sourceforge.jchardet</groupId>
|
|
<artifactId>jchardet</artifactId>
|
|
<version>1.0</version>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-scratchpad -->
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi-scratchpad</artifactId>
|
|
<version>3.10-FINAL</version>
|
|
</dependency>
|
|
<!-- end txt/word/ppt -->
|
|
|
|
<!-- JAVE 多媒体解析器(全平台) -->
|
|
<dependency>
|
|
<groupId>ws.schild</groupId>
|
|
<artifactId>jave-all-deps</artifactId>
|
|
<version>3.3.1</version>
|
|
</dependency>
|
|
<!-- end JAVE -->
|
|
|
|
<!-- 文件MD5计算工具 -->
|
|
<dependency>
|
|
<groupId>commons-codec</groupId>
|
|
<artifactId>commons-codec</artifactId>
|
|
</dependency>
|
|
<!-- end MD5 -->
|
|
|
|
<!-- Markdown 文本解析器 -->
|
|
<!-- https://mvnrepository.com/artifact/com.vladsch.flexmark/flexmark -->
|
|
<dependency>
|
|
<groupId>com.vladsch.flexmark</groupId>
|
|
<artifactId>flexmark</artifactId>
|
|
<version>0.50.44</version>
|
|
</dependency>
|
|
<!-- end Markdown解析器 -->
|
|
|
|
</dependencies>
|
|
<!-- end 外部资源 -->
|
|
|
|
<!-- 项目基本配置 -->
|
|
<build>
|
|
<sourceDirectory>src/main/java</sourceDirectory>
|
|
<testSourceDirectory>src/test/java</testSourceDirectory>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
<encoding>UTF8</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<configuration>
|
|
<archive>
|
|
<manifest>
|
|
<addClasspath>true</addClasspath>
|
|
<classpathPrefix>libs/</classpathPrefix>
|
|
<mainClass>kohgylw.kiftd.mc.MC</mainClass>
|
|
</manifest>
|
|
</archive>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>copy-dependencies</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<outputDirectory>
|
|
libs/
|
|
</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<!-- end 项目基本配置 -->
|
|
|
|
</project>
|