Files
klp-oa/klp-admin/pom.xml
Joshi 88741bc062 feat(project): 添加 klp-aps 模块并配置依赖关系
- 在父项目 pom.xml 中添加 klp-aps 模块依赖
- 新增 klp-aps 子模块的 pom.xml 配置文件
- 在主 pom.xml 中将 klp-aps 添加到模块列表
- 配置 klp-aps 模块继承父项目的版本信息
- 添加 lombok 和 klp-common 作为 klp-aps 的依赖项
2026-03-05 18:13:19 +08:00

167 lines
5.1 KiB
XML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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>klp-oa</artifactId>
<groupId>com.klp</groupId>
<version>0.8.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>jar</packaging>
<artifactId>klp-admin</artifactId>
<description>
web服务入口
</description>
<dependencies>
<!-- spring-boot-devtools -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional> <!-- 表示依赖不会传递 -->
</dependency>
<!-- Mysql驱动包 -->
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
</dependency>
<!-- Oracle -->
<dependency>
<groupId>com.oracle.database.jdbc</groupId>
<artifactId>ojdbc8</artifactId>
</dependency>
<!-- PostgreSql -->
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
</dependency>
<!-- SqlServer -->
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
</dependency>
<!-- 核心模块-->
<dependency>
<groupId>com.klp</groupId>
<artifactId>klp-framework</artifactId>
</dependency>
<dependency>
<groupId>com.klp</groupId>
<artifactId>klp-system</artifactId>
</dependency>
<dependency>
<groupId>com.klp</groupId>
<artifactId>klp-job</artifactId>
</dependency>
<dependency>
<groupId>com.klp</groupId>
<artifactId>klp-oss</artifactId>
</dependency>
<!-- 代码生成-->
<dependency>
<groupId>com.klp</groupId>
<artifactId>klp-generator</artifactId>
</dependency>
<!-- demo模块 -->
<dependency>
<groupId>com.klp</groupId>
<artifactId>klp-demo</artifactId>
</dependency>
<!-- wms模块-->
<dependency>
<groupId>com.klp</groupId>
<artifactId>klp-wms</artifactId>
</dependency>
<!-- ems能源模块-->
<dependency>
<groupId>com.klp</groupId>
<artifactId>klp-ems</artifactId>
</dependency>
<!-- oa模块-->
<dependency>
<groupId>com.klp</groupId>
<artifactId>klp-mes</artifactId>
</dependency>
<dependency>
<groupId>com.klp</groupId>
<artifactId>klp-pocket</artifactId>
</dependency>
<dependency>
<groupId>com.klp</groupId>
<artifactId>klp-erp</artifactId>
</dependency>
<!-- <dependency>-->
<!-- <groupId>com.klp</groupId>-->
<!-- <artifactId>klp-hrm</artifactId>-->
<!-- </dependency>-->
<dependency>
<groupId>com.klp</groupId>
<artifactId>klp-da</artifactId>
</dependency>
<dependency>
<groupId>com.klp</groupId>
<artifactId>klp-crm</artifactId>
</dependency>
<!-- 扫码枪模块-->
<dependency>
<groupId>com.klp</groupId>
<artifactId>klp-reader</artifactId>
</dependency>
<dependency>
<groupId>com.klp</groupId>
<artifactId>klp-aps</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring-boot.version}</version>
<configuration>
<fork>true</fork> <!-- 如果没有该配置devtools不会生效 -->
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.2.2</version>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
<warName>${project.artifactId}</warName>
</configuration>
</plugin>
</plugins>
</build>
</project>