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.
103 lines
3.8 KiB
103 lines
3.8 KiB
|
2 months ago
|
<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>
|
||
|
1 month ago
|
<artifactId>opinion-center-system-api</artifactId>
|
||
|
2 months ago
|
<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>
|
||
|
1 month ago
|
<version>3.0.1</version>
|
||
|
2 months ago
|
</dependency>
|
||
|
|
|
||
|
1 month ago
|
<!-- MyBatis-Plus Extension for ServiceImpl -->
|
||
|
2 months ago
|
<dependency>
|
||
|
|
<groupId>com.baomidou</groupId>
|
||
|
|
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
|
||
|
1 month ago
|
<version>${mybatis-plus.version}</version>
|
||
|
2 months ago
|
</dependency>
|
||
|
1 month ago
|
|
||
|
2 months ago
|
<dependency>
|
||
|
1 month ago
|
<groupId>com.baomidou</groupId>
|
||
|
|
<artifactId>mybatis-plus-extension</artifactId>
|
||
|
|
<version>${mybatis-plus.version}</version>
|
||
|
2 months ago
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.dromara.warm</groupId>
|
||
|
|
<artifactId>warm-flow-mybatis-plus-sb3-starter</artifactId>
|
||
|
1 month ago
|
<version>${warm-flow.version}</version>
|
||
|
2 months ago
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.dromara.warm</groupId>
|
||
|
|
<artifactId>warm-flow-plugin-ui-sb-web</artifactId>
|
||
|
1 month ago
|
<version>${warm-flow.version}</version>
|
||
|
2 months ago
|
</dependency>
|
||
|
1 month ago
|
|
||
|
2 months ago
|
</dependencies>
|
||
|
|
|
||
|
|
<build>
|
||
|
|
<plugins>
|
||
|
1 month ago
|
<!-- 将外部依赖复制到 lib 目录 -->
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
||
|
|
<version>3.6.1</version>
|
||
|
|
<executions>
|
||
|
|
<execution>
|
||
|
|
<id>copy-dependencies</id>
|
||
|
|
<phase>package</phase>
|
||
|
|
<goals>
|
||
|
|
<goal>copy-dependencies</goal>
|
||
|
|
</goals>
|
||
|
|
<configuration>
|
||
|
|
<outputDirectory>${project.build.directory}/lib</outputDirectory>
|
||
|
|
<excludeGroupIds>net.lab1024</excludeGroupIds>
|
||
|
|
<includeScope>runtime</includeScope>
|
||
|
|
<overWriteReleases>false</overWriteReleases>
|
||
|
|
<overWriteSnapshots>false</overWriteSnapshots>
|
||
|
|
<overWriteIfNewer>true</overWriteIfNewer>
|
||
|
|
</configuration>
|
||
|
|
</execution>
|
||
|
|
</executions>
|
||
|
|
</plugin>
|
||
|
2 months ago
|
<plugin>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
1 month ago
|
<version>${springboot.version}</version>
|
||
|
2 months ago
|
<executions>
|
||
|
|
<execution>
|
||
|
|
<goals>
|
||
|
|
<goal>repackage</goal>
|
||
|
|
</goals>
|
||
|
|
</execution>
|
||
|
|
</executions>
|
||
|
1 month ago
|
<configuration>
|
||
|
|
<mainClass>net.lab1024.sa.AdminApplication</mainClass>
|
||
|
|
<layout>ZIP</layout>
|
||
|
|
<includes>
|
||
|
|
<!--只包含项目自己的模块-->
|
||
|
|
<include>
|
||
|
|
<groupId>net.lab1024</groupId>
|
||
|
|
<artifactId>sa-base</artifactId>
|
||
|
|
</include>
|
||
|
|
</includes>
|
||
|
|
</configuration>
|
||
|
2 months ago
|
</plugin>
|
||
|
|
</plugins>
|
||
|
|
</build>
|
||
|
|
|
||
|
|
</project>
|