You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
2.4 KiB
67 lines
2.4 KiB
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
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>net.lab1024</groupId>
|
|
<artifactId>sa-parent</artifactId>
|
|
<version>3.0.1</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>sa-admin</artifactId>
|
|
<version>3.0.1</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>sa-admin</name>
|
|
<description>sa-admin project</description>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>net.lab1024</groupId>
|
|
<artifactId>sa-base</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
|
|
<!-- sa-admin 源码直接使用 MP / MyBatis / warm-flow 类型;显式加入编译 classpath,避免 IDEA 未展开 sa-base 传递依赖时报「程序包不存在」 -->
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.dromara.warm</groupId>
|
|
<artifactId>warm-flow-mybatis-plus-core</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.dromara.warm</groupId>
|
|
<artifactId>warm-flow-mybatis-plus-sb3-starter</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.dromara.warm</groupId>
|
|
<artifactId>warm-flow-plugin-ui-sb-web</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<configuration>
|
|
<mainClass>net.lab1024.sa.admin.AdminApplication</mainClass>
|
|
<!-- 将 sa-base 中 system 作用域的 kingbase8.jar 打进可执行包,否则运行期 ClassNotFound -->
|
|
<includeSystemScope>true</includeSystemScope>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|