| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?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">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.middle.platform</groupId>
- <artifactId>iot-module-system</artifactId>
- <version>${revision}</version>
- </parent>
- <artifactId>iot-module-system-biz</artifactId>
- <packaging>jar</packaging>
- <properties>
- <maven.compiler.source>17</maven.compiler.source>
- <maven.compiler.target>17</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <!-- Spring Cloud 基础 -->
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-bootstrap</artifactId>
- </dependency>
- <!-- Registry 注册中心相关 -->
- <dependency>
- <groupId>com.alibaba.cloud</groupId>
- <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
- </dependency>
- <!-- Config 配置中心相关 -->
- <dependency>
- <groupId>com.alibaba.cloud</groupId>
- <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
- </dependency>
- <!--认证-->
- <dependency>
- <groupId>com.middle.platform</groupId>
- <artifactId>iot-starter-satoken</artifactId>
- </dependency>
- <dependency>
- <groupId>com.middle.platform</groupId>
- <artifactId>iot-starter-pagehelper</artifactId>
- </dependency>
- <dependency>
- <groupId>com.middle.platform</groupId>
- <artifactId>iot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>com.middle.platform</groupId>
- <artifactId>iot-starter-mybatis</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-actuator</artifactId>
- </dependency>
- <dependency>
- <groupId>com.middle.platform</groupId>
- <artifactId>iot-starter-redis</artifactId>
- </dependency>
- <dependency>
- <groupId>com.middle.platform</groupId>
- <artifactId>iot-module-system-api</artifactId>
- </dependency>
- <dependency>
- <groupId>com.middle.platform</groupId>
- <artifactId>iot-starter-oss</artifactId>
- </dependency>
- </dependencies>
- <build>
- <!-- 设置构建的 jar 包名 -->
- <plugins>
- <!-- 打包 -->
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <version>${spring.boot.version}</version> <!-- 如果 spring.boot.version 版本修改,则这里也要跟着修改 -->
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal> <!-- 将引入的 jar 打入其中 -->
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|