219 lines
7.1 KiB
XML
219 lines
7.1 KiB
XML
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.dpkj</groupId>
|
|
<!-- 银医通-澜沧中医院-DLL-台式机 -->
|
|
<artifactId>yinyitong-zhongyuyuan-dll-stand</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<name>yinyitong-zhongyuyuan-dll-stand</name>
|
|
<description>银医通-澜沧中医院-DLL-台式机</description>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.7.18</version>
|
|
<relativePath/>
|
|
</parent>
|
|
|
|
<properties>
|
|
<java.version>1.8</java.version>
|
|
<hutool.version>5.8.25</hutool.version>
|
|
<jna.version>5.14.0</jna.version>
|
|
<pdfbox.version>3.0.2</pdfbox.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-crypto</artifactId>
|
|
<version>${hutool.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 调用DLL -->
|
|
<dependency>
|
|
<groupId>net.java.dev.jna</groupId>
|
|
<artifactId>jna</artifactId>
|
|
<version>${jna.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>net.java.dev.jna</groupId>
|
|
<artifactId>jna-platform</artifactId>
|
|
<version>${jna.version}</version>
|
|
</dependency>
|
|
|
|
<!--PDF转换工具-->
|
|
<dependency>
|
|
<groupId>org.apache.pdfbox</groupId>
|
|
<artifactId>pdfbox</artifactId>
|
|
<version>${pdfbox.version}</version>
|
|
</dependency>
|
|
|
|
<!-- json处理-->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
<version>1.2.83</version>
|
|
</dependency>
|
|
|
|
<!-- thymeleaf-->
|
|
<dependency>
|
|
<groupId>org.thymeleaf</groupId>
|
|
<artifactId>thymeleaf-spring5</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Flying Saucer for HTML to Image 把html转换为图片 -->
|
|
<dependency>
|
|
<groupId>org.xhtmlrenderer</groupId>
|
|
<artifactId>flying-saucer-core</artifactId>
|
|
<version>9.1.22</version>
|
|
</dependency>
|
|
|
|
<!-- ZXing for QR Code 二维码生成-->
|
|
<dependency>
|
|
<groupId>com.google.zxing</groupId>
|
|
<artifactId>core</artifactId>
|
|
<version>3.4.1</version>
|
|
</dependency>
|
|
|
|
<!-- JSoup HTML Parser -->
|
|
<dependency>
|
|
<groupId>org.jsoup</groupId>
|
|
<artifactId>jsoup</artifactId>
|
|
<version>1.15.4</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>ognl</groupId>
|
|
<artifactId>ognl</artifactId>
|
|
<version>3.1.28</version> <!-- 可以根据实际情况调整版本 -->
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
<version>5.8.15</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<finalName>ems-express-call-dll</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
|
|
<!-- 跳过单元测试 -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<skipTests>true</skipTests>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>3.0.0</version>
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
<!-- 不需要分开打包的就将下面的插件全部注释-->
|
|
<!-- <plugin>-->
|
|
<!-- <groupId>org.apache.maven.plugins</groupId>-->
|
|
<!-- <artifactId>maven-dependency-plugin</artifactId>-->
|
|
<!-- <executions>-->
|
|
<!-- <execution>-->
|
|
<!-- <id>copy-dependencies</id>-->
|
|
<!-- <phase>prepare-package</phase>-->
|
|
<!-- <goals>-->
|
|
<!-- <goal>copy-dependencies</goal>-->
|
|
<!-- </goals>-->
|
|
<!-- <configuration>-->
|
|
<!-- <!– 拷贝项目依赖包到lib/目录下 –>-->
|
|
<!-- <outputDirectory>${project.build.directory}/lib</outputDirectory>-->
|
|
<!-- <overWriteReleases>false</overWriteReleases>-->
|
|
<!-- <overWriteSnapshots>false</overWriteSnapshots>-->
|
|
<!-- <overWriteIfNewer>true</overWriteIfNewer>-->
|
|
<!-- </configuration>-->
|
|
<!-- </execution>-->
|
|
<!-- </executions>-->
|
|
<!-- </plugin>-->
|
|
<!-- <plugin>-->
|
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
|
<!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
|
|
<!-- <configuration>-->
|
|
<!-- <layout>ZIP</layout>-->
|
|
<!-- <includes>-->
|
|
<!-- <include>-->
|
|
<!-- <groupId>nothing</groupId>-->
|
|
<!-- <artifactId>nothing</artifactId>-->
|
|
<!-- </include>-->
|
|
<!-- </includes>-->
|
|
<!-- </configuration>-->
|
|
<!-- </plugin>-->
|
|
|
|
|
|
|
|
|
|
</plugins>
|
|
<!--打包时将resource下的文件一起打包-->
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<includes>
|
|
<include>**/**</include>
|
|
</includes>
|
|
<filtering>false</filtering>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>dev</id>
|
|
<properties>
|
|
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>pro</id>
|
|
<properties>
|
|
|
|
</properties>
|
|
</profile>
|
|
</profiles>
|
|
|
|
</project>
|