| | |
| | | <poi.version>4.1.2</poi.version>
|
| | | <velocity.version>1.7</velocity.version>
|
| | | <jwt.version>0.9.1</jwt.version>
|
| | | <mybatis-plus.version>3.4.2</mybatis-plus.version>
|
| | | <hutool.version>5.4.0</hutool.version>
|
| | | <feign.version>2.2.6.RELEASE</feign.version>
|
| | | <feign-okhttp.version>11.0</feign-okhttp.version>
|
| | | </properties>
|
| | |
|
| | | <!-- 依赖声明 -->
|
| | |
| | | <groupId>com.github.pagehelper</groupId>
|
| | | <artifactId>pagehelper-spring-boot-starter</artifactId>
|
| | | <version>${pagehelper.boot.version}</version>
|
| | | <exclusions>
|
| | | <exclusion>
|
| | | <groupId>org.mybatis</groupId>
|
| | | <artifactId>mybatis</artifactId>
|
| | | </exclusion>
|
| | | </exclusions>
|
| | | </dependency>
|
| | |
|
| | | <!-- 获取系统信息 -->
|
| | |
| | | <artifactId>jjwt</artifactId>
|
| | | <version>${jwt.version}</version>
|
| | | </dependency>
|
| | | |
| | |
|
| | | <!--验证码 -->
|
| | | <dependency>
|
| | | <groupId>com.github.penggle</groupId>
|
| | | <artifactId>kaptcha</artifactId>
|
| | | <version>${kaptcha.version}</version>
|
| | | </dependency>
|
| | | |
| | |
|
| | | <dependency>
|
| | | <groupId>com.baomidou</groupId>
|
| | | <artifactId>mybatis-plus-boot-starter</artifactId>
|
| | | <version>${mybatis-plus.version}</version>
|
| | | </dependency>
|
| | | <dependency>
|
| | | <groupId>com.baomidou</groupId>
|
| | | <artifactId>mybatis-plus-extension</artifactId>
|
| | | <version>${mybatis-plus.version}</version>
|
| | | </dependency>
|
| | | <dependency>
|
| | | <groupId>cn.hutool</groupId>
|
| | | <artifactId>hutool-all</artifactId>
|
| | | <version>${hutool.version}</version>
|
| | | </dependency>
|
| | |
|
| | | <dependency>
|
| | | <groupId>org.springframework.cloud</groupId>
|
| | | <artifactId>spring-cloud-starter-openfeign</artifactId>
|
| | | <version>${feign.version}</version>
|
| | | </dependency>
|
| | |
|
| | | <dependency>
|
| | | <groupId>io.github.openfeign</groupId>
|
| | | <artifactId>feign-okhttp</artifactId>
|
| | | <version>${feign-okhttp.version}</version>
|
| | | </dependency>
|
| | |
|
| | | <!-- 定时任务-->
|
| | | <dependency>
|
| | | <groupId>com.ruoyi</groupId>
|
| | |
| | | <version>${ruoyi.version}</version>
|
| | | </dependency>
|
| | |
|
| | | <!-- demo模块 -->
|
| | | <dependency>
|
| | | <groupId>com.ruoyi</groupId>
|
| | | <artifactId>ruoyi-demo</artifactId>
|
| | | <version>${ruoyi.version}</version>
|
| | | </dependency>
|
| | |
|
| | | </dependencies>
|
| | | </dependencyManagement>
|
| | |
|
| | |
| | | <module>ruoyi-quartz</module>
|
| | | <module>ruoyi-generator</module>
|
| | | <module>ruoyi-common</module>
|
| | | <module>ruoyi-demo</module>
|
| | | </modules>
|
| | | <packaging>pom</packaging>
|
| | |
|
| | |
| | | </configuration>
|
| | | </plugin>
|
| | | </plugins>
|
| | | <resources>
|
| | | <resource>
|
| | | <!--打包该目录下的 application.yml -->
|
| | | <directory>src/main/resources</directory>
|
| | | <!-- 启用过滤 即该资源中的变量将会被过滤器中的值替换 -->
|
| | | <filtering>true</filtering>
|
| | | </resource>
|
| | | </resources>
|
| | | </build>
|
| | |
|
| | | <repositories>
|
| | |
| | | </pluginRepository>
|
| | | </pluginRepositories>
|
| | |
|
| | | <profiles>
|
| | | <profile>
|
| | | <id>dev</id>
|
| | | <properties>
|
| | | <!-- 环境标识,需要与配置文件的名称相对应 -->
|
| | | <profiles.active>dev</profiles.active>
|
| | | <logging.level>debug</logging.level>
|
| | | </properties>
|
| | | <activation>
|
| | | <!-- 默认环境 -->
|
| | | <activeByDefault>true</activeByDefault>
|
| | | </activation>
|
| | | </profile>
|
| | | <profile>
|
| | | <id>prod</id>
|
| | | <properties>
|
| | | <profiles.active>prod</profiles.active>
|
| | | <logging.level>warn</logging.level>
|
| | | </properties>
|
| | | </profile>
|
| | | </profiles>
|
| | |
|
| | | </project> |