| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- <?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>raising</artifactId>
- <groupId>com.raising</groupId>
- <version>3.0.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>raising-open-api</artifactId>
- <description>
- Application接口模块
- </description>
- <dependencies>
- <!--velocity代码生成使用模板 -->
- <dependency>
- <groupId>org.apache.velocity</groupId>
- <artifactId>velocity</artifactId>
- </dependency>
- <!-- SpringBoot集成thymeleaf模板 -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-thymeleaf</artifactId>
- </dependency>
- <!--WebSocket-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-websocket</artifactId>
- <version>${spring-boot-starter-websocket.version}</version>
- </dependency>
- <!-- 通用工具-->
- <dependency>
- <groupId>com.raising</groupId>
- <artifactId>raising-common</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!-- 核心模块-->
- <dependency>
- <groupId>com.raising</groupId>
- <artifactId>raising-framework</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!-- raising-core-data模块-->
- <dependency>
- <groupId>com.raising</groupId>
- <artifactId>raising-core-data</artifactId>
- <version>${project.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>
- <!--Linq表达式-->
- <dependency>
- <groupId>com.bestvike</groupId>
- <artifactId>linq</artifactId>
- <version>${bestvikelinq.version}</version>
- </dependency>
- <!--Hutool工具包-->
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-all</artifactId>
- <version>${hutool.version}</version>
- </dependency>
- <!--JustAuth工具包
- https://justauth.wiki/quickstart/explain.html
- https://github.com/justauth/JustAuth-->
- <dependency>
- <groupId>me.zhyd.oauth</groupId>
- <artifactId>JustAuth</artifactId>
- <version>${justauth.version}</version>
- <exclusions>
- <exclusion>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.github.javen205</groupId>
- <artifactId>IJPay-All</artifactId>
- <version>${ijpay.version}</version>
- </dependency>
- <dependency>
- <groupId>com.alipay.sdk</groupId>
- <artifactId>alipay-sdk-java</artifactId>
- <version>${alipay.version}</version>
- <exclusions>
- <exclusion>
- <artifactId>fastjson</artifactId>
- <groupId>com.alibaba</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <!-- 排它锁 -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-data-jpa</artifactId>
- </dependency>
- <!-- 阿里JSON解析器 -->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- <version>${fastjson.version}</version>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>${projectlombok.version}</version>
- <optional>true</optional>
- </dependency>
- <!--RedisTools https://gitee.com/xsxgit/redis-spring-boot-starter -->
- <dependency>
- <groupId>wiki.xsx</groupId>
- <artifactId>redis-spring-boot-starter</artifactId>
- <version>${redis-tools-version}</version>
- </dependency>
- <!-- Sa-Token 权限认证, 在线文档:http://sa-token.dev33.cn/ -->
- <dependency>
- <groupId>cn.dev33</groupId>
- <artifactId>sa-token-spring-boot-starter</artifactId>
- <version>${sa-token-version}</version>
- </dependency>
- <!-- BeetlSQL的目标是提供开发高效,维护高效,运行高效的数据库访问框架,
- Git仓库: https://gitee.com/xiandafu/beetlsql
- 在线文档:https://www.kancloud.cn/xiandafu/beetlsql3_guide/1960060
- -->
- <dependency>
- <groupId>com.ibeetl</groupId>
- <artifactId>sql-springboot-starter</artifactId>
- <version>${beetlsql.version}</version>
- </dependency>
- <!--必须使用0.9以上的版本-->
- <dependency>
- <groupId>com.github.jsqlparser</groupId>
- <artifactId>jsqlparser</artifactId>
- <version>${jsqlparser.version}</version>
- </dependency>
- <!-- http://repo1.maven.org/maven2/com/xuxueli/xxl-job-core/ -->
- <dependency>
- <groupId>com.xuxueli</groupId>
- <artifactId>xxl-job-core</artifactId>
- <version>${xxljob.version}</version>
- </dependency>
- <dependency>
- <groupId>com.raising</groupId>
- <artifactId>raising-upms</artifactId>
- <version>3.0.0</version>
- <scope>compile</scope>
- </dependency>
- </dependencies>
- </project>
|