2023-12-02 15:14:14 +08:00
|
|
|
<?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>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>com.bonus.zlpt</groupId>
|
|
|
|
|
<artifactId>zlpt-modules</artifactId>
|
|
|
|
|
<version>3.6.3</version>
|
|
|
|
|
</parent>
|
|
|
|
|
|
2023-12-02 15:34:20 +08:00
|
|
|
<artifactId>zlpt-modules-company</artifactId>
|
|
|
|
|
|
|
|
|
|
<description>
|
|
|
|
|
zlpt-modules-company企业模块
|
|
|
|
|
</description>
|
2023-12-02 15:14:14 +08:00
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
</properties>
|
2023-12-02 15:34:20 +08:00
|
|
|
|
2023-12-02 15:14:14 +08:00
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.bonus.zlpt</groupId>
|
|
|
|
|
<artifactId>zlpt-common-core</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.bonus.zlpt</groupId>
|
|
|
|
|
<artifactId>zlpt-common-log</artifactId>
|
|
|
|
|
</dependency>
|
2023-12-04 17:15:05 +08:00
|
|
|
|
2023-12-02 15:14:14 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.bonus.zlpt</groupId>
|
|
|
|
|
<artifactId>zlpt-common-swagger</artifactId>
|
|
|
|
|
</dependency>
|
2023-12-06 10:37:06 +08:00
|
|
|
|
2023-12-04 17:15:05 +08:00
|
|
|
|
2023-12-03 16:48:30 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.bonus.zlpt</groupId>
|
2023-12-06 10:37:06 +08:00
|
|
|
<artifactId>zlpt-api-system</artifactId>
|
2023-12-04 17:05:57 +08:00
|
|
|
</dependency>
|
2023-12-06 10:37:06 +08:00
|
|
|
|
2023-12-04 19:31:15 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.bonus.zlpt</groupId>
|
2023-12-06 10:37:06 +08:00
|
|
|
<artifactId>zlpt-api-company</artifactId>
|
2023-12-04 19:31:15 +08:00
|
|
|
<version>3.6.3</version>
|
|
|
|
|
</dependency>
|
2023-12-06 10:37:06 +08:00
|
|
|
|
2023-12-05 14:54:19 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.checkerframework</groupId>
|
|
|
|
|
<artifactId>checker-qual</artifactId>
|
|
|
|
|
<version>3.5.0</version>
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
2023-12-02 15:14:14 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
2023-12-08 17:42:00 +08:00
|
|
|
<build>
|
|
|
|
|
<finalName>${project.artifactId}</finalName>
|
|
|
|
|
<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>
|
|
|
|
|
|
2023-12-02 15:14:14 +08:00
|
|
|
</project>
|