70 lines
2.2 KiB
XML
70 lines
2.2 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<!-- 父工程 -->
|
|
<parent>
|
|
<artifactId>charging_pile</artifactId>
|
|
<groupId>org.hcy</groupId>
|
|
<version>1.0.0</version>
|
|
</parent>
|
|
|
|
<!-- 模块信息 -->
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>admin</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<!-- 项目管理 -->
|
|
<dependencies>
|
|
<!-- 公共依赖 -->
|
|
<dependency>
|
|
<groupId>org.hcy</groupId>
|
|
<artifactId>common</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hcy</groupId>
|
|
<artifactId>generator</artifactId>
|
|
<version>1.0.0</version>
|
|
</dependency>
|
|
<!-- Quartz-Scheduler -->
|
|
<dependency>
|
|
<groupId>org.quartz-scheduler</groupId>
|
|
<artifactId>quartz</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
<version>1.2.83</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba.fastjson2</groupId>
|
|
<artifactId>fastjson2</artifactId>
|
|
<version>2.0.12</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.tomcat.embed</groupId>
|
|
<artifactId>tomcat-embed-core</artifactId>
|
|
<version>9.0.83</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<!-- 插件管理 -->
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |