You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
2.3 KiB
70 lines
2.3 KiB
<?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"> |
|
<parent> |
|
<artifactId>hzims-back</artifactId> |
|
<groupId>com.hnac.hzims</groupId> |
|
<version>4.0.0-SNAPSHOT</version> |
|
</parent> |
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
<artifactId>hzims-biz-common</artifactId> |
|
<packaging>jar</packaging> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springblade</groupId> |
|
<artifactId>blade-core-launch</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springblade</groupId> |
|
<artifactId>blade-core-auto</artifactId> |
|
<scope>provided</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springblade</groupId> |
|
<artifactId>blade-common</artifactId> |
|
</dependency> |
|
<!--Json 工具 Start--> |
|
<dependency> |
|
<groupId>com.alibaba</groupId> |
|
<artifactId>fastjson</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springblade</groupId> |
|
<artifactId>blade-user-api</artifactId> |
|
</dependency> |
|
<!--Json 工具 End--> |
|
<dependency> |
|
<groupId>org.springblade</groupId> |
|
<artifactId>blade-dict-api</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springblade</groupId> |
|
<artifactId>blade-starter-datascope</artifactId> |
|
</dependency> |
|
|
|
<!-- https://mvnrepository.com/artifact/cn.afterturn/easypoi-spring-boot-starter --> |
|
<dependency> |
|
<groupId>cn.afterturn</groupId> |
|
<artifactId>easypoi-spring-boot-starter</artifactId> |
|
<version>4.4.0</version> |
|
</dependency> |
|
|
|
</dependencies> |
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
<configuration> |
|
<skip>true</skip> |
|
<finalName>${project.name}</finalName> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
|
|
</project>
|
|
|