| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248 |
- <?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <packaging>pom</packaging>
- <groupId>com.tuoren</groupId>
- <artifactId>netpump</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <name>netpump</name>
- <description>Demo project for Spring Boot</description>
- <modules>
- <module>pump-common</module>
- <module>pump-web</module>
- <module>pump-admin</module>
- </modules>
- <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>2.1.5.RELEASE</version>
- <relativePath/> <!-- lookup parent from repository -->
- </parent>
- <properties>
- <java.version>1.8</java.version>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- <spring-boot.version>2.1.5.RELEASE</spring-boot.version>
- <druid.version>1.1.21</druid.version>
- <hutool.version>4.6.8</hutool.version>
- <swagger2.version>2.6.1</swagger2.version>
- <fastjson.version>1.2.62</fastjson.version>
- <mybatisplus.version>3.2.0</mybatisplus.version>
- <mybatisplusGenerator.version>3.2.0</mybatisplusGenerator.version>
- <ibeetl.version>3.0.13.RELEASE</ibeetl.version>
- <shiro.version>1.4.0</shiro.version>
- <shiroRedis.version>3.1.0</shiroRedis.version>
- <aliyunPush.version>3.13.0</aliyunPush.version>
- <aliyunCore.version>4.3.2</aliyunCore.version>
- <commonIo.version>2.6</commonIo.version>
- <netty.version>4.1.36.Final</netty.version>
- <rabbithttp.version>3.1.1.RELEASE</rabbithttp.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>io.netty</groupId>
- <artifactId>netty-all</artifactId>
- <version>${netty.version}</version>
- </dependency>
- <!-- 移动推送使用 Start -->
- <dependency>
- <groupId>com.aliyun</groupId>
- <artifactId>aliyun-java-sdk-push</artifactId>
- <version>${aliyunPush.version}</version>
- </dependency>
- <dependency>
- <groupId>com.aliyun</groupId>
- <artifactId>aliyun-java-sdk-core</artifactId>
- <version>${aliyunCore.version}</version>
- </dependency>
- <!-- 移动推送使用 End -->
- <!--面向切面 Start -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-aop</artifactId>
- </dependency>
- <!--面向切面 End -->
- <!-- 模板引擎相关 Start -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-thymeleaf</artifactId>
- </dependency>
- <dependency>
- <groupId>com.ibeetl</groupId>
- <artifactId>beetl</artifactId>
- <version>${ibeetl.version}</version>
- </dependency>
- <!-- 模板引擎相关 End -->
- <!--导入配置文件处理器 Start -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-configuration-processor</artifactId>
- <optional>true</optional>
- </dependency>
- <!--导入配置文件处理器 End -->
- <!--权限相关 Start -->
- <dependency>
- <groupId>org.apache.shiro</groupId>
- <artifactId>shiro-spring</artifactId>
- <version>${shiro.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.shiro</groupId>
- <artifactId>shiro-core</artifactId>
- <version>${shiro.version}</version>
- </dependency>
- <!-- Shiro-redis插件 -->
- <dependency>
- <groupId>org.crazycake</groupId>
- <artifactId>shiro-redis</artifactId>
- <version>${shiroRedis.version}</version>
- </dependency>
- <!--权限相关 End -->
- <!-- Redis Start -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-data-redis-reactive</artifactId>
- </dependency>
- <!-- Redis End -->
- <!-- druid Start -->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>druid-spring-boot-starter</artifactId>
- <version>${druid.version}</version>
- </dependency>
- <!-- druid End -->
- <!-- hutool Start-->
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-all</artifactId>
- <version>${hutool.version}</version>
- </dependency>
- <!-- hutool End -->
- <!-- swagger2 生成接口文档 Start -->
- <dependency>
- <groupId>io.springfox</groupId>
- <artifactId>springfox-swagger2</artifactId>
- <version>${swagger2.version}</version>
- </dependency>
- <dependency>
- <groupId>io.springfox</groupId>
- <artifactId>springfox-swagger-ui</artifactId>
- <version>${swagger2.version}</version>
- </dependency>
- <!-- swagger2 生成接口文档 End -->
- <!-- fastjson Start -->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- <version>${fastjson.version}</version>
- </dependency>
- <!-- fastjson End -->
- <!--rabbit api远程调用-->
- <dependency>
- <groupId>com.rabbitmq</groupId>
- <artifactId>http-client</artifactId>
- <version>${rabbithttp.version}</version>
- </dependency>
- <!-- 文件监听 -->
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>${commonIo.version}</version>
- </dependency>
- <!-- 文件监听 -->
- <!--mybatisplus 及批量生成 Start -->
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-boot-starter</artifactId>
- <version>${mybatisplus.version}</version>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-generator</artifactId>
- <version>${mybatisplusGenerator.version}</version>
- </dependency>
- <!--mybatisplus 及批量生成 End -->
- <!-- 开发插件 Start -->
- <!-- <dependency>-->
- <!-- <groupId>org.springframework.boot</groupId>-->
- <!-- <artifactId>spring-boot-devtools</artifactId>-->
- <!-- <scope>runtime</scope>-->
- <!-- <optional>true</optional>-->
- <!-- </dependency>-->
- <!-- 开发插件 Start -->
- <!-- mysql Start -->
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- <scope>runtime</scope>
- </dependency>
- <!-- mysql End -->
- <!-- rabbitmq 消息队列 Start -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-amqp</artifactId>
- </dependency>
- <!-- rabbitmq 消息队列 End -->
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- <exclusions>
- <exclusion>
- <groupId>org.junit.vintage</groupId>
- <artifactId>junit-vintage-engine</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- </dependencies>
- <!-- <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>-->
- <!-- </dependencies>-->
- <!-- </dependencyManagement>-->
- <!-- <build>-->
- <!-- <plugins>-->
- <!-- <plugin>-->
- <!-- <groupId>org.apache.maven.plugins</groupId>-->
- <!-- <artifactId>maven-compiler-plugin</artifactId>-->
- <!-- <configuration>-->
- <!-- <source>1.8</source>-->
- <!-- <target>1.8</target>-->
- <!-- <encoding>UTF-8</encoding>-->
- <!-- </configuration>-->
- <!-- </plugin>-->
- <!-- <plugin>-->
- <!-- <groupId>org.springframework.boot</groupId>-->
- <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
- <!-- </plugin>-->
- <!-- </plugins>-->
- <!-- </build>-->
- </project>
|