| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- <?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>business-modules-web</artifactId>
- <groupId>com.sckw</groupId>
- <version>1.0.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>business-transport-start</artifactId>
- <properties>
- <maven.compiler.source>17</maven.compiler.source>
- <maven.compiler.target>17</maven.compiler.target>
- <project.version>1.0.0</project.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-context</artifactId>
- <version>6.1.5</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.yaml</groupId>
- <artifactId>snakeyaml</artifactId>
- <version>2.0</version>
- <!--<scope>compile</scope>-->
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-aop</artifactId>
- <version>3.2.4</version>
- </dependency>
- <!--hutool工具包-->
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-all</artifactId>
- <version>5.5.1</version>
- </dependency>
- <dependency>
- <groupId>com.sckw</groupId>
- <artifactId>business-address</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.sckw</groupId>
- <artifactId>business-goods</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.sckw</groupId>
- <artifactId>business-truck</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.sckw</groupId>
- <artifactId>business-driver</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.sckw</groupId>
- <artifactId>business-car-transport</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.sckw</groupId>
- <artifactId>business-path</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.sckw</groupId>
- <artifactId>business-mine</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.sckw</groupId>
- <artifactId>business-company</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.sckw</groupId>
- <artifactId>business-user</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.sckw</groupId>
- <artifactId>business-usual-transport</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.sckw</groupId>
- <artifactId>business-common-datasource</artifactId>
- <version>${project.version}</version>
- </dependency>
- </dependencies>
- <profiles>
- <!-- 开发环境 -->
- <profile>
- <id>dev</id>
- <properties>
- <spring.profiles.active>dev</spring.profiles.active>
- </properties>
- <!-- 设置为默认环境 -->
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- </profile>
- <!-- 生产环境 -->
- <profile>
- <id>prod</id>
- <properties>
- <spring.profiles.active>prod</spring.profiles.active>
- </properties>
- </profile>
- </profiles>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <version>3.1.0</version>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <mainClass>com.sckw.transport.TransportStartApplication</mainClass>
- <includeSystemScope>true</includeSystemScope>
- </configuration>
- </plugin>
- <!-- maven 打包时跳过测试 -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <version>2.20</version>
- <configuration>
- <skipTests>true</skipTests>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|