Files
klp-oa/klp-admin/pom.xml
Joshi bc31d5cda7 feat(project): 添加klp-da数据访问模块并集成到项目结构
- 在父pom.xml中添加klp-da模块依赖和版本配置
- 创建新的klp-da子模块及其完整的pom.xml配置文件
- 在主pom.xml的modules部分注册klp-da模块
- 配置klp-da模块的基础依赖包括common、lombok、mybatis-plus和fastjson库
- 更新项目整体的模块引用关系以包含新数据访问层
2026-01-27 17:38:38 +08:00

163 lines
4.9 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-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>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>