123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217 |
- <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>
- <groupId>org.eco.vip</groupId>
- <artifactId>eco-bom</artifactId>
- <packaging>pom</packaging>
- <name>${project.artifactId}</name>
- <version>${revision}</version>
- <description>
- eco-bom 全局依赖项
- </description>
- <properties>
- <!-- 系统版本 -->
- <revision>1.0.0</revision>
- <spring-boot.version>3.4.3</spring-boot.version>
- <maven.compiler.source>${java.version}</maven.compiler.source>
- <maven.compiler.target>${java.version}</maven.compiler.target>
- <flatten-maven-plugin.version>1.6.0</flatten-maven-plugin.version>
- <lombok.version>1.18.36</lombok.version>
- <mybatis-flex.version>1.10.9</mybatis-flex.version>
- <HikariCP.version>6.2.1</HikariCP.version>
- <hutool-5.version>5.8.36</hutool-5.version>
- <jackson.version>2.18.3</jackson.version>
- <jakarta.version>6.1.0</jakarta.version>
- <mapstruct-plus.version>1.4.8</mapstruct-plus.version>
- <deepseek4j.version>1.4.5</deepseek4j.version>
- <milvus.version>2.5.5</milvus.version>
- <jsqlparser.version>5.1</jsqlparser.version>
- <DmJdbcDriver18.version>8.1.3.140</DmJdbcDriver18.version>
- <sa-token.version>1.44.0</sa-token.version>
- <caffeine.version>3.2.1</caffeine.version>
- <excel.version>1.2.0</excel.version>
- <poi.version>5.4.1</poi.version>
- <oshi.version>6.8.2</oshi.version>
- </properties>
- <!-- 全局的依赖配置-->
- <dependencyManagement>
- <dependencies>
- <!-- spring-boot-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-dependencies</artifactId>
- <version>${spring-boot.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- <!-- https://mvnrepository.com/artifact/jakarta.servlet/jakarta.servlet-api -->
- <dependency>
- <groupId>jakarta.servlet</groupId>
- <artifactId>jakarta.servlet-api</artifactId>
- <version>${jakarta.version}</version>
- </dependency>
- <dependency>
- <groupId>io.github.linpeilie</groupId>
- <artifactId>mapstruct-plus-spring-boot-starter</artifactId>
- <version>${mapstruct-plus.version}</version>
- </dependency>
- <!-- com-web -->
- <dependency>
- <groupId>org.eco.vip</groupId>
- <artifactId>com-web</artifactId>
- <version>${revision}</version>
- </dependency>
- <!-- com-core -->
- <dependency>
- <groupId>org.eco.vip</groupId>
- <artifactId>com-core</artifactId>
- <version>${revision}</version>
- </dependency>
- <!-- com-core -->
- <dependency>
- <groupId>org.eco.vip</groupId>
- <artifactId>com-orm</artifactId>
- <version>${revision}</version>
- </dependency>
- <!-- com-security -->
- <dependency>
- <groupId>org.eco.vip</groupId>
- <artifactId>com-security</artifactId>
- <version>${revision}</version>
- </dependency>
- <!-- com-excel -->
- <dependency>
- <groupId>org.eco.vip</groupId>
- <artifactId>com-excel</artifactId>
- <version>${revision}</version>
- </dependency>
- <!-- lombok -->
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>${lombok.version}</version>
- </dependency>
- <!-- mybatis-flex -->
- <dependency>
- <groupId>com.mybatis-flex</groupId>
- <artifactId>mybatis-flex-spring-boot3-starter</artifactId>
- <version>${mybatis-flex.version}</version>
- </dependency>
- <!-- 数据库连接池-->
- <dependency>
- <groupId>com.zaxxer</groupId>
- <artifactId>HikariCP</artifactId>
- <version>${HikariCP.version}</version>
- </dependency>
- <!-- hutool 的依赖配置-->
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-all</artifactId>
- <version>${hutool-5.version}</version>
- </dependency>
- <!-- JSON工具类 -->
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-databind</artifactId>
- <version>${jackson.version}</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.dameng/DmJdbcDriver18 -->
- <dependency>
- <groupId>com.dameng</groupId>
- <artifactId>DmJdbcDriver18</artifactId>
- <version>${DmJdbcDriver18.version}</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/cn.dev33/sa-token-spring-boot3-starter -->
- <dependency>
- <groupId>cn.dev33</groupId>
- <artifactId>sa-token-spring-boot3-starter</artifactId>
- <version>${sa-token.version}</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/cn.dev33/sa-token-jwt -->
- <dependency>
- <groupId>cn.dev33</groupId>
- <artifactId>sa-token-jwt</artifactId>
- <version>${sa-token.version}</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.github.ben-manes.caffeine/caffeine -->
- <dependency>
- <groupId>com.github.ben-manes.caffeine</groupId>
- <artifactId>caffeine</artifactId>
- <version>${caffeine.version}</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/cn.idev.excel/fastexcel -->
- <dependency>
- <groupId>cn.idev.excel</groupId>
- <artifactId>fastexcel</artifactId>
- <version>${excel.version}</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi-ooxml</artifactId>
- <version>${poi.version}</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.github.oshi/oshi-core -->
- <dependency>
- <groupId>com.github.oshi</groupId>
- <artifactId>oshi-core</artifactId>
- <version>${oshi.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <build>
- <plugins>
- <!-- 统一 revision 版本 -->
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>flatten-maven-plugin</artifactId>
- <version>${flatten-maven-plugin.version}</version>
- <configuration>
- <flattenMode>bom</flattenMode>
- <updatePomFile>true</updatePomFile>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>flatten</goal>
- </goals>
- <id>flatten</id>
- <phase>process-resources</phase>
- </execution>
- <execution>
- <goals>
- <goal>clean</goal>
- </goals>
- <id>flatten.clean</id>
- <phase>clean</phase>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|