Files
2025-10-17 10:11:04 +08:00

94 lines
3.1 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>
<groupId>com.jeelowcode</groupId>
<artifactId>jeelowcode</artifactId>
<version>${jeelowcode.version}</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>jeelowcode-admin</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>低代码启动器</description>
<dependencies>
<!-- 系统模块 -->
<dependency>
<groupId>com.jeelowcode</groupId>
<artifactId>jeelowcode-service-system-biz</artifactId>
<version>${jeelowcode.version}</version>
</dependency>
<!-- 代码生成器、接口文档 -->
<dependency>
<groupId>com.jeelowcode</groupId>
<artifactId>jeelowcode-service-infra-biz</artifactId>
<version>${jeelowcode.version}</version>
</dependency>
<!-- 工作流服务 暂时关闭 后面用到再打开 -->
<dependency>
<groupId>com.jeelowcode</groupId>
<artifactId>jeelowcode-service-bpm-biz</artifactId>
<version>${jeelowcode.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<!-- 服务保障相关 -->
<dependency>
<groupId>com.jeelowcode</groupId>
<artifactId>tool-spring-boot-starter-protection</artifactId>
</dependency>
<!-- 低代码服务 -->
<dependency>
<groupId>com.jeelowcode</groupId>
<artifactId>jeelowcode-module-biz</artifactId>
</dependency>
<dependency>
<groupId>com.dameng</groupId>
<artifactId>DmJdbcDriver18</artifactId>
<version>8.1.3.140</version>
</dependency>
<!-- 单元测试测试组件 -->
<dependency>
<groupId>com.jeelowcode</groupId>
<artifactId>tool-spring-boot-starter-test</artifactId>
<version>${jeelowcode.version}</version>
</dependency>
</dependencies>
<build>
<!-- 设置构建的 jar 包名 -->
<finalName>${project.artifactId}</finalName>
<plugins>
<!-- 打包 -->
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring.boot.version}</version>
<executions>
<execution>
<goals>
<goal>repackage</goal> <!-- 将引入的 jar 打入其中 -->
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>