123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313 |
- <?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>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>xx-framework-dependencies</artifactId>
- <version>1.0.0</version>
- <packaging>pom</packaging>
- <properties>
- <xxh.version>1.0.0</xxh.version>
- <spring.boot.version>2.7.5</spring.boot.version>
- <jedis.version>4.2.2</jedis.version>
- <druid.version>1.2.13</druid.version>
- <!-- <druid.version>1.2.8</druid.version>-->
- <mybatisplus.version>3.5.2</mybatisplus.version>
- <postgresql.version>42.5.4</postgresql.version>
- <mysql.version>8.0.28</mysql.version>
- <!-- <mysql.version>5.1.47</mysql.version>-->
- <sqlserver.version>4.0</sqlserver.version>
- <oracle.version>11.2.0.3</oracle.version>
- <dameng.version>8.1.1.193</dameng.version>
- <commons.lang.version>3.12.0</commons.lang.version>
- <commons.fileupload.version>1.4</commons.fileupload.version>
- <commons.io.version>2.11.0</commons.io.version>
- <commons.codec.version>1.15</commons.codec.version>
- <guava.version>20.0</guava.version>
- <joda.time.version>2.10.14</joda.time.version>
- <hutool.version>5.7.22</hutool.version>
- <gson.version>2.9.0</gson.version>
- <jsoup.version>1.15.3</jsoup.version>
- <knife4j.version>2.0.9</knife4j.version>
- <lombok.version>1.18.24</lombok.version>
- <docker.plugin.version>1.1.1</docker.plugin.version>
- <sa.token.version>1.34.0</sa.token.version>
- <fastjson2.version>2.0.26</fastjson2.version>
- <fastjson.version>1.2.73</fastjson.version>
- <jetty.version>9.4.47.v20220610</jetty.version>
- <xxl-job.version>2.4.0</xxl-job.version>
- <QLExpress.version>3.3.2</QLExpress.version>
- </properties>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-dependencies</artifactId>
- <version>${spring.boot.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- <dependency>
- <groupId>redis.clients</groupId>
- <artifactId>jedis</artifactId>
- <version>${jedis.version}</version>
- </dependency>
- <!-- mysql驱动 -->
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- <version>${mysql.version}</version>
- </dependency>
- <!-- oracle驱动 -->
- <dependency>
- <groupId>com.oracle</groupId>
- <artifactId>ojdbc6</artifactId>
- <version>${oracle.version}</version>
- </dependency>
- <!-- sqlserver驱动 -->
- <dependency>
- <groupId>com.microsoft.sqlserver</groupId>
- <artifactId>sqljdbc4</artifactId>
- <version>${sqlserver.version}</version>
- </dependency>
- <!-- postgresql驱动 -->
- <dependency>
- <groupId>org.postgresql</groupId>
- <artifactId>postgresql</artifactId>
- <version>${postgresql.version}</version>
- </dependency>
- <!-- 达梦驱动 -->
- <dependency>
- <groupId>com.dameng</groupId>
- <artifactId>DmJdbcDriver18</artifactId>
- <version>${dameng.version}</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>druid-spring-boot-starter</artifactId>
- <version>${druid.version}</version>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-boot-starter</artifactId>
- <version>${mybatisplus.version}</version>
- <exclusions>
- <exclusion>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-generator</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-generator</artifactId>
- <version>${mybatisplus.version}</version>
- </dependency>
- <!-- sa-token -->
- <dependency>
- <groupId>cn.dev33</groupId>
- <artifactId>sa-token-spring-boot-starter</artifactId>
- <version>${sa.token.version}</version>
- </dependency>
- <dependency>
- <groupId>cn.dev33</groupId>
- <artifactId>sa-token-dao-redis-jackson</artifactId>
- <version>${sa.token.version}</version>
- </dependency>
- <dependency>
- <groupId>cn.dev33</groupId>
- <artifactId>sa-token-jwt</artifactId>
- <version>${sa.token.version}</version>
- </dependency>
- <!-- commons -->
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-lang3</artifactId>
- <version>${commons.lang.version}</version>
- </dependency>
- <dependency>
- <groupId>commons-fileupload</groupId>
- <artifactId>commons-fileupload</artifactId>
- <version>${commons.fileupload.version}</version>
- </dependency>
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>${commons.io.version}</version>
- </dependency>
- <dependency>
- <groupId>commons-codec</groupId>
- <artifactId>commons-codec</artifactId>
- <version>${commons.codec.version}</version>
- </dependency>
- <dependency>
- <groupId>com.google.guava</groupId>
- <artifactId>guava</artifactId>
- <version>${guava.version}</version>
- </dependency>
- <dependency>
- <groupId>joda-time</groupId>
- <artifactId>joda-time</artifactId>
- <version>${joda.time.version}</version>
- </dependency>
- <dependency>
- <groupId>com.google.code.gson</groupId>
- <artifactId>gson</artifactId>
- <version>${gson.version}</version>
- </dependency>
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-all</artifactId>
- <version>${hutool.version}</version>
- </dependency>
- <dependency>
- <groupId>org.jsoup</groupId>
- <artifactId>jsoup</artifactId>
- <version>${jsoup.version}</version>
- </dependency>
- <dependency>
- <groupId>com.github.xiaoymin</groupId>
- <artifactId>knife4j-spring-boot-starter</artifactId>
- <version>${knife4j.version}</version>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>${lombok.version}</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba.fastjson2</groupId>
- <artifactId>fastjson2</artifactId>
- <version>${fastjson2.version}</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- <version>${fastjson.version}</version>
- </dependency>
- <!-- 3 -->
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>xx-framework-core</artifactId>
- <version>${xxh.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>xx-config-web</artifactId>
- <version>${xxh.version}</version>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>com.xxh.cloud</groupId>-->
- <!-- <artifactId>xx-config-script</artifactId>-->
- <!-- <version>${xxh.version}</version>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>xx-config-framework</artifactId>
- <version>${xxh.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>xx-config-elasticsearch</artifactId>
- <version>${xxh.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>xx-config-mybatisplus</artifactId>
- <version>${xxh.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>xx-config-kafka</artifactId>
- <version>${xxh.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>xx-config-activemq</artifactId>
- <version>${xxh.version}</version>
- </dependency>
- <dependency>
- <groupId>org.dromara.easy-es</groupId>
- <artifactId>easy-es-boot-starter</artifactId>
- <version>2.0.0-beta2</version>
- </dependency>
- <dependency>
- <groupId>com.xuxueli</groupId>
- <artifactId>xxl-job-core</artifactId>
- <version>${xxl-job.version}</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>QLExpress</artifactId>
- <version>${QLExpress.version}</version>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
- <version>3.5.1</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- </project>
|