Files
klp-oa/klp-admin/pom.xml
Joshi 813464b166 chore(build): 移除 klp-hrm 模块依赖
- 注释掉 klp-admin 模块中的 klp-hrm 依赖项
- 注释掉根 pom 中的 klp-hrm 依赖项
- 注释掉父级模块配置中的 klp-hrm 模块引用
2026-01-19 09:19:51 +08:00

159 lines
4.8 KiB
XML
Raw 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-crm</artifactId>
</dependency>
<!-- 扫码枪模块-->
<dependency>
<groupId>com.klp</groupId>
<artifactId>klp-reader</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>