| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232 |
- <?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>
- <packaging>jar</packaging>
- <artifactId>raising-admin-pro</artifactId>
- <description>
- web服务入口
- </description>
- <dependencies>
- <!-- 核心模块-->
- <dependency>
- <groupId>com.raising</groupId>
- <artifactId>raising-framework</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!-- business业务模块-->
- <dependency>
- <groupId>com.raising</groupId>
- <artifactId>raising-upms</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!-- Application接口模块-->
- <dependency>
- <groupId>com.raising</groupId>
- <artifactId>raising-open-api</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!-- spring-boot-devtools -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-devtools</artifactId>
- <optional>true</optional>
- </dependency>
- <!-- swagger2-->
- <dependency>
- <groupId>io.springfox</groupId>
- <artifactId>springfox-swagger2</artifactId>
- </dependency>
- <!-- 添加websocket依赖 -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-websocket</artifactId>
- <version>${spring-boot-starter-websocket.version}</version>
- </dependency>
- <!--防止进入swagger页面报类型转换错误,排除2.9.2中的引用,手动增加1.5.21版本-->
- <dependency>
- <groupId>io.swagger</groupId>
- <artifactId>swagger-annotations</artifactId>
- <version>1.5.21</version>
- </dependency>
- <dependency>
- <groupId>io.swagger</groupId>
- <artifactId>swagger-models</artifactId>
- <version>1.5.21</version>
- </dependency>
- <!-- swagger2-UI-->
- <dependency>
- <groupId>io.springfox</groupId>
- <artifactId>springfox-swagger-ui</artifactId>
- </dependency>
- <!-- Mysql驱动包 -->
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- <version>${mysql.connector.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>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>${projectlombok.version}</version>
- <optional>true</optional>
- </dependency>
- <!--swagger-bootstrap-ui工具类-->
- <dependency>
- <groupId>com.github.xiaoymin</groupId>
- <artifactId>swagger-bootstrap-ui</artifactId>
- <version>${swagger-bootstrap-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>
- <!-- Sa-Token 整合 Redis (使用jackson序列化方式) -->
- <dependency>
- <groupId>cn.dev33</groupId>
- <artifactId>sa-token-dao-redis-jackson</artifactId>
- <version>${sa-token-version}</version>
- </dependency>
- <!--TTL-->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>transmittable-thread-local</artifactId>
- <version>${ttl.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>
- <!-- magic-api 接口平台工具 -->
- <!-- 文档: https://www.ssssssss.org/magic-api/pages/quick/start/ -->
- <dependency>
- <groupId>org.ssssssss</groupId>
- <artifactId>magic-api-spring-boot-starter</artifactId>
- <version>${magic.api.version}</version>
- </dependency>
- <!-- Magic-API Redis-插件 -->
- <dependency>
- <groupId>org.ssssssss</groupId>
- <artifactId>magic-api-plugin-redis</artifactId>
- <version>${magic.api.version}</version>
- </dependency>
- <!-- Magic-API Swagger-插件 -->
- <dependency>
- <groupId>org.ssssssss</groupId>
- <artifactId>magic-api-plugin-swagger</artifactId>
- <version>${magic.api.version}</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <version>2.1.1.RELEASE</version>
- <configuration>
- <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-war-plugin</artifactId>
- <version>3.0.0</version>
- <configuration>
- <failOnMissingWebXml>false</failOnMissingWebXml>
- <warName>${project.artifactId}</warName>
- </configuration>
- </plugin>
- </plugins>
- <finalName>${package.final.name}</finalName>
- </build>
- </project>
|